separating in a second table the advanced dns entries

This commit is contained in:
Benjamin Sonntag 2015-06-17 16:33:09 +02:00
parent 30a933bbcc
commit 2eadec4ae0
11 changed files with 754 additions and 649 deletions

View File

@ -129,7 +129,7 @@ if (! empty($r['dns_result']) && $r['dns_result'] != '0') {
<div id="tabsdom-editsub"> <div id="tabsdom-editsub">
<h3><?php printf(_("Editing subdomains of %s"),$domain); ?></h3> <h3><?php __("Main subdomains"); ?></h3>
<?php <?php
$dt=$dom->domains_type_lst(); $dt=$dom->domains_type_lst();
@ -146,10 +146,23 @@ if ( ! empty($problems) ) {
<tr><th colspan="2"> </th><th><?php __("Subdomain"); ?></th><th><?php __("Type");?></th><th><?php __("Status")?></th><th></th></tr> <tr><th colspan="2"> </th><th><?php __("Subdomain"); ?></th><th><?php __("Type");?></th><th><?php __("Status")?></th><th></th></tr>
</thead> </thead>
<?php <?php
$hasadvanced=false;
for($i=0;$i<$r["nsub"];$i++) { for($i=0;$i<$r["nsub"];$i++) {
if ($r["sub"][$i]["advanced"] && !$hasadvanced) {
$hasadvanced=true;
?>
</table>
<h3 style="padding: 40px 0 0 0"><?php __("Advanced subdomains"); ?></h3>
<p class="alert alert-warning"><?php __("The following entries are advanced ones, edit them at your own risks."); ?></p>
<table class="tlist" id="dom_edit_table">
<thead>
<tr><th colspan="2"> </th><th><?php __("Subdomain"); ?></th><th><?php __("Type");?></th><th><?php __("Status")?></th><th></th></tr>
</thead>
<?php
}
$disabled_class=in_array(strtoupper($r['sub'][$i]['enable']),array('DISABLED','DISABLE') )?'sub-disabled':''; $disabled_class=in_array(strtoupper($r['sub'][$i]['enable']),array('DISABLED','DISABLE') )?'sub-disabled':'';
?> ?>
<tr class="lst" data-fqdn="<?php echo $r["sub"][$i]["fqdn"]; ?>"> <tr class="lst" data-fqdn="<?php echo $r["sub"][$i]["fqdn"]; ?>">
<?php if ( $r['sub'][$i]['web_action'] =='DELETE') { echo "<td colspan='2' />"; } else { ?> <?php if ( $r['sub'][$i]['web_action'] =='DELETE') { echo "<td colspan='2' />"; } else { ?>

View File

@ -1172,7 +1172,7 @@ class m_dom {
$r["nsub"] = $db->Record["cnt"]; $r["nsub"] = $db->Record["cnt"];
$db->free(); $db->free();
#$db->query("SELECT sd.*, dt.description AS type_desc, dt.only_dns FROM sub_domaines sd, domaines_type dt WHERE compte='$cuid' AND domaine='$dom' AND UPPER(dt.name)=UPPER(sd.type) ORDER BY sd.sub,sd.type"); #$db->query("SELECT sd.*, dt.description AS type_desc, dt.only_dns FROM sub_domaines sd, domaines_type dt WHERE compte='$cuid' AND domaine='$dom' AND UPPER(dt.name)=UPPER(sd.type) ORDER BY sd.sub,sd.type");
$db->query("SELECT sd.*, dt.description AS type_desc, dt.only_dns FROM sub_domaines sd LEFT JOIN domaines_type dt on UPPER(dt.name)=UPPER(sd.type) WHERE compte='$cuid' AND domaine='$dom' ORDER BY sd.sub,sd.type ;"); $db->query("SELECT sd.*, dt.description AS type_desc, dt.only_dns, dt.advanced FROM sub_domaines sd LEFT JOIN domaines_type dt on UPPER(dt.name)=UPPER(sd.type) WHERE compte='$cuid' AND domaine='$dom' ORDER BY dt.advanced,sd.sub,sd.type ;");
// Pas de webmail, on le cochera si on le trouve. // Pas de webmail, on le cochera si on le trouve.
$r["sub"] = array(); $r["sub"] = array();
for ($i = 0; $i < $r["nsub"]; $i++) { for ($i = 0; $i < $r["nsub"]; $i++) {
@ -1186,6 +1186,7 @@ class m_dom {
$r["sub"][$i]["type_desc"] = $db->Record["type_desc"]; $r["sub"][$i]["type_desc"] = $db->Record["type_desc"];
$r["sub"][$i]["only_dns"] = $db->Record["only_dns"]; $r["sub"][$i]["only_dns"] = $db->Record["only_dns"];
$r["sub"][$i]["web_action"] = $db->Record["web_action"]; $r["sub"][$i]["web_action"] = $db->Record["web_action"];
$r["sub"][$i]["advanced"] = $db->Record["advanced"];
$r["sub"][$i]["fqdn"] = ((!empty($r["sub"][$i]["name"])) ? $r["sub"][$i]["name"] . "." : "") . $r["name"]; $r["sub"][$i]["fqdn"] = ((!empty($r["sub"][$i]["name"])) ? $r["sub"][$i]["name"] . "." : "") . $r["name"];
} }
$db->free(); $db->free();
@ -1217,7 +1218,7 @@ class m_dom {
$err->raise("dom", _("--- Program error --- No lock on the domains!")); $err->raise("dom", _("--- Program error --- No lock on the domains!"));
return false; return false;
} }
$db->query("select sd.*, dt.description as type_desc, dt.only_dns from sub_domaines sd, domaines_type dt where compte='$cuid' and sd.id='$sub_domain_id' and upper(dt.name)=upper(sd.type);"); $db->query("select sd.*, dt.description as type_desc, dt.only_dns, dt.advanced from sub_domaines sd, domaines_type dt where compte='$cuid' and sd.id='$sub_domain_id' and upper(dt.name)=upper(sd.type) ORDER BY dt.advanced, sd.sub;");
if ($db->num_rows() == 0) { if ($db->num_rows() == 0) {
$err->raise("dom", _("The sub-domain does not exist")); $err->raise("dom", _("The sub-domain does not exist"));
return false; return false;

View File

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: alternc\n" "Project-Id-Version: alternc\n"
"Report-Msgid-Bugs-To: i18n@alternc.org\n" "Report-Msgid-Bugs-To: i18n@alternc.org\n"
"POT-Creation-Date: 2015-06-16 16:06+0200\n" "POT-Creation-Date: 2015-06-17 16:24+0200\n"
"PO-Revision-Date: 2004-02-14 19:53-0400\n" "PO-Revision-Date: 2004-02-14 19:53-0400\n"
"Last-Translator: Bruno Marmier <bruno@marmier.net>\n" "Last-Translator: Bruno Marmier <bruno@marmier.net>\n"
"Language-Team: Espagnol <i18n@alternc.org>\n" "Language-Team: Espagnol <i18n@alternc.org>\n"
@ -166,7 +166,7 @@ msgstr ""
#: ../admin/adm_domstype.php:87 ../admin/adm_domstype.php:88 #: ../admin/adm_domstype.php:87 ../admin/adm_domstype.php:88
#: ../admin/adm_edit.php:78 ../admin/adm_edit.php:95 #: ../admin/adm_edit.php:78 ../admin/adm_edit.php:95
#: ../admin/adm_passpolicy.php:113 ../admin/adm_passpolicy.php:157 #: ../admin/adm_passpolicy.php:113 ../admin/adm_passpolicy.php:157
#: ../admin/dom_edit.php:257 ../admin/dom_edit.php:280 #: ../admin/dom_edit.php:270 ../admin/dom_edit.php:293
#: ../admin/dom_subdel.php:80 ../admin/mail_edit.php:90 #: ../admin/dom_subdel.php:80 ../admin/mail_edit.php:90
#: ../admin/mail_list.php:166 ../admin/sql_bck.php:94 ../class/m_bro.php:75 #: ../admin/mail_list.php:166 ../admin/sql_bck.php:94 ../class/m_bro.php:75
msgid "No" msgid "No"
@ -177,7 +177,7 @@ msgstr "Nein"
#: ../admin/adm_domstype.php:87 ../admin/adm_domstype.php:88 #: ../admin/adm_domstype.php:87 ../admin/adm_domstype.php:88
#: ../admin/adm_edit.php:79 ../admin/adm_edit.php:96 #: ../admin/adm_edit.php:79 ../admin/adm_edit.php:96
#: ../admin/adm_passpolicy.php:114 ../admin/adm_passpolicy.php:157 #: ../admin/adm_passpolicy.php:114 ../admin/adm_passpolicy.php:157
#: ../admin/dom_edit.php:256 ../admin/dom_edit.php:279 #: ../admin/dom_edit.php:269 ../admin/dom_edit.php:292
#: ../admin/dom_subdel.php:79 ../admin/mail_edit.php:91 #: ../admin/dom_subdel.php:79 ../admin/mail_edit.php:91
#: ../admin/mail_list.php:212 ../admin/mail_list.php:225 #: ../admin/mail_list.php:212 ../admin/mail_list.php:225
#: ../admin/mail_list.php:238 ../admin/mail_list.php:257 #: ../admin/mail_list.php:238 ../admin/mail_list.php:257
@ -291,7 +291,8 @@ msgid "Informations"
msgstr "" msgstr ""
#: ../admin/adm_authip_whitelist.php:64 ../admin/adm_doms_def_type.php:48 #: ../admin/adm_authip_whitelist.php:64 ../admin/adm_doms_def_type.php:48
#: ../admin/dom_edit.php:146 ../admin/ip_main.php:146 #: ../admin/dom_edit.php:146 ../admin/dom_edit.php:159
#: ../admin/ip_main.php:146
msgid "Type" msgid "Type"
msgstr "" msgstr ""
@ -299,7 +300,7 @@ msgstr ""
#: ../admin/adm_list.php:199 ../admin/adm_list.php:226 #: ../admin/adm_list.php:199 ../admin/adm_list.php:226
#: ../admin/adm_list.php:258 ../admin/adm_passpolicy.php:151 #: ../admin/adm_list.php:258 ../admin/adm_passpolicy.php:151
#: ../admin/adm_tld.php:80 ../admin/bro_editor.php:86 #: ../admin/adm_tld.php:80 ../admin/bro_editor.php:86
#: ../admin/dom_edit.php:161 ../admin/ftp_list.php:80 ../admin/ip_main.php:166 #: ../admin/dom_edit.php:174 ../admin/ftp_list.php:80 ../admin/ip_main.php:166
#: ../admin/mail_list.php:152 #: ../admin/mail_list.php:152
msgid "Edit" msgid "Edit"
msgstr "" msgstr ""
@ -307,7 +308,7 @@ msgstr ""
#: ../admin/adm_authip_whitelist.php:85 ../admin/adm_doms_def_type.php:60 #: ../admin/adm_authip_whitelist.php:85 ../admin/adm_doms_def_type.php:60
#: ../admin/adm_mxaccount.php:83 ../admin/adm_slavedns.php:101 #: ../admin/adm_mxaccount.php:83 ../admin/adm_slavedns.php:101
#: ../admin/adm_slavedns.php:145 ../admin/bro_main.php:283 #: ../admin/adm_slavedns.php:145 ../admin/bro_main.php:283
#: ../admin/cron.php:54 ../admin/dom_edit.php:127 ../admin/dom_edit.php:168 #: ../admin/cron.php:54 ../admin/dom_edit.php:127 ../admin/dom_edit.php:181
#: ../admin/ftp_del.php:82 ../admin/hta_dodeluser.php:64 #: ../admin/ftp_del.php:82 ../admin/hta_dodeluser.php:64
#: ../admin/ip_main.php:79 ../admin/ip_main.php:167 #: ../admin/ip_main.php:79 ../admin/ip_main.php:167
#: ../admin/piwik_site_dodel.php:70 ../admin/piwik_sitelist.php:128 #: ../admin/piwik_site_dodel.php:70 ../admin/piwik_sitelist.php:128
@ -474,7 +475,7 @@ msgid "Account"
msgstr "" msgstr ""
#: ../admin/adm_dnsweberror.php:55 ../admin/adm_dnsweberror.php:85 #: ../admin/adm_dnsweberror.php:55 ../admin/adm_dnsweberror.php:85
#: ../admin/dom_add.php:57 ../class/m_dom.php:1902 #: ../admin/dom_add.php:57 ../class/m_dom.php:1903
msgid "Domain name" msgid "Domain name"
msgstr "" msgstr ""
@ -640,6 +641,7 @@ msgid "OK?"
msgstr "" msgstr ""
#: ../admin/adm_doms.php:69 ../admin/dom_edit.php:146 #: ../admin/adm_doms.php:69 ../admin/dom_edit.php:146
#: ../admin/dom_edit.php:159
msgid "Status" msgid "Status"
msgstr "" msgstr ""
@ -789,7 +791,7 @@ msgstr ""
msgid "Compatibility" msgid "Compatibility"
msgstr "" msgstr ""
#: ../admin/adm_domstypeedit.php:100 ../admin/dom_edit.php:190 #: ../admin/adm_domstypeedit.php:100 ../admin/dom_edit.php:203
#: ../admin/ftp_list.php:73 ../admin/ftp_list.php:84 #: ../admin/ftp_list.php:73 ../admin/ftp_list.php:84
#: ../admin/mail_list.php:127 ../admin/mail_list.php:154 #: ../admin/mail_list.php:127 ../admin/mail_list.php:154
msgid "Enabled" msgid "Enabled"
@ -1033,7 +1035,7 @@ msgstr ""
msgid "DB:" msgid "DB:"
msgstr "" msgstr ""
#: ../admin/adm_list.php:206 ../admin/dom_edit.php:191 #: ../admin/adm_list.php:206 ../admin/dom_edit.php:204
msgid "Disable" msgid "Disable"
msgstr "" msgstr ""
@ -1974,112 +1976,119 @@ msgid "Settings"
msgstr "" msgstr ""
#: ../admin/dom_edit.php:132 #: ../admin/dom_edit.php:132
#, php-format msgid "Main subdomains"
msgid "Editing subdomains of %s"
msgstr "" msgstr ""
#: ../admin/dom_edit.php:146 #: ../admin/dom_edit.php:146 ../admin/dom_edit.php:159
msgid "Subdomain" msgid "Subdomain"
msgstr "" msgstr ""
#: ../admin/dom_edit.php:159 #: ../admin/dom_edit.php:155
msgid "Advanced subdomains"
msgstr ""
#: ../admin/dom_edit.php:156
msgid "The following entries are advanced ones, edit them at your own risks."
msgstr ""
#: ../admin/dom_edit.php:172
msgid "Forbidden" msgid "Forbidden"
msgstr "" msgstr ""
#: ../admin/dom_edit.php:173 #: ../admin/dom_edit.php:186
msgid "ERROR, please check your server setup" msgid "ERROR, please check your server setup"
msgstr "" msgstr ""
#: ../admin/dom_edit.php:180 ../admin/ftp_list.php:97 #: ../admin/dom_edit.php:193 ../admin/ftp_list.php:97
#, fuzzy #, fuzzy
msgid "Directory not found" msgid "Directory not found"
msgstr "Miglied '%s' existiert nicht" msgstr "Miglied '%s' existiert nicht"
#: ../admin/dom_edit.php:194 #: ../admin/dom_edit.php:207
msgid "Activation pending" msgid "Activation pending"
msgstr "" msgstr ""
#: ../admin/dom_edit.php:197 ../admin/ftp_list.php:87 #: ../admin/dom_edit.php:210 ../admin/ftp_list.php:87
#: ../admin/mail_list.php:146 ../admin/mail_list.php:156 #: ../admin/mail_list.php:146 ../admin/mail_list.php:156
msgid "Disabled" msgid "Disabled"
msgstr "" msgstr ""
#: ../admin/dom_edit.php:198 #: ../admin/dom_edit.php:211
msgid "Enable" msgid "Enable"
msgstr "" msgstr ""
#: ../admin/dom_edit.php:201 #: ../admin/dom_edit.php:214
msgid "Desactivation pending" msgid "Desactivation pending"
msgstr "" msgstr ""
#: ../admin/dom_edit.php:209 #: ../admin/dom_edit.php:222
msgid "Update pending" msgid "Update pending"
msgstr "" msgstr ""
#: ../admin/dom_edit.php:212 #: ../admin/dom_edit.php:225
msgid "Deletion pending" msgid "Deletion pending"
msgstr "" msgstr ""
#: ../admin/dom_edit.php:232 #: ../admin/dom_edit.php:245
#, php-format #, php-format
msgid "Add a subdomain to %s" msgid "Add a subdomain to %s"
msgstr "" msgstr ""
#: ../admin/dom_edit.php:249 #: ../admin/dom_edit.php:262
msgid "DNS &amp; Email parameters" msgid "DNS &amp; Email parameters"
msgstr "" msgstr ""
#: ../admin/dom_edit.php:254 #: ../admin/dom_edit.php:267
msgid "Manage the DNS on the server ?" msgid "Manage the DNS on the server ?"
msgstr "" msgstr ""
#: ../admin/dom_edit.php:265 #: ../admin/dom_edit.php:278
msgid "Define TTL for the zone records" msgid "Define TTL for the zone records"
msgstr "" msgstr ""
#: ../admin/dom_edit.php:267 #: ../admin/dom_edit.php:280
msgid "" msgid ""
"Warning: a low TTL can be problematic. It is recommended not to use a lower " "Warning: a low TTL can be problematic. It is recommended not to use a lower "
"TTL than 3600 seconds." "TTL than 3600 seconds."
msgstr "" msgstr ""
#: ../admin/dom_edit.php:267 #: ../admin/dom_edit.php:280
msgid "seconds" msgid "seconds"
msgstr "" msgstr ""
#: ../admin/dom_edit.php:276 #: ../admin/dom_edit.php:289
msgid "Manage the Emails Addresses of this domain on the server?" msgid "Manage the Emails Addresses of this domain on the server?"
msgstr "" msgstr ""
#: ../admin/dom_edit.php:284 #: ../admin/dom_edit.php:297
msgid "" msgid ""
"Warning: If you set this to 'no', all your email accounts and aliases on " "Warning: If you set this to 'no', all your email accounts and aliases on "
"this domain will be immediately deleted." "this domain will be immediately deleted."
msgstr "" msgstr ""
#: ../admin/dom_edit.php:285 #: ../admin/dom_edit.php:298
msgid "Submit the changes" msgid "Submit the changes"
msgstr "" msgstr ""
#: ../admin/dom_edit.php:293 #: ../admin/dom_edit.php:306
msgid "" msgid ""
"Here is the actual DNS zone running on the AlternC server. If you just made " "Here is the actual DNS zone running on the AlternC server. If you just made "
"some changes, you have to wait for it." "some changes, you have to wait for it."
msgstr "" msgstr ""
#: ../admin/dom_edit.php:297 #: ../admin/dom_edit.php:310
msgid "Click here to view the dump" msgid "Click here to view the dump"
msgstr "" msgstr ""
#: ../admin/dom_edit.php:300 #: ../admin/dom_edit.php:313
msgid "Refresh" msgid "Refresh"
msgstr "" msgstr ""
#: ../admin/dom_edit.php:306 #: ../admin/dom_edit.php:319
msgid "Domain removal" msgid "Domain removal"
msgstr "" msgstr ""
#: ../admin/dom_edit.php:307 #: ../admin/dom_edit.php:320
#, php-format #, php-format
msgid "" msgid ""
"If you want to destroy the domain %s, click on the button below. Warning: " "If you want to destroy the domain %s, click on the button below. Warning: "
@ -2087,7 +2096,7 @@ msgid ""
"domain and subdomains." "domain and subdomains."
msgstr "" msgstr ""
#: ../admin/dom_edit.php:310 #: ../admin/dom_edit.php:323
#, php-format #, php-format
msgid "Delete %s from this server" msgid "Delete %s from this server"
msgstr "" msgstr ""
@ -4282,24 +4291,24 @@ msgstr ""
msgid "The name MUST contain only letter and digits" msgid "The name MUST contain only letter and digits"
msgstr "" msgstr ""
#: ../class/m_dom.php:578 ../class/m_dom.php:1401 #: ../class/m_dom.php:578 ../class/m_dom.php:1402
msgid "" msgid ""
"The parameters for this subdomain and domain type are invalid. Please check " "The parameters for this subdomain and domain type are invalid. Please check "
"for subdomain entries incompatibility" "for subdomain entries incompatibility"
msgstr "" msgstr ""
#: ../class/m_dom.php:697 ../class/m_dom.php:1146 ../class/m_dom.php:1217 #: ../class/m_dom.php:697 ../class/m_dom.php:1146 ../class/m_dom.php:1218
#: ../class/m_dom.php:1372 ../class/m_dom.php:1462 ../class/m_dom.php:1511 #: ../class/m_dom.php:1373 ../class/m_dom.php:1463 ../class/m_dom.php:1512
#: ../class/m_dom.php:1855 #: ../class/m_dom.php:1856
msgid "--- Program error --- No lock on the domains!" msgid "--- Program error --- No lock on the domains!"
msgstr "" msgstr ""
#: ../class/m_dom.php:704 ../class/m_dom.php:1151 ../class/m_dom.php:1396 #: ../class/m_dom.php:704 ../class/m_dom.php:1151 ../class/m_dom.php:1397
#: ../class/m_dom.php:1538 #: ../class/m_dom.php:1539
msgid "The domain name is syntaxically incorrect" msgid "The domain name is syntaxically incorrect"
msgstr "" msgstr ""
#: ../class/m_dom.php:710 ../class/m_dom.php:755 ../class/m_dom.php:1622 #: ../class/m_dom.php:710 ../class/m_dom.php:755 ../class/m_dom.php:1623
msgid "" msgid ""
"The requested domain is forbidden in this server, please contact the " "The requested domain is forbidden in this server, please contact the "
"administrator" "administrator"
@ -4314,7 +4323,7 @@ msgstr ""
msgid "The domain already exist" msgid "The domain already exist"
msgstr "Miglied '%s' existiert nicht" msgstr "Miglied '%s' existiert nicht"
#: ../class/m_dom.php:731 ../class/m_dom.php:1518 #: ../class/m_dom.php:731 ../class/m_dom.php:1519
msgid "" msgid ""
"The last member of the domain name is incorrect or cannot be hosted in that " "The last member of the domain name is incorrect or cannot be hosted in that "
"server" "server"
@ -4345,157 +4354,157 @@ msgstr ""
msgid "The Whois database is unavailable, please try again later" msgid "The Whois database is unavailable, please try again later"
msgstr "" msgstr ""
#: ../class/m_dom.php:1064 ../class/m_dom.php:1522 #: ../class/m_dom.php:1064 ../class/m_dom.php:1523
msgid "The domain cannot be found in the Whois database" msgid "The domain cannot be found in the Whois database"
msgstr "" msgstr ""
#: ../class/m_dom.php:1222 ../class/m_dom.php:1466 #: ../class/m_dom.php:1223 ../class/m_dom.php:1467
#, fuzzy #, fuzzy
msgid "The sub-domain does not exist" msgid "The sub-domain does not exist"
msgstr "Miglied '%s' existiert nicht" msgstr "Miglied '%s' existiert nicht"
#: ../class/m_dom.php:1261 #: ../class/m_dom.php:1262
msgid "invalid url" msgid "invalid url"
msgstr "" msgstr ""
#: ../class/m_dom.php:1271 #: ../class/m_dom.php:1272
#, fuzzy #, fuzzy
msgid "The folder you entered is incorrect or does not exist" msgid "The folder you entered is incorrect or does not exist"
msgstr "Miglied '%s' existiert nicht" msgstr "Miglied '%s' existiert nicht"
#: ../class/m_dom.php:1280 ../class/m_dom.php:1288 #: ../class/m_dom.php:1281 ../class/m_dom.php:1289
msgid "The ip address is invalid" msgid "The ip address is invalid"
msgstr "" msgstr ""
#: ../class/m_dom.php:1296 #: ../class/m_dom.php:1297
#, fuzzy #, fuzzy
msgid "" msgid ""
"The name you entered is incorrect or not fully qualified (shall end with a .)" "The name you entered is incorrect or not fully qualified (shall end with a .)"
msgstr "Miglied '%s' existiert nicht" msgstr "Miglied '%s' existiert nicht"
#: ../class/m_dom.php:1304 #: ../class/m_dom.php:1305
#, fuzzy #, fuzzy
msgid "The TXT value you entered is incorrect" msgid "The TXT value you entered is incorrect"
msgstr "Miglied '%s' existiert nicht" msgstr "Miglied '%s' existiert nicht"
#: ../class/m_dom.php:1309 #: ../class/m_dom.php:1310
msgid "Invalid domain type selected, please check" msgid "Invalid domain type selected, please check"
msgstr "" msgstr ""
#: ../class/m_dom.php:1384 #: ../class/m_dom.php:1385
msgid "" msgid ""
"There is some forbidden characters in the sub domain (only A-Z 0-9 and - are " "There is some forbidden characters in the sub domain (only A-Z 0-9 and - are "
"allowed)" "allowed)"
msgstr "" msgstr ""
#: ../class/m_dom.php:1423 ../class/m_dom.php:1434 #: ../class/m_dom.php:1424 ../class/m_dom.php:1435
msgid "Cannot write to the destination folder" msgid "Cannot write to the destination folder"
msgstr "" msgstr ""
#: ../class/m_dom.php:1526 #: ../class/m_dom.php:1527
msgid "" msgid ""
"The DNS of this domain do not match the server's DNS. Please change your " "The DNS of this domain do not match the server's DNS. Please change your "
"domain's DNS before you install it again" "domain's DNS before you install it again"
msgstr "" msgstr ""
#: ../class/m_dom.php:1543 #: ../class/m_dom.php:1544
#, fuzzy, php-format #, fuzzy, php-format
msgid "The domain name %s does not exist" msgid "The domain name %s does not exist"
msgstr "Miglied '%s' existiert nicht" msgstr "Miglied '%s' existiert nicht"
#: ../class/m_dom.php:1550 #: ../class/m_dom.php:1551
msgid "No change has been requested..." msgid "No change has been requested..."
msgstr "" msgstr ""
#: ../class/m_dom.php:1558 ../class/m_dom.php:1563 #: ../class/m_dom.php:1559 ../class/m_dom.php:1564
msgid "" msgid ""
"There is no MX record pointing to this server, and you are asking us to host " "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 " "the mail here. Make sure to update your MX entries or no mail will be "
"received" "received"
msgstr "" msgstr ""
#: ../class/m_dom.php:1614 ../class/m_dom.php:1639 #: ../class/m_dom.php:1615 ../class/m_dom.php:1640
msgid "The IP address you entered is incorrect" msgid "The IP address you entered is incorrect"
msgstr "" msgstr ""
#: ../class/m_dom.php:1732 ../class/m_dom.php:1738 ../class/m_dom.php:1756 #: ../class/m_dom.php:1733 ../class/m_dom.php:1739 ../class/m_dom.php:1757
#: ../class/m_dom.php:1762 #: ../class/m_dom.php:1763
msgid "This domain is not installed in your account" msgid "This domain is not installed in your account"
msgstr "" msgstr ""
#: ../class/m_dom.php:1805 #: ../class/m_dom.php:1806
msgid "The specified slave account already exists" msgid "The specified slave account already exists"
msgstr "" msgstr ""
#: ../class/m_dom.php:1836 #: ../class/m_dom.php:1837
msgid "--- Program error --- Lock already obtained!" msgid "--- Program error --- Lock already obtained!"
msgstr "" msgstr ""
#: ../class/m_dom.php:2182 #: ../class/m_dom.php:2183
#, php-format #, php-format
msgid "" msgid ""
"Problem on %s: there is more than 1 web configuration going to be generated " "Problem on %s: there is more than 1 web configuration going to be generated "
"for this sub-domain." "for this sub-domain."
msgstr "" msgstr ""
#: ../class/m_dom.php:2191 #: ../class/m_dom.php:2192
#, php-format #, php-format
msgid "Problem on %s: we do not know domain's type <b>%s</b>." msgid "Problem on %s: we do not know domain's type <b>%s</b>."
msgstr "" msgstr ""
#: ../class/m_dom.php:2202 #: ../class/m_dom.php:2203
msgid "Locally hosted" msgid "Locally hosted"
msgstr "" msgstr ""
#: ../class/m_dom.php:2203 #: ../class/m_dom.php:2204
msgid "URL redirection" msgid "URL redirection"
msgstr "" msgstr ""
#: ../class/m_dom.php:2204 #: ../class/m_dom.php:2205
msgid "IPv4 redirect" msgid "IPv4 redirect"
msgstr "" msgstr ""
#: ../class/m_dom.php:2205 #: ../class/m_dom.php:2206
msgid "Webmail access" msgid "Webmail access"
msgstr "" msgstr ""
#: ../class/m_dom.php:2206 #: ../class/m_dom.php:2207
msgid "Squirrelmail Webmail access" msgid "Squirrelmail Webmail access"
msgstr "" msgstr ""
#: ../class/m_dom.php:2207 #: ../class/m_dom.php:2208
msgid "Roundcube Webmail access" msgid "Roundcube Webmail access"
msgstr "" msgstr ""
#: ../class/m_dom.php:2208 #: ../class/m_dom.php:2209
msgid "IPv6 redirect" msgid "IPv6 redirect"
msgstr "" msgstr ""
#: ../class/m_dom.php:2209 #: ../class/m_dom.php:2210
msgid "CNAME DNS entry" msgid "CNAME DNS entry"
msgstr "" msgstr ""
#: ../class/m_dom.php:2210 #: ../class/m_dom.php:2211
msgid "TXT DNS entry" msgid "TXT DNS entry"
msgstr "" msgstr ""
#: ../class/m_dom.php:2211 #: ../class/m_dom.php:2212
msgid "MX DNS entry" msgid "MX DNS entry"
msgstr "" msgstr ""
#: ../class/m_dom.php:2212 #: ../class/m_dom.php:2213
msgid "secondary MX DNS entry" msgid "secondary MX DNS entry"
msgstr "" msgstr ""
#: ../class/m_dom.php:2213 #: ../class/m_dom.php:2214
msgid "Default mail server" msgid "Default mail server"
msgstr "" msgstr ""
#: ../class/m_dom.php:2214 #: ../class/m_dom.php:2215
msgid "Default backup mail server" msgid "Default backup mail server"
msgstr "" msgstr ""
#: ../class/m_dom.php:2215 #: ../class/m_dom.php:2216
msgid "AlternC panel access" msgid "AlternC panel access"
msgstr "" msgstr ""

View File

@ -7,7 +7,7 @@ msgstr ""
"Project-Id-Version: $Id: admin.po,v 1.10 2004/11/01 15:55:44 anonymous Exp " "Project-Id-Version: $Id: admin.po,v 1.10 2004/11/01 15:55:44 anonymous Exp "
"$\n" "$\n"
"Report-Msgid-Bugs-To: i18n@alternc.org\n" "Report-Msgid-Bugs-To: i18n@alternc.org\n"
"POT-Creation-Date: 2015-06-16 16:06+0200\n" "POT-Creation-Date: 2015-06-17 16:24+0200\n"
"PO-Revision-Date: 2002-06-16 13:50CEST\n" "PO-Revision-Date: 2002-06-16 13:50CEST\n"
"Last-Translator: Benjamin Sonntag <benjamin@alternc.org>\n" "Last-Translator: Benjamin Sonntag <benjamin@alternc.org>\n"
"Language-Team: French <i18n@alternc.org>\n" "Language-Team: French <i18n@alternc.org>\n"
@ -162,7 +162,7 @@ msgstr ""
#: ../admin/adm_domstype.php:87 ../admin/adm_domstype.php:88 #: ../admin/adm_domstype.php:87 ../admin/adm_domstype.php:88
#: ../admin/adm_edit.php:78 ../admin/adm_edit.php:95 #: ../admin/adm_edit.php:78 ../admin/adm_edit.php:95
#: ../admin/adm_passpolicy.php:113 ../admin/adm_passpolicy.php:157 #: ../admin/adm_passpolicy.php:113 ../admin/adm_passpolicy.php:157
#: ../admin/dom_edit.php:257 ../admin/dom_edit.php:280 #: ../admin/dom_edit.php:270 ../admin/dom_edit.php:293
#: ../admin/dom_subdel.php:80 ../admin/mail_edit.php:90 #: ../admin/dom_subdel.php:80 ../admin/mail_edit.php:90
#: ../admin/mail_list.php:166 ../admin/sql_bck.php:94 ../class/m_bro.php:75 #: ../admin/mail_list.php:166 ../admin/sql_bck.php:94 ../class/m_bro.php:75
msgid "No" msgid "No"
@ -173,7 +173,7 @@ msgstr ""
#: ../admin/adm_domstype.php:87 ../admin/adm_domstype.php:88 #: ../admin/adm_domstype.php:87 ../admin/adm_domstype.php:88
#: ../admin/adm_edit.php:79 ../admin/adm_edit.php:96 #: ../admin/adm_edit.php:79 ../admin/adm_edit.php:96
#: ../admin/adm_passpolicy.php:114 ../admin/adm_passpolicy.php:157 #: ../admin/adm_passpolicy.php:114 ../admin/adm_passpolicy.php:157
#: ../admin/dom_edit.php:256 ../admin/dom_edit.php:279 #: ../admin/dom_edit.php:269 ../admin/dom_edit.php:292
#: ../admin/dom_subdel.php:79 ../admin/mail_edit.php:91 #: ../admin/dom_subdel.php:79 ../admin/mail_edit.php:91
#: ../admin/mail_list.php:212 ../admin/mail_list.php:225 #: ../admin/mail_list.php:212 ../admin/mail_list.php:225
#: ../admin/mail_list.php:238 ../admin/mail_list.php:257 #: ../admin/mail_list.php:238 ../admin/mail_list.php:257
@ -286,7 +286,8 @@ msgid "Informations"
msgstr "" msgstr ""
#: ../admin/adm_authip_whitelist.php:64 ../admin/adm_doms_def_type.php:48 #: ../admin/adm_authip_whitelist.php:64 ../admin/adm_doms_def_type.php:48
#: ../admin/dom_edit.php:146 ../admin/ip_main.php:146 #: ../admin/dom_edit.php:146 ../admin/dom_edit.php:159
#: ../admin/ip_main.php:146
msgid "Type" msgid "Type"
msgstr "" msgstr ""
@ -294,7 +295,7 @@ msgstr ""
#: ../admin/adm_list.php:199 ../admin/adm_list.php:226 #: ../admin/adm_list.php:199 ../admin/adm_list.php:226
#: ../admin/adm_list.php:258 ../admin/adm_passpolicy.php:151 #: ../admin/adm_list.php:258 ../admin/adm_passpolicy.php:151
#: ../admin/adm_tld.php:80 ../admin/bro_editor.php:86 #: ../admin/adm_tld.php:80 ../admin/bro_editor.php:86
#: ../admin/dom_edit.php:161 ../admin/ftp_list.php:80 ../admin/ip_main.php:166 #: ../admin/dom_edit.php:174 ../admin/ftp_list.php:80 ../admin/ip_main.php:166
#: ../admin/mail_list.php:152 #: ../admin/mail_list.php:152
msgid "Edit" msgid "Edit"
msgstr "" msgstr ""
@ -302,7 +303,7 @@ msgstr ""
#: ../admin/adm_authip_whitelist.php:85 ../admin/adm_doms_def_type.php:60 #: ../admin/adm_authip_whitelist.php:85 ../admin/adm_doms_def_type.php:60
#: ../admin/adm_mxaccount.php:83 ../admin/adm_slavedns.php:101 #: ../admin/adm_mxaccount.php:83 ../admin/adm_slavedns.php:101
#: ../admin/adm_slavedns.php:145 ../admin/bro_main.php:283 #: ../admin/adm_slavedns.php:145 ../admin/bro_main.php:283
#: ../admin/cron.php:54 ../admin/dom_edit.php:127 ../admin/dom_edit.php:168 #: ../admin/cron.php:54 ../admin/dom_edit.php:127 ../admin/dom_edit.php:181
#: ../admin/ftp_del.php:82 ../admin/hta_dodeluser.php:64 #: ../admin/ftp_del.php:82 ../admin/hta_dodeluser.php:64
#: ../admin/ip_main.php:79 ../admin/ip_main.php:167 #: ../admin/ip_main.php:79 ../admin/ip_main.php:167
#: ../admin/piwik_site_dodel.php:70 ../admin/piwik_sitelist.php:128 #: ../admin/piwik_site_dodel.php:70 ../admin/piwik_sitelist.php:128
@ -466,7 +467,7 @@ msgid "Account"
msgstr "" msgstr ""
#: ../admin/adm_dnsweberror.php:55 ../admin/adm_dnsweberror.php:85 #: ../admin/adm_dnsweberror.php:55 ../admin/adm_dnsweberror.php:85
#: ../admin/dom_add.php:57 ../class/m_dom.php:1902 #: ../admin/dom_add.php:57 ../class/m_dom.php:1903
msgid "Domain name" msgid "Domain name"
msgstr "" msgstr ""
@ -632,6 +633,7 @@ msgid "OK?"
msgstr "" msgstr ""
#: ../admin/adm_doms.php:69 ../admin/dom_edit.php:146 #: ../admin/adm_doms.php:69 ../admin/dom_edit.php:146
#: ../admin/dom_edit.php:159
msgid "Status" msgid "Status"
msgstr "" msgstr ""
@ -781,7 +783,7 @@ msgstr ""
msgid "Compatibility" msgid "Compatibility"
msgstr "" msgstr ""
#: ../admin/adm_domstypeedit.php:100 ../admin/dom_edit.php:190 #: ../admin/adm_domstypeedit.php:100 ../admin/dom_edit.php:203
#: ../admin/ftp_list.php:73 ../admin/ftp_list.php:84 #: ../admin/ftp_list.php:73 ../admin/ftp_list.php:84
#: ../admin/mail_list.php:127 ../admin/mail_list.php:154 #: ../admin/mail_list.php:127 ../admin/mail_list.php:154
msgid "Enabled" msgid "Enabled"
@ -1024,7 +1026,7 @@ msgstr ""
msgid "DB:" msgid "DB:"
msgstr "" msgstr ""
#: ../admin/adm_list.php:206 ../admin/dom_edit.php:191 #: ../admin/adm_list.php:206 ../admin/dom_edit.php:204
msgid "Disable" msgid "Disable"
msgstr "" msgstr ""
@ -1959,111 +1961,118 @@ msgid "Settings"
msgstr "" msgstr ""
#: ../admin/dom_edit.php:132 #: ../admin/dom_edit.php:132
#, php-format msgid "Main subdomains"
msgid "Editing subdomains of %s"
msgstr "" msgstr ""
#: ../admin/dom_edit.php:146 #: ../admin/dom_edit.php:146 ../admin/dom_edit.php:159
msgid "Subdomain" msgid "Subdomain"
msgstr "" msgstr ""
#: ../admin/dom_edit.php:159 #: ../admin/dom_edit.php:155
msgid "Advanced subdomains"
msgstr ""
#: ../admin/dom_edit.php:156
msgid "The following entries are advanced ones, edit them at your own risks."
msgstr ""
#: ../admin/dom_edit.php:172
msgid "Forbidden" msgid "Forbidden"
msgstr "" msgstr ""
#: ../admin/dom_edit.php:173 #: ../admin/dom_edit.php:186
msgid "ERROR, please check your server setup" msgid "ERROR, please check your server setup"
msgstr "" msgstr ""
#: ../admin/dom_edit.php:180 ../admin/ftp_list.php:97 #: ../admin/dom_edit.php:193 ../admin/ftp_list.php:97
msgid "Directory not found" msgid "Directory not found"
msgstr "" msgstr ""
#: ../admin/dom_edit.php:194 #: ../admin/dom_edit.php:207
msgid "Activation pending" msgid "Activation pending"
msgstr "" msgstr ""
#: ../admin/dom_edit.php:197 ../admin/ftp_list.php:87 #: ../admin/dom_edit.php:210 ../admin/ftp_list.php:87
#: ../admin/mail_list.php:146 ../admin/mail_list.php:156 #: ../admin/mail_list.php:146 ../admin/mail_list.php:156
msgid "Disabled" msgid "Disabled"
msgstr "" msgstr ""
#: ../admin/dom_edit.php:198 #: ../admin/dom_edit.php:211
msgid "Enable" msgid "Enable"
msgstr "" msgstr ""
#: ../admin/dom_edit.php:201 #: ../admin/dom_edit.php:214
msgid "Desactivation pending" msgid "Desactivation pending"
msgstr "" msgstr ""
#: ../admin/dom_edit.php:209 #: ../admin/dom_edit.php:222
msgid "Update pending" msgid "Update pending"
msgstr "" msgstr ""
#: ../admin/dom_edit.php:212 #: ../admin/dom_edit.php:225
msgid "Deletion pending" msgid "Deletion pending"
msgstr "" msgstr ""
#: ../admin/dom_edit.php:232 #: ../admin/dom_edit.php:245
#, php-format #, php-format
msgid "Add a subdomain to %s" msgid "Add a subdomain to %s"
msgstr "" msgstr ""
#: ../admin/dom_edit.php:249 #: ../admin/dom_edit.php:262
msgid "DNS &amp; Email parameters" msgid "DNS &amp; Email parameters"
msgstr "" msgstr ""
#: ../admin/dom_edit.php:254 #: ../admin/dom_edit.php:267
msgid "Manage the DNS on the server ?" msgid "Manage the DNS on the server ?"
msgstr "" msgstr ""
#: ../admin/dom_edit.php:265 #: ../admin/dom_edit.php:278
msgid "Define TTL for the zone records" msgid "Define TTL for the zone records"
msgstr "" msgstr ""
#: ../admin/dom_edit.php:267 #: ../admin/dom_edit.php:280
msgid "" msgid ""
"Warning: a low TTL can be problematic. It is recommended not to use a lower " "Warning: a low TTL can be problematic. It is recommended not to use a lower "
"TTL than 3600 seconds." "TTL than 3600 seconds."
msgstr "" msgstr ""
#: ../admin/dom_edit.php:267 #: ../admin/dom_edit.php:280
msgid "seconds" msgid "seconds"
msgstr "" msgstr ""
#: ../admin/dom_edit.php:276 #: ../admin/dom_edit.php:289
msgid "Manage the Emails Addresses of this domain on the server?" msgid "Manage the Emails Addresses of this domain on the server?"
msgstr "" msgstr ""
#: ../admin/dom_edit.php:284 #: ../admin/dom_edit.php:297
msgid "" msgid ""
"Warning: If you set this to 'no', all your email accounts and aliases on " "Warning: If you set this to 'no', all your email accounts and aliases on "
"this domain will be immediately deleted." "this domain will be immediately deleted."
msgstr "" msgstr ""
#: ../admin/dom_edit.php:285 #: ../admin/dom_edit.php:298
msgid "Submit the changes" msgid "Submit the changes"
msgstr "" msgstr ""
#: ../admin/dom_edit.php:293 #: ../admin/dom_edit.php:306
msgid "" msgid ""
"Here is the actual DNS zone running on the AlternC server. If you just made " "Here is the actual DNS zone running on the AlternC server. If you just made "
"some changes, you have to wait for it." "some changes, you have to wait for it."
msgstr "" msgstr ""
#: ../admin/dom_edit.php:297 #: ../admin/dom_edit.php:310
msgid "Click here to view the dump" msgid "Click here to view the dump"
msgstr "" msgstr ""
#: ../admin/dom_edit.php:300 #: ../admin/dom_edit.php:313
msgid "Refresh" msgid "Refresh"
msgstr "" msgstr ""
#: ../admin/dom_edit.php:306 #: ../admin/dom_edit.php:319
msgid "Domain removal" msgid "Domain removal"
msgstr "" msgstr ""
#: ../admin/dom_edit.php:307 #: ../admin/dom_edit.php:320
#, php-format #, php-format
msgid "" msgid ""
"If you want to destroy the domain %s, click on the button below. Warning: " "If you want to destroy the domain %s, click on the button below. Warning: "
@ -2071,7 +2080,7 @@ msgid ""
"domain and subdomains." "domain and subdomains."
msgstr "" msgstr ""
#: ../admin/dom_edit.php:310 #: ../admin/dom_edit.php:323
#, php-format #, php-format
msgid "Delete %s from this server" msgid "Delete %s from this server"
msgstr "" msgstr ""
@ -4247,24 +4256,24 @@ msgstr ""
msgid "The name MUST contain only letter and digits" msgid "The name MUST contain only letter and digits"
msgstr "" msgstr ""
#: ../class/m_dom.php:578 ../class/m_dom.php:1401 #: ../class/m_dom.php:578 ../class/m_dom.php:1402
msgid "" msgid ""
"The parameters for this subdomain and domain type are invalid. Please check " "The parameters for this subdomain and domain type are invalid. Please check "
"for subdomain entries incompatibility" "for subdomain entries incompatibility"
msgstr "" msgstr ""
#: ../class/m_dom.php:697 ../class/m_dom.php:1146 ../class/m_dom.php:1217 #: ../class/m_dom.php:697 ../class/m_dom.php:1146 ../class/m_dom.php:1218
#: ../class/m_dom.php:1372 ../class/m_dom.php:1462 ../class/m_dom.php:1511 #: ../class/m_dom.php:1373 ../class/m_dom.php:1463 ../class/m_dom.php:1512
#: ../class/m_dom.php:1855 #: ../class/m_dom.php:1856
msgid "--- Program error --- No lock on the domains!" msgid "--- Program error --- No lock on the domains!"
msgstr "" msgstr ""
#: ../class/m_dom.php:704 ../class/m_dom.php:1151 ../class/m_dom.php:1396 #: ../class/m_dom.php:704 ../class/m_dom.php:1151 ../class/m_dom.php:1397
#: ../class/m_dom.php:1538 #: ../class/m_dom.php:1539
msgid "The domain name is syntaxically incorrect" msgid "The domain name is syntaxically incorrect"
msgstr "" msgstr ""
#: ../class/m_dom.php:710 ../class/m_dom.php:755 ../class/m_dom.php:1622 #: ../class/m_dom.php:710 ../class/m_dom.php:755 ../class/m_dom.php:1623
msgid "" msgid ""
"The requested domain is forbidden in this server, please contact the " "The requested domain is forbidden in this server, please contact the "
"administrator" "administrator"
@ -4278,7 +4287,7 @@ msgstr ""
msgid "The domain already exist" msgid "The domain already exist"
msgstr "" msgstr ""
#: ../class/m_dom.php:731 ../class/m_dom.php:1518 #: ../class/m_dom.php:731 ../class/m_dom.php:1519
msgid "" msgid ""
"The last member of the domain name is incorrect or cannot be hosted in that " "The last member of the domain name is incorrect or cannot be hosted in that "
"server" "server"
@ -4309,153 +4318,153 @@ msgstr ""
msgid "The Whois database is unavailable, please try again later" msgid "The Whois database is unavailable, please try again later"
msgstr "" msgstr ""
#: ../class/m_dom.php:1064 ../class/m_dom.php:1522 #: ../class/m_dom.php:1064 ../class/m_dom.php:1523
msgid "The domain cannot be found in the Whois database" msgid "The domain cannot be found in the Whois database"
msgstr "" msgstr ""
#: ../class/m_dom.php:1222 ../class/m_dom.php:1466 #: ../class/m_dom.php:1223 ../class/m_dom.php:1467
msgid "The sub-domain does not exist" msgid "The sub-domain does not exist"
msgstr "" msgstr ""
#: ../class/m_dom.php:1261 #: ../class/m_dom.php:1262
msgid "invalid url" msgid "invalid url"
msgstr "" msgstr ""
#: ../class/m_dom.php:1271 #: ../class/m_dom.php:1272
msgid "The folder you entered is incorrect or does not exist" msgid "The folder you entered is incorrect or does not exist"
msgstr "" msgstr ""
#: ../class/m_dom.php:1280 ../class/m_dom.php:1288 #: ../class/m_dom.php:1281 ../class/m_dom.php:1289
msgid "The ip address is invalid" msgid "The ip address is invalid"
msgstr "" msgstr ""
#: ../class/m_dom.php:1296 #: ../class/m_dom.php:1297
msgid "" msgid ""
"The name you entered is incorrect or not fully qualified (shall end with a .)" "The name you entered is incorrect or not fully qualified (shall end with a .)"
msgstr "" msgstr ""
#: ../class/m_dom.php:1304 #: ../class/m_dom.php:1305
msgid "The TXT value you entered is incorrect" msgid "The TXT value you entered is incorrect"
msgstr "" msgstr ""
#: ../class/m_dom.php:1309 #: ../class/m_dom.php:1310
msgid "Invalid domain type selected, please check" msgid "Invalid domain type selected, please check"
msgstr "" msgstr ""
#: ../class/m_dom.php:1384 #: ../class/m_dom.php:1385
msgid "" msgid ""
"There is some forbidden characters in the sub domain (only A-Z 0-9 and - are " "There is some forbidden characters in the sub domain (only A-Z 0-9 and - are "
"allowed)" "allowed)"
msgstr "" msgstr ""
#: ../class/m_dom.php:1423 ../class/m_dom.php:1434 #: ../class/m_dom.php:1424 ../class/m_dom.php:1435
msgid "Cannot write to the destination folder" msgid "Cannot write to the destination folder"
msgstr "" msgstr ""
#: ../class/m_dom.php:1526 #: ../class/m_dom.php:1527
msgid "" msgid ""
"The DNS of this domain do not match the server's DNS. Please change your " "The DNS of this domain do not match the server's DNS. Please change your "
"domain's DNS before you install it again" "domain's DNS before you install it again"
msgstr "" msgstr ""
#: ../class/m_dom.php:1543 #: ../class/m_dom.php:1544
#, php-format #, php-format
msgid "The domain name %s does not exist" msgid "The domain name %s does not exist"
msgstr "" msgstr ""
#: ../class/m_dom.php:1550 #: ../class/m_dom.php:1551
msgid "No change has been requested..." msgid "No change has been requested..."
msgstr "" msgstr ""
#: ../class/m_dom.php:1558 ../class/m_dom.php:1563 #: ../class/m_dom.php:1559 ../class/m_dom.php:1564
msgid "" msgid ""
"There is no MX record pointing to this server, and you are asking us to host " "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 " "the mail here. Make sure to update your MX entries or no mail will be "
"received" "received"
msgstr "" msgstr ""
#: ../class/m_dom.php:1614 ../class/m_dom.php:1639 #: ../class/m_dom.php:1615 ../class/m_dom.php:1640
msgid "The IP address you entered is incorrect" msgid "The IP address you entered is incorrect"
msgstr "" msgstr ""
#: ../class/m_dom.php:1732 ../class/m_dom.php:1738 ../class/m_dom.php:1756 #: ../class/m_dom.php:1733 ../class/m_dom.php:1739 ../class/m_dom.php:1757
#: ../class/m_dom.php:1762 #: ../class/m_dom.php:1763
msgid "This domain is not installed in your account" msgid "This domain is not installed in your account"
msgstr "" msgstr ""
#: ../class/m_dom.php:1805 #: ../class/m_dom.php:1806
msgid "The specified slave account already exists" msgid "The specified slave account already exists"
msgstr "" msgstr ""
#: ../class/m_dom.php:1836 #: ../class/m_dom.php:1837
msgid "--- Program error --- Lock already obtained!" msgid "--- Program error --- Lock already obtained!"
msgstr "" msgstr ""
#: ../class/m_dom.php:2182 #: ../class/m_dom.php:2183
#, php-format #, php-format
msgid "" msgid ""
"Problem on %s: there is more than 1 web configuration going to be generated " "Problem on %s: there is more than 1 web configuration going to be generated "
"for this sub-domain." "for this sub-domain."
msgstr "" msgstr ""
#: ../class/m_dom.php:2191 #: ../class/m_dom.php:2192
#, php-format #, php-format
msgid "Problem on %s: we do not know domain's type <b>%s</b>." msgid "Problem on %s: we do not know domain's type <b>%s</b>."
msgstr "" msgstr ""
#: ../class/m_dom.php:2202 #: ../class/m_dom.php:2203
msgid "Locally hosted" msgid "Locally hosted"
msgstr "" msgstr ""
#: ../class/m_dom.php:2203 #: ../class/m_dom.php:2204
msgid "URL redirection" msgid "URL redirection"
msgstr "" msgstr ""
#: ../class/m_dom.php:2204 #: ../class/m_dom.php:2205
msgid "IPv4 redirect" msgid "IPv4 redirect"
msgstr "" msgstr ""
#: ../class/m_dom.php:2205 #: ../class/m_dom.php:2206
msgid "Webmail access" msgid "Webmail access"
msgstr "" msgstr ""
#: ../class/m_dom.php:2206 #: ../class/m_dom.php:2207
msgid "Squirrelmail Webmail access" msgid "Squirrelmail Webmail access"
msgstr "" msgstr ""
#: ../class/m_dom.php:2207 #: ../class/m_dom.php:2208
msgid "Roundcube Webmail access" msgid "Roundcube Webmail access"
msgstr "" msgstr ""
#: ../class/m_dom.php:2208 #: ../class/m_dom.php:2209
msgid "IPv6 redirect" msgid "IPv6 redirect"
msgstr "" msgstr ""
#: ../class/m_dom.php:2209 #: ../class/m_dom.php:2210
msgid "CNAME DNS entry" msgid "CNAME DNS entry"
msgstr "" msgstr ""
#: ../class/m_dom.php:2210 #: ../class/m_dom.php:2211
msgid "TXT DNS entry" msgid "TXT DNS entry"
msgstr "" msgstr ""
#: ../class/m_dom.php:2211 #: ../class/m_dom.php:2212
msgid "MX DNS entry" msgid "MX DNS entry"
msgstr "" msgstr ""
#: ../class/m_dom.php:2212 #: ../class/m_dom.php:2213
msgid "secondary MX DNS entry" msgid "secondary MX DNS entry"
msgstr "" msgstr ""
#: ../class/m_dom.php:2213 #: ../class/m_dom.php:2214
msgid "Default mail server" msgid "Default mail server"
msgstr "" msgstr ""
#: ../class/m_dom.php:2214 #: ../class/m_dom.php:2215
msgid "Default backup mail server" msgid "Default backup mail server"
msgstr "" msgstr ""
#: ../class/m_dom.php:2215 #: ../class/m_dom.php:2216
msgid "AlternC panel access" msgid "AlternC panel access"
msgstr "" msgstr ""

View File

@ -10,7 +10,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: messages\n" "Project-Id-Version: messages\n"
"Report-Msgid-Bugs-To: i18n@alternc.org\n" "Report-Msgid-Bugs-To: i18n@alternc.org\n"
"POT-Creation-Date: 2015-06-16 16:06+0200\n" "POT-Creation-Date: 2015-06-17 16:24+0200\n"
"PO-Revision-Date: 2008-09-05 16:50+0200\n" "PO-Revision-Date: 2008-09-05 16:50+0200\n"
"Last-Translator: \n" "Last-Translator: \n"
"Language-Team: <tech@alternc.org>\n" "Language-Team: <tech@alternc.org>\n"
@ -182,7 +182,7 @@ msgstr "¿Puede cambiar su contraseña?"
#: ../admin/adm_domstype.php:87 ../admin/adm_domstype.php:88 #: ../admin/adm_domstype.php:87 ../admin/adm_domstype.php:88
#: ../admin/adm_edit.php:78 ../admin/adm_edit.php:95 #: ../admin/adm_edit.php:78 ../admin/adm_edit.php:95
#: ../admin/adm_passpolicy.php:113 ../admin/adm_passpolicy.php:157 #: ../admin/adm_passpolicy.php:113 ../admin/adm_passpolicy.php:157
#: ../admin/dom_edit.php:257 ../admin/dom_edit.php:280 #: ../admin/dom_edit.php:270 ../admin/dom_edit.php:293
#: ../admin/dom_subdel.php:80 ../admin/mail_edit.php:90 #: ../admin/dom_subdel.php:80 ../admin/mail_edit.php:90
#: ../admin/mail_list.php:166 ../admin/sql_bck.php:94 ../class/m_bro.php:75 #: ../admin/mail_list.php:166 ../admin/sql_bck.php:94 ../class/m_bro.php:75
msgid "No" msgid "No"
@ -193,7 +193,7 @@ msgstr "No"
#: ../admin/adm_domstype.php:87 ../admin/adm_domstype.php:88 #: ../admin/adm_domstype.php:87 ../admin/adm_domstype.php:88
#: ../admin/adm_edit.php:79 ../admin/adm_edit.php:96 #: ../admin/adm_edit.php:79 ../admin/adm_edit.php:96
#: ../admin/adm_passpolicy.php:114 ../admin/adm_passpolicy.php:157 #: ../admin/adm_passpolicy.php:114 ../admin/adm_passpolicy.php:157
#: ../admin/dom_edit.php:256 ../admin/dom_edit.php:279 #: ../admin/dom_edit.php:269 ../admin/dom_edit.php:292
#: ../admin/dom_subdel.php:79 ../admin/mail_edit.php:91 #: ../admin/dom_subdel.php:79 ../admin/mail_edit.php:91
#: ../admin/mail_list.php:212 ../admin/mail_list.php:225 #: ../admin/mail_list.php:212 ../admin/mail_list.php:225
#: ../admin/mail_list.php:238 ../admin/mail_list.php:257 #: ../admin/mail_list.php:238 ../admin/mail_list.php:257
@ -311,7 +311,8 @@ msgid "Informations"
msgstr "" msgstr ""
#: ../admin/adm_authip_whitelist.php:64 ../admin/adm_doms_def_type.php:48 #: ../admin/adm_authip_whitelist.php:64 ../admin/adm_doms_def_type.php:48
#: ../admin/dom_edit.php:146 ../admin/ip_main.php:146 #: ../admin/dom_edit.php:146 ../admin/dom_edit.php:159
#: ../admin/ip_main.php:146
msgid "Type" msgid "Type"
msgstr "" msgstr ""
@ -319,7 +320,7 @@ msgstr ""
#: ../admin/adm_list.php:199 ../admin/adm_list.php:226 #: ../admin/adm_list.php:199 ../admin/adm_list.php:226
#: ../admin/adm_list.php:258 ../admin/adm_passpolicy.php:151 #: ../admin/adm_list.php:258 ../admin/adm_passpolicy.php:151
#: ../admin/adm_tld.php:80 ../admin/bro_editor.php:86 #: ../admin/adm_tld.php:80 ../admin/bro_editor.php:86
#: ../admin/dom_edit.php:161 ../admin/ftp_list.php:80 ../admin/ip_main.php:166 #: ../admin/dom_edit.php:174 ../admin/ftp_list.php:80 ../admin/ip_main.php:166
#: ../admin/mail_list.php:152 #: ../admin/mail_list.php:152
msgid "Edit" msgid "Edit"
msgstr "Modificar" msgstr "Modificar"
@ -327,7 +328,7 @@ msgstr "Modificar"
#: ../admin/adm_authip_whitelist.php:85 ../admin/adm_doms_def_type.php:60 #: ../admin/adm_authip_whitelist.php:85 ../admin/adm_doms_def_type.php:60
#: ../admin/adm_mxaccount.php:83 ../admin/adm_slavedns.php:101 #: ../admin/adm_mxaccount.php:83 ../admin/adm_slavedns.php:101
#: ../admin/adm_slavedns.php:145 ../admin/bro_main.php:283 #: ../admin/adm_slavedns.php:145 ../admin/bro_main.php:283
#: ../admin/cron.php:54 ../admin/dom_edit.php:127 ../admin/dom_edit.php:168 #: ../admin/cron.php:54 ../admin/dom_edit.php:127 ../admin/dom_edit.php:181
#: ../admin/ftp_del.php:82 ../admin/hta_dodeluser.php:64 #: ../admin/ftp_del.php:82 ../admin/hta_dodeluser.php:64
#: ../admin/ip_main.php:79 ../admin/ip_main.php:167 #: ../admin/ip_main.php:79 ../admin/ip_main.php:167
#: ../admin/piwik_site_dodel.php:70 ../admin/piwik_sitelist.php:128 #: ../admin/piwik_site_dodel.php:70 ../admin/piwik_sitelist.php:128
@ -508,7 +509,7 @@ msgid "Account"
msgstr "Tipo de cuenta" msgstr "Tipo de cuenta"
#: ../admin/adm_dnsweberror.php:55 ../admin/adm_dnsweberror.php:85 #: ../admin/adm_dnsweberror.php:55 ../admin/adm_dnsweberror.php:85
#: ../admin/dom_add.php:57 ../class/m_dom.php:1902 #: ../admin/dom_add.php:57 ../class/m_dom.php:1903
msgid "Domain name" msgid "Domain name"
msgstr "Nombre de dominio" msgstr "Nombre de dominio"
@ -686,6 +687,7 @@ msgid "OK?"
msgstr "OK" msgstr "OK"
#: ../admin/adm_doms.php:69 ../admin/dom_edit.php:146 #: ../admin/adm_doms.php:69 ../admin/dom_edit.php:146
#: ../admin/dom_edit.php:159
msgid "Status" msgid "Status"
msgstr "" msgstr ""
@ -843,7 +845,7 @@ msgstr ""
msgid "Compatibility" msgid "Compatibility"
msgstr "" msgstr ""
#: ../admin/adm_domstypeedit.php:100 ../admin/dom_edit.php:190 #: ../admin/adm_domstypeedit.php:100 ../admin/dom_edit.php:203
#: ../admin/ftp_list.php:73 ../admin/ftp_list.php:84 #: ../admin/ftp_list.php:73 ../admin/ftp_list.php:84
#: ../admin/mail_list.php:127 ../admin/mail_list.php:154 #: ../admin/mail_list.php:127 ../admin/mail_list.php:154
msgid "Enabled" msgid "Enabled"
@ -1107,7 +1109,7 @@ msgstr ""
msgid "DB:" msgid "DB:"
msgstr "" msgstr ""
#: ../admin/adm_list.php:206 ../admin/dom_edit.php:191 #: ../admin/adm_list.php:206 ../admin/dom_edit.php:204
msgid "Disable" msgid "Disable"
msgstr "" msgstr ""
@ -2122,120 +2124,129 @@ msgid "Settings"
msgstr "Configuración" msgstr "Configuración"
#: ../admin/dom_edit.php:132 #: ../admin/dom_edit.php:132
#, fuzzy, php-format #, fuzzy
msgid "Editing subdomains of %s" msgid "Main subdomains"
msgstr "Modificar dominio %s" msgstr "Modificar dominio %s"
#: ../admin/dom_edit.php:146 #: ../admin/dom_edit.php:146 ../admin/dom_edit.php:159
#, fuzzy #, fuzzy
msgid "Subdomain" msgid "Subdomain"
msgstr "Subdominios" msgstr "Subdominios"
#: ../admin/dom_edit.php:159 #: ../admin/dom_edit.php:155
#, fuzzy
msgid "Advanced subdomains"
msgstr "Añadir un subdominio"
#: ../admin/dom_edit.php:156
msgid "The following entries are advanced ones, edit them at your own risks."
msgstr ""
#: ../admin/dom_edit.php:172
msgid "Forbidden" msgid "Forbidden"
msgstr "" msgstr ""
#: ../admin/dom_edit.php:173 #: ../admin/dom_edit.php:186
msgid "ERROR, please check your server setup" msgid "ERROR, please check your server setup"
msgstr "" msgstr ""
#: ../admin/dom_edit.php:180 ../admin/ftp_list.php:97 #: ../admin/dom_edit.php:193 ../admin/ftp_list.php:97
#, fuzzy #, fuzzy
msgid "Directory not found" msgid "Directory not found"
msgstr "Dominio %s borrado" msgstr "Dominio %s borrado"
#: ../admin/dom_edit.php:194 #: ../admin/dom_edit.php:207
msgid "Activation pending" msgid "Activation pending"
msgstr "" msgstr ""
#: ../admin/dom_edit.php:197 ../admin/ftp_list.php:87 #: ../admin/dom_edit.php:210 ../admin/ftp_list.php:87
#: ../admin/mail_list.php:146 ../admin/mail_list.php:156 #: ../admin/mail_list.php:146 ../admin/mail_list.php:156
msgid "Disabled" msgid "Disabled"
msgstr "" msgstr ""
#: ../admin/dom_edit.php:198 #: ../admin/dom_edit.php:211
msgid "Enable" msgid "Enable"
msgstr "" msgstr ""
#: ../admin/dom_edit.php:201 #: ../admin/dom_edit.php:214
#, fuzzy #, fuzzy
msgid "Desactivation pending" msgid "Desactivation pending"
msgstr "Desactivar" msgstr "Desactivar"
#: ../admin/dom_edit.php:209 #: ../admin/dom_edit.php:222
#, fuzzy #, fuzzy
msgid "Update pending" msgid "Update pending"
msgstr "Volver a cargar esta página" msgstr "Volver a cargar esta página"
#: ../admin/dom_edit.php:212 #: ../admin/dom_edit.php:225
#, fuzzy #, fuzzy
msgid "Deletion pending" msgid "Deletion pending"
msgstr "Suprimir un usuario" msgstr "Suprimir un usuario"
#: ../admin/dom_edit.php:232 #: ../admin/dom_edit.php:245
#, fuzzy, php-format #, fuzzy, php-format
msgid "Add a subdomain to %s" msgid "Add a subdomain to %s"
msgstr "Añadir un subdominio" msgstr "Añadir un subdominio"
#: ../admin/dom_edit.php:249 #: ../admin/dom_edit.php:262
#, fuzzy #, fuzzy
msgid "DNS &amp; Email parameters" msgid "DNS &amp; Email parameters"
msgstr "Parámetros DNS" msgstr "Parámetros DNS"
#: ../admin/dom_edit.php:254 #: ../admin/dom_edit.php:267
msgid "Manage the DNS on the server ?" msgid "Manage the DNS on the server ?"
msgstr "¿Administrar el DNS de este dominio?" msgstr "¿Administrar el DNS de este dominio?"
#: ../admin/dom_edit.php:265 #: ../admin/dom_edit.php:278
msgid "Define TTL for the zone records" msgid "Define TTL for the zone records"
msgstr "" msgstr ""
#: ../admin/dom_edit.php:267 #: ../admin/dom_edit.php:280
msgid "" msgid ""
"Warning: a low TTL can be problematic. It is recommended not to use a lower " "Warning: a low TTL can be problematic. It is recommended not to use a lower "
"TTL than 3600 seconds." "TTL than 3600 seconds."
msgstr "" msgstr ""
#: ../admin/dom_edit.php:267 #: ../admin/dom_edit.php:280
msgid "seconds" msgid "seconds"
msgstr "" msgstr ""
#: ../admin/dom_edit.php:276 #: ../admin/dom_edit.php:289
#, fuzzy #, fuzzy
msgid "Manage the Emails Addresses of this domain on the server?" msgid "Manage the Emails Addresses of this domain on the server?"
msgstr "¿Administrar el DNS de este dominio?" msgstr "¿Administrar el DNS de este dominio?"
#: ../admin/dom_edit.php:284 #: ../admin/dom_edit.php:297
msgid "" msgid ""
"Warning: If you set this to 'no', all your email accounts and aliases on " "Warning: If you set this to 'no', all your email accounts and aliases on "
"this domain will be immediately deleted." "this domain will be immediately deleted."
msgstr "" msgstr ""
#: ../admin/dom_edit.php:285 #: ../admin/dom_edit.php:298
msgid "Submit the changes" msgid "Submit the changes"
msgstr "Validar cambios" msgstr "Validar cambios"
#: ../admin/dom_edit.php:293 #: ../admin/dom_edit.php:306
msgid "" msgid ""
"Here is the actual DNS zone running on the AlternC server. If you just made " "Here is the actual DNS zone running on the AlternC server. If you just made "
"some changes, you have to wait for it." "some changes, you have to wait for it."
msgstr "" msgstr ""
#: ../admin/dom_edit.php:297 #: ../admin/dom_edit.php:310
#, fuzzy #, fuzzy
msgid "Click here to view the dump" msgid "Click here to view the dump"
msgstr "Presiona aquí para seguir" msgstr "Presiona aquí para seguir"
#: ../admin/dom_edit.php:300 #: ../admin/dom_edit.php:313
msgid "Refresh" msgid "Refresh"
msgstr "" msgstr ""
#: ../admin/dom_edit.php:306 #: ../admin/dom_edit.php:319
#, fuzzy #, fuzzy
msgid "Domain removal" msgid "Domain removal"
msgstr "Nombre de dominio" msgstr "Nombre de dominio"
#: ../admin/dom_edit.php:307 #: ../admin/dom_edit.php:320
#, php-format #, php-format
msgid "" msgid ""
"If you want to destroy the domain %s, click on the button below. Warning: " "If you want to destroy the domain %s, click on the button below. Warning: "
@ -2243,7 +2254,7 @@ msgid ""
"domain and subdomains." "domain and subdomains."
msgstr "" msgstr ""
#: ../admin/dom_edit.php:310 #: ../admin/dom_edit.php:323
#, php-format #, php-format
msgid "Delete %s from this server" msgid "Delete %s from this server"
msgstr "" msgstr ""
@ -4603,24 +4614,24 @@ msgstr "Modificar dominio %s"
msgid "The name MUST contain only letter and digits" msgid "The name MUST contain only letter and digits"
msgstr "" msgstr ""
#: ../class/m_dom.php:578 ../class/m_dom.php:1401 #: ../class/m_dom.php:578 ../class/m_dom.php:1402
msgid "" msgid ""
"The parameters for this subdomain and domain type are invalid. Please check " "The parameters for this subdomain and domain type are invalid. Please check "
"for subdomain entries incompatibility" "for subdomain entries incompatibility"
msgstr "" msgstr ""
#: ../class/m_dom.php:697 ../class/m_dom.php:1146 ../class/m_dom.php:1217 #: ../class/m_dom.php:697 ../class/m_dom.php:1146 ../class/m_dom.php:1218
#: ../class/m_dom.php:1372 ../class/m_dom.php:1462 ../class/m_dom.php:1511 #: ../class/m_dom.php:1373 ../class/m_dom.php:1463 ../class/m_dom.php:1512
#: ../class/m_dom.php:1855 #: ../class/m_dom.php:1856
msgid "--- Program error --- No lock on the domains!" msgid "--- Program error --- No lock on the domains!"
msgstr "" msgstr ""
#: ../class/m_dom.php:704 ../class/m_dom.php:1151 ../class/m_dom.php:1396 #: ../class/m_dom.php:704 ../class/m_dom.php:1151 ../class/m_dom.php:1397
#: ../class/m_dom.php:1538 #: ../class/m_dom.php:1539
msgid "The domain name is syntaxically incorrect" msgid "The domain name is syntaxically incorrect"
msgstr "" msgstr ""
#: ../class/m_dom.php:710 ../class/m_dom.php:755 ../class/m_dom.php:1622 #: ../class/m_dom.php:710 ../class/m_dom.php:755 ../class/m_dom.php:1623
msgid "" msgid ""
"The requested domain is forbidden in this server, please contact the " "The requested domain is forbidden in this server, please contact the "
"administrator" "administrator"
@ -4635,7 +4646,7 @@ msgstr ""
msgid "The domain already exist" msgid "The domain already exist"
msgstr "Editar archivo" msgstr "Editar archivo"
#: ../class/m_dom.php:731 ../class/m_dom.php:1518 #: ../class/m_dom.php:731 ../class/m_dom.php:1519
msgid "" msgid ""
"The last member of the domain name is incorrect or cannot be hosted in that " "The last member of the domain name is incorrect or cannot be hosted in that "
"server" "server"
@ -4667,165 +4678,165 @@ msgstr "no pudo ser borrado"
msgid "The Whois database is unavailable, please try again later" msgid "The Whois database is unavailable, please try again later"
msgstr "" msgstr ""
#: ../class/m_dom.php:1064 ../class/m_dom.php:1522 #: ../class/m_dom.php:1064 ../class/m_dom.php:1523
msgid "The domain cannot be found in the Whois database" msgid "The domain cannot be found in the Whois database"
msgstr "" msgstr ""
#: ../class/m_dom.php:1222 ../class/m_dom.php:1466 #: ../class/m_dom.php:1223 ../class/m_dom.php:1467
#, fuzzy #, fuzzy
msgid "The sub-domain does not exist" msgid "The sub-domain does not exist"
msgstr "¡El buzón <b>%s</b> no existe!" msgstr "¡El buzón <b>%s</b> no existe!"
#: ../class/m_dom.php:1261 #: ../class/m_dom.php:1262
msgid "invalid url" msgid "invalid url"
msgstr "" msgstr ""
#: ../class/m_dom.php:1271 #: ../class/m_dom.php:1272
#, fuzzy #, fuzzy
msgid "The folder you entered is incorrect or does not exist" msgid "The folder you entered is incorrect or does not exist"
msgstr "El miembro '%s' no existe" msgstr "El miembro '%s' no existe"
#: ../class/m_dom.php:1280 ../class/m_dom.php:1288 #: ../class/m_dom.php:1281 ../class/m_dom.php:1289
#, fuzzy #, fuzzy
msgid "The ip address is invalid" msgid "The ip address is invalid"
msgstr "Lista de las buzones de correo del dominio %s" msgstr "Lista de las buzones de correo del dominio %s"
#: ../class/m_dom.php:1296 #: ../class/m_dom.php:1297
#, fuzzy #, fuzzy
msgid "" msgid ""
"The name you entered is incorrect or not fully qualified (shall end with a .)" "The name you entered is incorrect or not fully qualified (shall end with a .)"
msgstr "El miembro '%s' no existe" msgstr "El miembro '%s' no existe"
#: ../class/m_dom.php:1304 #: ../class/m_dom.php:1305
#, fuzzy #, fuzzy
msgid "The TXT value you entered is incorrect" msgid "The TXT value you entered is incorrect"
msgstr "El miembro '%s' no existe" msgstr "El miembro '%s' no existe"
#: ../class/m_dom.php:1309 #: ../class/m_dom.php:1310
msgid "Invalid domain type selected, please check" msgid "Invalid domain type selected, please check"
msgstr "" msgstr ""
#: ../class/m_dom.php:1384 #: ../class/m_dom.php:1385
msgid "" msgid ""
"There is some forbidden characters in the sub domain (only A-Z 0-9 and - are " "There is some forbidden characters in the sub domain (only A-Z 0-9 and - are "
"allowed)" "allowed)"
msgstr "" msgstr ""
#: ../class/m_dom.php:1423 ../class/m_dom.php:1434 #: ../class/m_dom.php:1424 ../class/m_dom.php:1435
msgid "Cannot write to the destination folder" msgid "Cannot write to the destination folder"
msgstr "" msgstr ""
#: ../class/m_dom.php:1526 #: ../class/m_dom.php:1527
msgid "" msgid ""
"The DNS of this domain do not match the server's DNS. Please change your " "The DNS of this domain do not match the server's DNS. Please change your "
"domain's DNS before you install it again" "domain's DNS before you install it again"
msgstr "" msgstr ""
#: ../class/m_dom.php:1543 #: ../class/m_dom.php:1544
#, fuzzy, php-format #, fuzzy, php-format
msgid "The domain name %s does not exist" msgid "The domain name %s does not exist"
msgstr "¡El buzón <b>%s</b> no existe!" msgstr "¡El buzón <b>%s</b> no existe!"
#: ../class/m_dom.php:1550 #: ../class/m_dom.php:1551
#, fuzzy #, fuzzy
msgid "No change has been requested..." msgid "No change has been requested..."
msgstr "Los parámetros de ayuda han sido modificados." msgstr "Los parámetros de ayuda han sido modificados."
#: ../class/m_dom.php:1558 ../class/m_dom.php:1563 #: ../class/m_dom.php:1559 ../class/m_dom.php:1564
msgid "" msgid ""
"There is no MX record pointing to this server, and you are asking us to host " "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 " "the mail here. Make sure to update your MX entries or no mail will be "
"received" "received"
msgstr "" msgstr ""
#: ../class/m_dom.php:1614 ../class/m_dom.php:1639 #: ../class/m_dom.php:1615 ../class/m_dom.php:1640
msgid "The IP address you entered is incorrect" msgid "The IP address you entered is incorrect"
msgstr "" msgstr ""
#: ../class/m_dom.php:1732 ../class/m_dom.php:1738 ../class/m_dom.php:1756 #: ../class/m_dom.php:1733 ../class/m_dom.php:1739 ../class/m_dom.php:1757
#: ../class/m_dom.php:1762 #: ../class/m_dom.php:1763
#, fuzzy #, fuzzy
msgid "This domain is not installed in your account" msgid "This domain is not installed in your account"
msgstr "Esta cuenta es un cuenta de administrador" msgstr "Esta cuenta es un cuenta de administrador"
#: ../class/m_dom.php:1805 #: ../class/m_dom.php:1806
msgid "The specified slave account already exists" msgid "The specified slave account already exists"
msgstr "" msgstr ""
#: ../class/m_dom.php:1836 #: ../class/m_dom.php:1837
msgid "--- Program error --- Lock already obtained!" msgid "--- Program error --- Lock already obtained!"
msgstr "" msgstr ""
#: ../class/m_dom.php:2182 #: ../class/m_dom.php:2183
#, php-format #, php-format
msgid "" msgid ""
"Problem on %s: there is more than 1 web configuration going to be generated " "Problem on %s: there is more than 1 web configuration going to be generated "
"for this sub-domain." "for this sub-domain."
msgstr "" msgstr ""
#: ../class/m_dom.php:2191 #: ../class/m_dom.php:2192
#, php-format #, php-format
msgid "Problem on %s: we do not know domain's type <b>%s</b>." msgid "Problem on %s: we do not know domain's type <b>%s</b>."
msgstr "" msgstr ""
#: ../class/m_dom.php:2202 #: ../class/m_dom.php:2203
#, fuzzy #, fuzzy
msgid "Locally hosted" msgid "Locally hosted"
msgstr "Administrar localmente" msgstr "Administrar localmente"
#: ../class/m_dom.php:2203 #: ../class/m_dom.php:2204
#, fuzzy #, fuzzy
msgid "URL redirection" msgid "URL redirection"
msgstr "Dirigir hacia una URL" msgstr "Dirigir hacia una URL"
#: ../class/m_dom.php:2204 #: ../class/m_dom.php:2205
msgid "IPv4 redirect" msgid "IPv4 redirect"
msgstr "" msgstr ""
#: ../class/m_dom.php:2205
msgid "Webmail access"
msgstr "Acceso Webmail"
#: ../class/m_dom.php:2206 #: ../class/m_dom.php:2206
#, fuzzy msgid "Webmail access"
msgid "Squirrelmail Webmail access"
msgstr "Acceso Webmail" msgstr "Acceso Webmail"
#: ../class/m_dom.php:2207 #: ../class/m_dom.php:2207
#, fuzzy #, fuzzy
msgid "Roundcube Webmail access" msgid "Squirrelmail Webmail access"
msgstr "Acceso Webmail" msgstr "Acceso Webmail"
#: ../class/m_dom.php:2208 #: ../class/m_dom.php:2208
#, fuzzy
msgid "Roundcube Webmail access"
msgstr "Acceso Webmail"
#: ../class/m_dom.php:2209
msgid "IPv6 redirect" msgid "IPv6 redirect"
msgstr "" msgstr ""
#: ../class/m_dom.php:2209 #: ../class/m_dom.php:2210
msgid "CNAME DNS entry" msgid "CNAME DNS entry"
msgstr "" msgstr ""
#: ../class/m_dom.php:2210 #: ../class/m_dom.php:2211
msgid "TXT DNS entry" msgid "TXT DNS entry"
msgstr "" msgstr ""
#: ../class/m_dom.php:2211 #: ../class/m_dom.php:2212
msgid "MX DNS entry" msgid "MX DNS entry"
msgstr "" msgstr ""
#: ../class/m_dom.php:2212 #: ../class/m_dom.php:2213
msgid "secondary MX DNS entry" msgid "secondary MX DNS entry"
msgstr "" msgstr ""
#: ../class/m_dom.php:2213 #: ../class/m_dom.php:2214
#, fuzzy #, fuzzy
msgid "Default mail server" msgid "Default mail server"
msgstr "Valores por omisión" msgstr "Valores por omisión"
#: ../class/m_dom.php:2214 #: ../class/m_dom.php:2215
msgid "Default backup mail server" msgid "Default backup mail server"
msgstr "" msgstr ""
#: ../class/m_dom.php:2215 #: ../class/m_dom.php:2216
#, fuzzy #, fuzzy
msgid "AlternC panel access" msgid "AlternC panel access"
msgstr "Lista de cuentas FTP" msgstr "Lista de cuentas FTP"
@ -5545,6 +5556,10 @@ msgstr "Animación Flash"
msgid "Real Media File" msgid "Real Media File"
msgstr "Archivo Real Media" msgstr "Archivo Real Media"
#, fuzzy
#~ msgid "Editing subdomains of %s"
#~ msgstr "Modificar dominio %s"
#, fuzzy #, fuzzy
#~ msgid "The name you entered is incorrect" #~ msgid "The name you entered is incorrect"
#~ msgstr "El miembro '%s' no existe" #~ msgstr "El miembro '%s' no existe"

View File

@ -9,8 +9,8 @@ msgstr ""
"Project-Id-Version: $Id: admin.po,v 1.10 2004/11/01 15:55:44 anonymous Exp " "Project-Id-Version: $Id: admin.po,v 1.10 2004/11/01 15:55:44 anonymous Exp "
"$\n" "$\n"
"Report-Msgid-Bugs-To: i18n@alternc.org\n" "Report-Msgid-Bugs-To: i18n@alternc.org\n"
"POT-Creation-Date: 2015-06-16 16:06+0200\n" "POT-Creation-Date: 2015-06-17 16:24+0200\n"
"PO-Revision-Date: 2015-06-16 14:11+0200\n" "PO-Revision-Date: 2015-06-17 16:32+0200\n"
"Last-Translator: Benjamin Sonntag <benjamin@sonntag.fr>\n" "Last-Translator: Benjamin Sonntag <benjamin@sonntag.fr>\n"
"Language-Team: français <team@alternc.org>\n" "Language-Team: français <team@alternc.org>\n"
"Language: fr\n" "Language: fr\n"
@ -180,7 +180,7 @@ msgstr "Peut-il changer son mot de passe&nbsp;?"
#: ../admin/adm_domstype.php:87 ../admin/adm_domstype.php:88 #: ../admin/adm_domstype.php:87 ../admin/adm_domstype.php:88
#: ../admin/adm_edit.php:78 ../admin/adm_edit.php:95 #: ../admin/adm_edit.php:78 ../admin/adm_edit.php:95
#: ../admin/adm_passpolicy.php:113 ../admin/adm_passpolicy.php:157 #: ../admin/adm_passpolicy.php:113 ../admin/adm_passpolicy.php:157
#: ../admin/dom_edit.php:257 ../admin/dom_edit.php:280 #: ../admin/dom_edit.php:270 ../admin/dom_edit.php:293
#: ../admin/dom_subdel.php:80 ../admin/mail_edit.php:90 #: ../admin/dom_subdel.php:80 ../admin/mail_edit.php:90
#: ../admin/mail_list.php:166 ../admin/sql_bck.php:94 ../class/m_bro.php:75 #: ../admin/mail_list.php:166 ../admin/sql_bck.php:94 ../class/m_bro.php:75
msgid "No" msgid "No"
@ -191,7 +191,7 @@ msgstr "Non"
#: ../admin/adm_domstype.php:87 ../admin/adm_domstype.php:88 #: ../admin/adm_domstype.php:87 ../admin/adm_domstype.php:88
#: ../admin/adm_edit.php:79 ../admin/adm_edit.php:96 #: ../admin/adm_edit.php:79 ../admin/adm_edit.php:96
#: ../admin/adm_passpolicy.php:114 ../admin/adm_passpolicy.php:157 #: ../admin/adm_passpolicy.php:114 ../admin/adm_passpolicy.php:157
#: ../admin/dom_edit.php:256 ../admin/dom_edit.php:279 #: ../admin/dom_edit.php:269 ../admin/dom_edit.php:292
#: ../admin/dom_subdel.php:79 ../admin/mail_edit.php:91 #: ../admin/dom_subdel.php:79 ../admin/mail_edit.php:91
#: ../admin/mail_list.php:212 ../admin/mail_list.php:225 #: ../admin/mail_list.php:212 ../admin/mail_list.php:225
#: ../admin/mail_list.php:238 ../admin/mail_list.php:257 #: ../admin/mail_list.php:238 ../admin/mail_list.php:257
@ -308,7 +308,8 @@ msgid "Informations"
msgstr "Informations" msgstr "Informations"
#: ../admin/adm_authip_whitelist.php:64 ../admin/adm_doms_def_type.php:48 #: ../admin/adm_authip_whitelist.php:64 ../admin/adm_doms_def_type.php:48
#: ../admin/dom_edit.php:146 ../admin/ip_main.php:146 #: ../admin/dom_edit.php:146 ../admin/dom_edit.php:159
#: ../admin/ip_main.php:146
msgid "Type" msgid "Type"
msgstr "Type" msgstr "Type"
@ -316,7 +317,7 @@ msgstr "Type"
#: ../admin/adm_list.php:199 ../admin/adm_list.php:226 #: ../admin/adm_list.php:199 ../admin/adm_list.php:226
#: ../admin/adm_list.php:258 ../admin/adm_passpolicy.php:151 #: ../admin/adm_list.php:258 ../admin/adm_passpolicy.php:151
#: ../admin/adm_tld.php:80 ../admin/bro_editor.php:86 #: ../admin/adm_tld.php:80 ../admin/bro_editor.php:86
#: ../admin/dom_edit.php:161 ../admin/ftp_list.php:80 ../admin/ip_main.php:166 #: ../admin/dom_edit.php:174 ../admin/ftp_list.php:80 ../admin/ip_main.php:166
#: ../admin/mail_list.php:152 #: ../admin/mail_list.php:152
msgid "Edit" msgid "Edit"
msgstr "Modifier" msgstr "Modifier"
@ -324,7 +325,7 @@ msgstr "Modifier"
#: ../admin/adm_authip_whitelist.php:85 ../admin/adm_doms_def_type.php:60 #: ../admin/adm_authip_whitelist.php:85 ../admin/adm_doms_def_type.php:60
#: ../admin/adm_mxaccount.php:83 ../admin/adm_slavedns.php:101 #: ../admin/adm_mxaccount.php:83 ../admin/adm_slavedns.php:101
#: ../admin/adm_slavedns.php:145 ../admin/bro_main.php:283 #: ../admin/adm_slavedns.php:145 ../admin/bro_main.php:283
#: ../admin/cron.php:54 ../admin/dom_edit.php:127 ../admin/dom_edit.php:168 #: ../admin/cron.php:54 ../admin/dom_edit.php:127 ../admin/dom_edit.php:181
#: ../admin/ftp_del.php:82 ../admin/hta_dodeluser.php:64 #: ../admin/ftp_del.php:82 ../admin/hta_dodeluser.php:64
#: ../admin/ip_main.php:79 ../admin/ip_main.php:167 #: ../admin/ip_main.php:79 ../admin/ip_main.php:167
#: ../admin/piwik_site_dodel.php:70 ../admin/piwik_sitelist.php:128 #: ../admin/piwik_site_dodel.php:70 ../admin/piwik_sitelist.php:128
@ -502,7 +503,7 @@ msgid "Account"
msgstr "Compte" msgstr "Compte"
#: ../admin/adm_dnsweberror.php:55 ../admin/adm_dnsweberror.php:85 #: ../admin/adm_dnsweberror.php:55 ../admin/adm_dnsweberror.php:85
#: ../admin/dom_add.php:57 ../class/m_dom.php:1902 #: ../admin/dom_add.php:57 ../class/m_dom.php:1903
msgid "Domain name" msgid "Domain name"
msgstr "Nom de domaine" msgstr "Nom de domaine"
@ -680,6 +681,7 @@ msgid "OK?"
msgstr "OK&nbsp;?" msgstr "OK&nbsp;?"
#: ../admin/adm_doms.php:69 ../admin/dom_edit.php:146 #: ../admin/adm_doms.php:69 ../admin/dom_edit.php:146
#: ../admin/dom_edit.php:159
msgid "Status" msgid "Status"
msgstr "État" msgstr "État"
@ -835,7 +837,7 @@ msgstr "Type de destination"
msgid "Compatibility" msgid "Compatibility"
msgstr "Compatibilité" msgstr "Compatibilité"
#: ../admin/adm_domstypeedit.php:100 ../admin/dom_edit.php:190 #: ../admin/adm_domstypeedit.php:100 ../admin/dom_edit.php:203
#: ../admin/ftp_list.php:73 ../admin/ftp_list.php:84 #: ../admin/ftp_list.php:73 ../admin/ftp_list.php:84
#: ../admin/mail_list.php:127 ../admin/mail_list.php:154 #: ../admin/mail_list.php:127 ../admin/mail_list.php:154
msgid "Enabled" msgid "Enabled"
@ -1080,7 +1082,7 @@ msgstr "%1$d/%2$d/%3$d"
msgid "DB:" msgid "DB:"
msgstr "Base:" msgstr "Base:"
#: ../admin/adm_list.php:206 ../admin/dom_edit.php:191 #: ../admin/adm_list.php:206 ../admin/dom_edit.php:204
msgid "Disable" msgid "Disable"
msgstr "Désactiver" msgstr "Désactiver"
@ -2079,69 +2081,78 @@ msgid "Settings"
msgstr "Configuration" msgstr "Configuration"
#: ../admin/dom_edit.php:132 #: ../admin/dom_edit.php:132
#, php-format msgid "Main subdomains"
msgid "Editing subdomains of %s" msgstr "Sous-domaines principaux"
msgstr "Edition des sous-domaines de %s"
#: ../admin/dom_edit.php:146 #: ../admin/dom_edit.php:146 ../admin/dom_edit.php:159
msgid "Subdomain" msgid "Subdomain"
msgstr "Sous-domaine" msgstr "Sous-domaine"
#: ../admin/dom_edit.php:159 #: ../admin/dom_edit.php:155
msgid "Advanced subdomains"
msgstr "Sous-domaines avancés"
#: ../admin/dom_edit.php:156
msgid "The following entries are advanced ones, edit them at your own risks."
msgstr ""
"Les entrées ci-dessous sont pour les utilisateurs avancés, modifiez-les à "
"vos risques et périls."
#: ../admin/dom_edit.php:172
msgid "Forbidden" msgid "Forbidden"
msgstr "Interdit" msgstr "Interdit"
#: ../admin/dom_edit.php:173 #: ../admin/dom_edit.php:186
msgid "ERROR, please check your server setup" msgid "ERROR, please check your server setup"
msgstr "ERREUR, merci de vérifier la configuration de votre serveur" msgstr "ERREUR, merci de vérifier la configuration de votre serveur"
#: ../admin/dom_edit.php:180 ../admin/ftp_list.php:97 #: ../admin/dom_edit.php:193 ../admin/ftp_list.php:97
msgid "Directory not found" msgid "Directory not found"
msgstr "Répertoire non trouvé" msgstr "Répertoire non trouvé"
#: ../admin/dom_edit.php:194 #: ../admin/dom_edit.php:207
msgid "Activation pending" msgid "Activation pending"
msgstr "Activation en cours" msgstr "Activation en cours"
#: ../admin/dom_edit.php:197 ../admin/ftp_list.php:87 #: ../admin/dom_edit.php:210 ../admin/ftp_list.php:87
#: ../admin/mail_list.php:146 ../admin/mail_list.php:156 #: ../admin/mail_list.php:146 ../admin/mail_list.php:156
msgid "Disabled" msgid "Disabled"
msgstr "Désactivé" msgstr "Désactivé"
#: ../admin/dom_edit.php:198 #: ../admin/dom_edit.php:211
msgid "Enable" msgid "Enable"
msgstr "Activer" msgstr "Activer"
#: ../admin/dom_edit.php:201 #: ../admin/dom_edit.php:214
msgid "Desactivation pending" msgid "Desactivation pending"
msgstr "Désactivation en attente" msgstr "Désactivation en attente"
#: ../admin/dom_edit.php:209 #: ../admin/dom_edit.php:222
msgid "Update pending" msgid "Update pending"
msgstr "Mise à jour en attente" msgstr "Mise à jour en attente"
#: ../admin/dom_edit.php:212 #: ../admin/dom_edit.php:225
msgid "Deletion pending" msgid "Deletion pending"
msgstr "Suppression en attente" msgstr "Suppression en attente"
#: ../admin/dom_edit.php:232 #: ../admin/dom_edit.php:245
#, php-format #, php-format
msgid "Add a subdomain to %s" msgid "Add a subdomain to %s"
msgstr "Ajouter un sous-domaine à %s" msgstr "Ajouter un sous-domaine à %s"
#: ../admin/dom_edit.php:249 #: ../admin/dom_edit.php:262
msgid "DNS &amp; Email parameters" msgid "DNS &amp; Email parameters"
msgstr "Paramètres DNS &amp; Email" msgstr "Paramètres DNS &amp; Email"
#: ../admin/dom_edit.php:254 #: ../admin/dom_edit.php:267
msgid "Manage the DNS on the server ?" msgid "Manage the DNS on the server ?"
msgstr "Gère-t-on le DNS de ce domaine ?" msgstr "Gère-t-on le DNS de ce domaine ?"
#: ../admin/dom_edit.php:265 #: ../admin/dom_edit.php:278
msgid "Define TTL for the zone records" msgid "Define TTL for the zone records"
msgstr "Choix de la TTL pour les enregistrements de la zone DNS" msgstr "Choix de la TTL pour les enregistrements de la zone DNS"
#: ../admin/dom_edit.php:267 #: ../admin/dom_edit.php:280
msgid "" msgid ""
"Warning: a low TTL can be problematic. It is recommended not to use a lower " "Warning: a low TTL can be problematic. It is recommended not to use a lower "
"TTL than 3600 seconds." "TTL than 3600 seconds."
@ -2149,15 +2160,15 @@ msgstr ""
"Attention : une TTL trop basse peut poser problème. N'utilisez pas de TTL " "Attention : une TTL trop basse peut poser problème. N'utilisez pas de TTL "
"inférieure à 3600 secondes." "inférieure à 3600 secondes."
#: ../admin/dom_edit.php:267 #: ../admin/dom_edit.php:280
msgid "seconds" msgid "seconds"
msgstr "secondes" msgstr "secondes"
#: ../admin/dom_edit.php:276 #: ../admin/dom_edit.php:289
msgid "Manage the Emails Addresses of this domain on the server?" 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 ?" msgstr "Gère-t-on les Adresses Emails de ce domaine sur le serveur ?"
#: ../admin/dom_edit.php:284 #: ../admin/dom_edit.php:297
msgid "" msgid ""
"Warning: If you set this to 'no', all your email accounts and aliases on " "Warning: If you set this to 'no', all your email accounts and aliases on "
"this domain will be immediately deleted." "this domain will be immediately deleted."
@ -2165,11 +2176,11 @@ msgstr ""
"Attention: Si vous mettez 'non' ici, toutes les adresses emails de ce " "Attention: Si vous mettez 'non' ici, toutes les adresses emails de ce "
"domaine et les messages qu'elles contiennent seront immédiatement détruits." "domaine et les messages qu'elles contiennent seront immédiatement détruits."
#: ../admin/dom_edit.php:285 #: ../admin/dom_edit.php:298
msgid "Submit the changes" msgid "Submit the changes"
msgstr "Valider les changements" msgstr "Valider les changements"
#: ../admin/dom_edit.php:293 #: ../admin/dom_edit.php:306
msgid "" msgid ""
"Here is the actual DNS zone running on the AlternC server. If you just made " "Here is the actual DNS zone running on the AlternC server. If you just made "
"some changes, you have to wait for it." "some changes, you have to wait for it."
@ -2177,19 +2188,19 @@ msgstr ""
"Voici la zone telle qu'AlternC la sert. Si vous venez de demander des " "Voici la zone telle qu'AlternC la sert. Si vous venez de demander des "
"modifications, attendez avant de les voir ici." "modifications, attendez avant de les voir ici."
#: ../admin/dom_edit.php:297 #: ../admin/dom_edit.php:310
msgid "Click here to view the dump" msgid "Click here to view the dump"
msgstr "Cliquez ici pour voir le dump" msgstr "Cliquez ici pour voir le dump"
#: ../admin/dom_edit.php:300 #: ../admin/dom_edit.php:313
msgid "Refresh" msgid "Refresh"
msgstr "Actualiser" msgstr "Actualiser"
#: ../admin/dom_edit.php:306 #: ../admin/dom_edit.php:319
msgid "Domain removal" msgid "Domain removal"
msgstr "Suppression du nom de domaine" msgstr "Suppression du nom de domaine"
#: ../admin/dom_edit.php:307 #: ../admin/dom_edit.php:320
#, php-format #, php-format
msgid "" msgid ""
"If you want to destroy the domain %s, click on the button below. Warning: " "If you want to destroy the domain %s, click on the button below. Warning: "
@ -2200,7 +2211,7 @@ msgstr ""
"Attention : cela détruira aussi les comptes FTP, adresses emails, listes de " "Attention : cela détruira aussi les comptes FTP, adresses emails, listes de "
"discussion associées à ce domaine et ses sous-domaines." "discussion associées à ce domaine et ses sous-domaines."
#: ../admin/dom_edit.php:310 #: ../admin/dom_edit.php:323
#, php-format #, php-format
msgid "Delete %s from this server" msgid "Delete %s from this server"
msgstr "Effacer le domaine %s de ce serveur" msgstr "Effacer le domaine %s de ce serveur"
@ -4523,7 +4534,7 @@ msgstr "Nom de domaine manquant"
msgid "The name MUST contain only letter and digits" msgid "The name MUST contain only letter and digits"
msgstr "Le nom ne doit contenir QUE des lettres ou chiffres" msgstr "Le nom ne doit contenir QUE des lettres ou chiffres"
#: ../class/m_dom.php:578 ../class/m_dom.php:1401 #: ../class/m_dom.php:578 ../class/m_dom.php:1402
msgid "" msgid ""
"The parameters for this subdomain and domain type are invalid. Please check " "The parameters for this subdomain and domain type are invalid. Please check "
"for subdomain entries incompatibility" "for subdomain entries incompatibility"
@ -4531,18 +4542,18 @@ msgstr ""
"Les paramètres de ce sous-domaine sont invalides. Vérifiez la compatibilité " "Les paramètres de ce sous-domaine sont invalides. Vérifiez la compatibilité "
"de vos entrées avec d'autres sous-domaines" "de vos entrées avec d'autres sous-domaines"
#: ../class/m_dom.php:697 ../class/m_dom.php:1146 ../class/m_dom.php:1217 #: ../class/m_dom.php:697 ../class/m_dom.php:1146 ../class/m_dom.php:1218
#: ../class/m_dom.php:1372 ../class/m_dom.php:1462 ../class/m_dom.php:1511 #: ../class/m_dom.php:1373 ../class/m_dom.php:1463 ../class/m_dom.php:1512
#: ../class/m_dom.php:1855 #: ../class/m_dom.php:1856
msgid "--- Program error --- No lock on the domains!" msgid "--- Program error --- No lock on the domains!"
msgstr "--- Erreur du programme --- Pas de verrou sur le domaine !" msgstr "--- Erreur du programme --- Pas de verrou sur le domaine !"
#: ../class/m_dom.php:704 ../class/m_dom.php:1151 ../class/m_dom.php:1396 #: ../class/m_dom.php:704 ../class/m_dom.php:1151 ../class/m_dom.php:1397
#: ../class/m_dom.php:1538 #: ../class/m_dom.php:1539
msgid "The domain name is syntaxically incorrect" msgid "The domain name is syntaxically incorrect"
msgstr "Le nom du domaine est syntaxiquement incorrect" msgstr "Le nom du domaine est syntaxiquement incorrect"
#: ../class/m_dom.php:710 ../class/m_dom.php:755 ../class/m_dom.php:1622 #: ../class/m_dom.php:710 ../class/m_dom.php:755 ../class/m_dom.php:1623
msgid "" msgid ""
"The requested domain is forbidden in this server, please contact the " "The requested domain is forbidden in this server, please contact the "
"administrator" "administrator"
@ -4560,7 +4571,7 @@ msgstr ""
msgid "The domain already exist" msgid "The domain already exist"
msgstr "Ce domaine existe déjà" msgstr "Ce domaine existe déjà"
#: ../class/m_dom.php:731 ../class/m_dom.php:1518 #: ../class/m_dom.php:731 ../class/m_dom.php:1519
msgid "" msgid ""
"The last member of the domain name is incorrect or cannot be hosted in that " "The last member of the domain name is incorrect or cannot be hosted in that "
"server" "server"
@ -4598,40 +4609,42 @@ msgstr ""
"La base Whois n'est pas disponible pour l'instant. Merci de réessayer " "La base Whois n'est pas disponible pour l'instant. Merci de réessayer "
"ultérieurement" "ultérieurement"
#: ../class/m_dom.php:1064 ../class/m_dom.php:1522 #: ../class/m_dom.php:1064 ../class/m_dom.php:1523
msgid "The domain cannot be found in the Whois database" msgid "The domain cannot be found in the Whois database"
msgstr "Le nom de domaine n'a pas été trouvé dans la base whois" msgstr "Le nom de domaine n'a pas été trouvé dans la base whois"
#: ../class/m_dom.php:1222 ../class/m_dom.php:1466 #: ../class/m_dom.php:1223 ../class/m_dom.php:1467
msgid "The sub-domain does not exist" msgid "The sub-domain does not exist"
msgstr "Ce sous-domaine n'existe pas" msgstr "Ce sous-domaine n'existe pas"
#: ../class/m_dom.php:1261 #: ../class/m_dom.php:1262
msgid "invalid url" msgid "invalid url"
msgstr "url invalide" msgstr "url invalide"
#: ../class/m_dom.php:1271 #: ../class/m_dom.php:1272
msgid "The folder you entered is incorrect or does not exist" msgid "The folder you entered is incorrect or does not exist"
msgstr "Le dossier que vous avez entré est incorrect ou n'existe pas" msgstr "Le dossier que vous avez entré est incorrect ou n'existe pas"
#: ../class/m_dom.php:1280 ../class/m_dom.php:1288 #: ../class/m_dom.php:1281 ../class/m_dom.php:1289
msgid "The ip address is invalid" msgid "The ip address is invalid"
msgstr "Adresse IP invalide" msgstr "Adresse IP invalide"
#: ../class/m_dom.php:1296 #: ../class/m_dom.php:1297
msgid "" msgid ""
"The name you entered is incorrect or not fully qualified (shall end with a .)" "The name you entered is incorrect or not fully qualified (shall end with a .)"
msgstr "Le dossier que vous avez entré est incorrect ou non qualifié (doit terminé par un .)" msgstr ""
"Le dossier que vous avez entré est incorrect ou non qualifié (doit terminé "
"par un .)"
#: ../class/m_dom.php:1304 #: ../class/m_dom.php:1305
msgid "The TXT value you entered is incorrect" msgid "The TXT value you entered is incorrect"
msgstr "La valeur TXT entrée est incorrecte" msgstr "La valeur TXT entrée est incorrecte"
#: ../class/m_dom.php:1309 #: ../class/m_dom.php:1310
msgid "Invalid domain type selected, please check" msgid "Invalid domain type selected, please check"
msgstr "Type de domaine invalide, réessayez" msgstr "Type de domaine invalide, réessayez"
#: ../class/m_dom.php:1384 #: ../class/m_dom.php:1385
msgid "" msgid ""
"There is some forbidden characters in the sub domain (only A-Z 0-9 and - are " "There is some forbidden characters in the sub domain (only A-Z 0-9 and - are "
"allowed)" "allowed)"
@ -4639,11 +4652,11 @@ msgstr ""
"Vous avez utilisé des caractères interdits pour le sous-domaine. (seuls A-Z " "Vous avez utilisé des caractères interdits pour le sous-domaine. (seuls A-Z "
"0-9 et - sont autorisés)" "0-9 et - sont autorisés)"
#: ../class/m_dom.php:1423 ../class/m_dom.php:1434 #: ../class/m_dom.php:1424 ../class/m_dom.php:1435
msgid "Cannot write to the destination folder" msgid "Cannot write to the destination folder"
msgstr "Impossible d'écrire dans le dossier cible" msgstr "Impossible d'écrire dans le dossier cible"
#: ../class/m_dom.php:1526 #: ../class/m_dom.php:1527
msgid "" msgid ""
"The DNS of this domain do not match the server's DNS. Please change your " "The DNS of this domain do not match the server's DNS. Please change your "
"domain's DNS before you install it again" "domain's DNS before you install it again"
@ -4651,16 +4664,16 @@ msgstr ""
"Les DNS du domaine ne correspondent pas à ceux du serveur. Modifiez les DNS " "Les DNS du domaine ne correspondent pas à ceux du serveur. Modifiez les DNS "
"de votre domaine avant de tenter à nouveau" "de votre domaine avant de tenter à nouveau"
#: ../class/m_dom.php:1543 #: ../class/m_dom.php:1544
#, php-format #, php-format
msgid "The domain name %s does not exist" msgid "The domain name %s does not exist"
msgstr "Le domaine %s n'existe pas" msgstr "Le domaine %s n'existe pas"
#: ../class/m_dom.php:1550 #: ../class/m_dom.php:1551
msgid "No change has been requested..." msgid "No change has been requested..."
msgstr "Aucune modification n'a été demandée" msgstr "Aucune modification n'a été demandée"
#: ../class/m_dom.php:1558 ../class/m_dom.php:1563 #: ../class/m_dom.php:1559 ../class/m_dom.php:1564
msgid "" msgid ""
"There is no MX record pointing to this server, and you are asking us to host " "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 " "the mail here. Make sure to update your MX entries or no mail will be "
@ -4670,24 +4683,24 @@ msgstr ""
"demander d'héberger le mail. Assurez-vous que les entrées MX pointent sur ce " "demander d'héberger le mail. Assurez-vous que les entrées MX pointent sur ce "
"serveur où vous ne pourrez pas recevoir de mail." "serveur où vous ne pourrez pas recevoir de mail."
#: ../class/m_dom.php:1614 ../class/m_dom.php:1639 #: ../class/m_dom.php:1615 ../class/m_dom.php:1640
msgid "The IP address you entered is incorrect" msgid "The IP address you entered is incorrect"
msgstr "L'adresse IP entrée est incorrecte" msgstr "L'adresse IP entrée est incorrecte"
#: ../class/m_dom.php:1732 ../class/m_dom.php:1738 ../class/m_dom.php:1756 #: ../class/m_dom.php:1733 ../class/m_dom.php:1739 ../class/m_dom.php:1757
#: ../class/m_dom.php:1762 #: ../class/m_dom.php:1763
msgid "This domain is not installed in your account" msgid "This domain is not installed in your account"
msgstr "Ce domaine n'est pas installé sur votre compte" msgstr "Ce domaine n'est pas installé sur votre compte"
#: ../class/m_dom.php:1805 #: ../class/m_dom.php:1806
msgid "The specified slave account already exists" msgid "The specified slave account already exists"
msgstr "Ce compte DNS secondaire existe déjà" msgstr "Ce compte DNS secondaire existe déjà"
#: ../class/m_dom.php:1836 #: ../class/m_dom.php:1837
msgid "--- Program error --- Lock already obtained!" msgid "--- Program error --- Lock already obtained!"
msgstr "" msgstr ""
#: ../class/m_dom.php:2182 #: ../class/m_dom.php:2183
#, php-format #, php-format
msgid "" msgid ""
"Problem on %s: there is more than 1 web configuration going to be generated " "Problem on %s: there is more than 1 web configuration going to be generated "
@ -4695,64 +4708,64 @@ msgid ""
msgstr "" msgstr ""
"Probleme sur %s : il y a plus d'une configuration web pour ce sous-domaine !" "Probleme sur %s : il y a plus d'une configuration web pour ce sous-domaine !"
#: ../class/m_dom.php:2191 #: ../class/m_dom.php:2192
#, php-format #, php-format
msgid "Problem on %s: we do not know domain's type <b>%s</b>." msgid "Problem on %s: we do not know domain's type <b>%s</b>."
msgstr "Problème sur %s : type de domaine inconnu <b>%s</b>." msgstr "Problème sur %s : type de domaine inconnu <b>%s</b>."
#: ../class/m_dom.php:2202 #: ../class/m_dom.php:2203
msgid "Locally hosted" msgid "Locally hosted"
msgstr "Hébergé localement" msgstr "Hébergé localement"
#: ../class/m_dom.php:2203 #: ../class/m_dom.php:2204
msgid "URL redirection" msgid "URL redirection"
msgstr "Redirection vers l'URL" msgstr "Redirection vers l'URL"
#: ../class/m_dom.php:2204 #: ../class/m_dom.php:2205
msgid "IPv4 redirect" msgid "IPv4 redirect"
msgstr "Adresse IPv4" msgstr "Adresse IPv4"
#: ../class/m_dom.php:2205 #: ../class/m_dom.php:2206
msgid "Webmail access" msgid "Webmail access"
msgstr "Accès au webmail" msgstr "Accès au webmail"
#: ../class/m_dom.php:2206 #: ../class/m_dom.php:2207
msgid "Squirrelmail Webmail access" msgid "Squirrelmail Webmail access"
msgstr "Accès au webmail Squirrelmail" msgstr "Accès au webmail Squirrelmail"
#: ../class/m_dom.php:2207 #: ../class/m_dom.php:2208
msgid "Roundcube Webmail access" msgid "Roundcube Webmail access"
msgstr "Accès au webmail Roundcube" msgstr "Accès au webmail Roundcube"
#: ../class/m_dom.php:2208 #: ../class/m_dom.php:2209
msgid "IPv6 redirect" msgid "IPv6 redirect"
msgstr "Adresse IPv6" msgstr "Adresse IPv6"
#: ../class/m_dom.php:2209 #: ../class/m_dom.php:2210
msgid "CNAME DNS entry" msgid "CNAME DNS entry"
msgstr "Entrée DNS CNAME" msgstr "Entrée DNS CNAME"
#: ../class/m_dom.php:2210 #: ../class/m_dom.php:2211
msgid "TXT DNS entry" msgid "TXT DNS entry"
msgstr "Entrée DNS TXT" msgstr "Entrée DNS TXT"
#: ../class/m_dom.php:2211 #: ../class/m_dom.php:2212
msgid "MX DNS entry" msgid "MX DNS entry"
msgstr "Entrée DNS MX" msgstr "Entrée DNS MX"
#: ../class/m_dom.php:2212 #: ../class/m_dom.php:2213
msgid "secondary MX DNS entry" msgid "secondary MX DNS entry"
msgstr "Entrée DNS MX Secondaire" msgstr "Entrée DNS MX Secondaire"
#: ../class/m_dom.php:2213 #: ../class/m_dom.php:2214
msgid "Default mail server" msgid "Default mail server"
msgstr "Serveur de mail par défaut" msgstr "Serveur de mail par défaut"
#: ../class/m_dom.php:2214 #: ../class/m_dom.php:2215
msgid "Default backup mail server" msgid "Default backup mail server"
msgstr "Serveur de mail de secours par défaut" msgstr "Serveur de mail de secours par défaut"
#: ../class/m_dom.php:2215 #: ../class/m_dom.php:2216
msgid "AlternC panel access" msgid "AlternC panel access"
msgstr "Accès au Bureau AlternC" msgstr "Accès au Bureau AlternC"
@ -5491,5 +5504,8 @@ msgstr "Animation Flash"
msgid "Real Media File" msgid "Real Media File"
msgstr "Fichier Real Media" msgstr "Fichier Real Media"
#~ msgid "Editing subdomains of %s"
#~ msgstr "Edition des sous-domaines de %s"
#~ msgid "The name you entered is incorrect" #~ msgid "The name you entered is incorrect"
#~ msgstr "Le nom que vous avez entré est incorrect" #~ msgstr "Le nom que vous avez entré est incorrect"

View File

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: AlternC 2.0\n" "Project-Id-Version: AlternC 2.0\n"
"Report-Msgid-Bugs-To: i18n@alternc.org\n" "Report-Msgid-Bugs-To: i18n@alternc.org\n"
"POT-Creation-Date: 2015-06-16 16:06+0200\n" "POT-Creation-Date: 2015-06-17 16:24+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n"
@ -162,7 +162,7 @@ msgstr ""
#: ../admin/adm_domstype.php:87 ../admin/adm_domstype.php:88 #: ../admin/adm_domstype.php:87 ../admin/adm_domstype.php:88
#: ../admin/adm_edit.php:78 ../admin/adm_edit.php:95 #: ../admin/adm_edit.php:78 ../admin/adm_edit.php:95
#: ../admin/adm_passpolicy.php:113 ../admin/adm_passpolicy.php:157 #: ../admin/adm_passpolicy.php:113 ../admin/adm_passpolicy.php:157
#: ../admin/dom_edit.php:257 ../admin/dom_edit.php:280 #: ../admin/dom_edit.php:270 ../admin/dom_edit.php:293
#: ../admin/dom_subdel.php:80 ../admin/mail_edit.php:90 #: ../admin/dom_subdel.php:80 ../admin/mail_edit.php:90
#: ../admin/mail_list.php:166 ../admin/sql_bck.php:94 ../class/m_bro.php:75 #: ../admin/mail_list.php:166 ../admin/sql_bck.php:94 ../class/m_bro.php:75
msgid "No" msgid "No"
@ -173,7 +173,7 @@ msgstr ""
#: ../admin/adm_domstype.php:87 ../admin/adm_domstype.php:88 #: ../admin/adm_domstype.php:87 ../admin/adm_domstype.php:88
#: ../admin/adm_edit.php:79 ../admin/adm_edit.php:96 #: ../admin/adm_edit.php:79 ../admin/adm_edit.php:96
#: ../admin/adm_passpolicy.php:114 ../admin/adm_passpolicy.php:157 #: ../admin/adm_passpolicy.php:114 ../admin/adm_passpolicy.php:157
#: ../admin/dom_edit.php:256 ../admin/dom_edit.php:279 #: ../admin/dom_edit.php:269 ../admin/dom_edit.php:292
#: ../admin/dom_subdel.php:79 ../admin/mail_edit.php:91 #: ../admin/dom_subdel.php:79 ../admin/mail_edit.php:91
#: ../admin/mail_list.php:212 ../admin/mail_list.php:225 #: ../admin/mail_list.php:212 ../admin/mail_list.php:225
#: ../admin/mail_list.php:238 ../admin/mail_list.php:257 #: ../admin/mail_list.php:238 ../admin/mail_list.php:257
@ -286,7 +286,8 @@ msgid "Informations"
msgstr "" msgstr ""
#: ../admin/adm_authip_whitelist.php:64 ../admin/adm_doms_def_type.php:48 #: ../admin/adm_authip_whitelist.php:64 ../admin/adm_doms_def_type.php:48
#: ../admin/dom_edit.php:146 ../admin/ip_main.php:146 #: ../admin/dom_edit.php:146 ../admin/dom_edit.php:159
#: ../admin/ip_main.php:146
msgid "Type" msgid "Type"
msgstr "" msgstr ""
@ -294,7 +295,7 @@ msgstr ""
#: ../admin/adm_list.php:199 ../admin/adm_list.php:226 #: ../admin/adm_list.php:199 ../admin/adm_list.php:226
#: ../admin/adm_list.php:258 ../admin/adm_passpolicy.php:151 #: ../admin/adm_list.php:258 ../admin/adm_passpolicy.php:151
#: ../admin/adm_tld.php:80 ../admin/bro_editor.php:86 #: ../admin/adm_tld.php:80 ../admin/bro_editor.php:86
#: ../admin/dom_edit.php:161 ../admin/ftp_list.php:80 ../admin/ip_main.php:166 #: ../admin/dom_edit.php:174 ../admin/ftp_list.php:80 ../admin/ip_main.php:166
#: ../admin/mail_list.php:152 #: ../admin/mail_list.php:152
msgid "Edit" msgid "Edit"
msgstr "" msgstr ""
@ -302,7 +303,7 @@ msgstr ""
#: ../admin/adm_authip_whitelist.php:85 ../admin/adm_doms_def_type.php:60 #: ../admin/adm_authip_whitelist.php:85 ../admin/adm_doms_def_type.php:60
#: ../admin/adm_mxaccount.php:83 ../admin/adm_slavedns.php:101 #: ../admin/adm_mxaccount.php:83 ../admin/adm_slavedns.php:101
#: ../admin/adm_slavedns.php:145 ../admin/bro_main.php:283 #: ../admin/adm_slavedns.php:145 ../admin/bro_main.php:283
#: ../admin/cron.php:54 ../admin/dom_edit.php:127 ../admin/dom_edit.php:168 #: ../admin/cron.php:54 ../admin/dom_edit.php:127 ../admin/dom_edit.php:181
#: ../admin/ftp_del.php:82 ../admin/hta_dodeluser.php:64 #: ../admin/ftp_del.php:82 ../admin/hta_dodeluser.php:64
#: ../admin/ip_main.php:79 ../admin/ip_main.php:167 #: ../admin/ip_main.php:79 ../admin/ip_main.php:167
#: ../admin/piwik_site_dodel.php:70 ../admin/piwik_sitelist.php:128 #: ../admin/piwik_site_dodel.php:70 ../admin/piwik_sitelist.php:128
@ -466,7 +467,7 @@ msgid "Account"
msgstr "" msgstr ""
#: ../admin/adm_dnsweberror.php:55 ../admin/adm_dnsweberror.php:85 #: ../admin/adm_dnsweberror.php:55 ../admin/adm_dnsweberror.php:85
#: ../admin/dom_add.php:57 ../class/m_dom.php:1902 #: ../admin/dom_add.php:57 ../class/m_dom.php:1903
msgid "Domain name" msgid "Domain name"
msgstr "" msgstr ""
@ -632,6 +633,7 @@ msgid "OK?"
msgstr "" msgstr ""
#: ../admin/adm_doms.php:69 ../admin/dom_edit.php:146 #: ../admin/adm_doms.php:69 ../admin/dom_edit.php:146
#: ../admin/dom_edit.php:159
msgid "Status" msgid "Status"
msgstr "" msgstr ""
@ -781,7 +783,7 @@ msgstr ""
msgid "Compatibility" msgid "Compatibility"
msgstr "" msgstr ""
#: ../admin/adm_domstypeedit.php:100 ../admin/dom_edit.php:190 #: ../admin/adm_domstypeedit.php:100 ../admin/dom_edit.php:203
#: ../admin/ftp_list.php:73 ../admin/ftp_list.php:84 #: ../admin/ftp_list.php:73 ../admin/ftp_list.php:84
#: ../admin/mail_list.php:127 ../admin/mail_list.php:154 #: ../admin/mail_list.php:127 ../admin/mail_list.php:154
msgid "Enabled" msgid "Enabled"
@ -1024,7 +1026,7 @@ msgstr ""
msgid "DB:" msgid "DB:"
msgstr "" msgstr ""
#: ../admin/adm_list.php:206 ../admin/dom_edit.php:191 #: ../admin/adm_list.php:206 ../admin/dom_edit.php:204
msgid "Disable" msgid "Disable"
msgstr "" msgstr ""
@ -1959,111 +1961,118 @@ msgid "Settings"
msgstr "" msgstr ""
#: ../admin/dom_edit.php:132 #: ../admin/dom_edit.php:132
#, php-format msgid "Main subdomains"
msgid "Editing subdomains of %s"
msgstr "" msgstr ""
#: ../admin/dom_edit.php:146 #: ../admin/dom_edit.php:146 ../admin/dom_edit.php:159
msgid "Subdomain" msgid "Subdomain"
msgstr "" msgstr ""
#: ../admin/dom_edit.php:159 #: ../admin/dom_edit.php:155
msgid "Advanced subdomains"
msgstr ""
#: ../admin/dom_edit.php:156
msgid "The following entries are advanced ones, edit them at your own risks."
msgstr ""
#: ../admin/dom_edit.php:172
msgid "Forbidden" msgid "Forbidden"
msgstr "" msgstr ""
#: ../admin/dom_edit.php:173 #: ../admin/dom_edit.php:186
msgid "ERROR, please check your server setup" msgid "ERROR, please check your server setup"
msgstr "" msgstr ""
#: ../admin/dom_edit.php:180 ../admin/ftp_list.php:97 #: ../admin/dom_edit.php:193 ../admin/ftp_list.php:97
msgid "Directory not found" msgid "Directory not found"
msgstr "" msgstr ""
#: ../admin/dom_edit.php:194 #: ../admin/dom_edit.php:207
msgid "Activation pending" msgid "Activation pending"
msgstr "" msgstr ""
#: ../admin/dom_edit.php:197 ../admin/ftp_list.php:87 #: ../admin/dom_edit.php:210 ../admin/ftp_list.php:87
#: ../admin/mail_list.php:146 ../admin/mail_list.php:156 #: ../admin/mail_list.php:146 ../admin/mail_list.php:156
msgid "Disabled" msgid "Disabled"
msgstr "" msgstr ""
#: ../admin/dom_edit.php:198 #: ../admin/dom_edit.php:211
msgid "Enable" msgid "Enable"
msgstr "" msgstr ""
#: ../admin/dom_edit.php:201 #: ../admin/dom_edit.php:214
msgid "Desactivation pending" msgid "Desactivation pending"
msgstr "" msgstr ""
#: ../admin/dom_edit.php:209 #: ../admin/dom_edit.php:222
msgid "Update pending" msgid "Update pending"
msgstr "" msgstr ""
#: ../admin/dom_edit.php:212 #: ../admin/dom_edit.php:225
msgid "Deletion pending" msgid "Deletion pending"
msgstr "" msgstr ""
#: ../admin/dom_edit.php:232 #: ../admin/dom_edit.php:245
#, php-format #, php-format
msgid "Add a subdomain to %s" msgid "Add a subdomain to %s"
msgstr "" msgstr ""
#: ../admin/dom_edit.php:249 #: ../admin/dom_edit.php:262
msgid "DNS &amp; Email parameters" msgid "DNS &amp; Email parameters"
msgstr "" msgstr ""
#: ../admin/dom_edit.php:254 #: ../admin/dom_edit.php:267
msgid "Manage the DNS on the server ?" msgid "Manage the DNS on the server ?"
msgstr "" msgstr ""
#: ../admin/dom_edit.php:265 #: ../admin/dom_edit.php:278
msgid "Define TTL for the zone records" msgid "Define TTL for the zone records"
msgstr "" msgstr ""
#: ../admin/dom_edit.php:267 #: ../admin/dom_edit.php:280
msgid "" msgid ""
"Warning: a low TTL can be problematic. It is recommended not to use a lower " "Warning: a low TTL can be problematic. It is recommended not to use a lower "
"TTL than 3600 seconds." "TTL than 3600 seconds."
msgstr "" msgstr ""
#: ../admin/dom_edit.php:267 #: ../admin/dom_edit.php:280
msgid "seconds" msgid "seconds"
msgstr "" msgstr ""
#: ../admin/dom_edit.php:276 #: ../admin/dom_edit.php:289
msgid "Manage the Emails Addresses of this domain on the server?" msgid "Manage the Emails Addresses of this domain on the server?"
msgstr "" msgstr ""
#: ../admin/dom_edit.php:284 #: ../admin/dom_edit.php:297
msgid "" msgid ""
"Warning: If you set this to 'no', all your email accounts and aliases on " "Warning: If you set this to 'no', all your email accounts and aliases on "
"this domain will be immediately deleted." "this domain will be immediately deleted."
msgstr "" msgstr ""
#: ../admin/dom_edit.php:285 #: ../admin/dom_edit.php:298
msgid "Submit the changes" msgid "Submit the changes"
msgstr "" msgstr ""
#: ../admin/dom_edit.php:293 #: ../admin/dom_edit.php:306
msgid "" msgid ""
"Here is the actual DNS zone running on the AlternC server. If you just made " "Here is the actual DNS zone running on the AlternC server. If you just made "
"some changes, you have to wait for it." "some changes, you have to wait for it."
msgstr "" msgstr ""
#: ../admin/dom_edit.php:297 #: ../admin/dom_edit.php:310
msgid "Click here to view the dump" msgid "Click here to view the dump"
msgstr "" msgstr ""
#: ../admin/dom_edit.php:300 #: ../admin/dom_edit.php:313
msgid "Refresh" msgid "Refresh"
msgstr "" msgstr ""
#: ../admin/dom_edit.php:306 #: ../admin/dom_edit.php:319
msgid "Domain removal" msgid "Domain removal"
msgstr "" msgstr ""
#: ../admin/dom_edit.php:307 #: ../admin/dom_edit.php:320
#, php-format #, php-format
msgid "" msgid ""
"If you want to destroy the domain %s, click on the button below. Warning: " "If you want to destroy the domain %s, click on the button below. Warning: "
@ -2071,7 +2080,7 @@ msgid ""
"domain and subdomains." "domain and subdomains."
msgstr "" msgstr ""
#: ../admin/dom_edit.php:310 #: ../admin/dom_edit.php:323
#, php-format #, php-format
msgid "Delete %s from this server" msgid "Delete %s from this server"
msgstr "" msgstr ""
@ -4247,24 +4256,24 @@ msgstr ""
msgid "The name MUST contain only letter and digits" msgid "The name MUST contain only letter and digits"
msgstr "" msgstr ""
#: ../class/m_dom.php:578 ../class/m_dom.php:1401 #: ../class/m_dom.php:578 ../class/m_dom.php:1402
msgid "" msgid ""
"The parameters for this subdomain and domain type are invalid. Please check " "The parameters for this subdomain and domain type are invalid. Please check "
"for subdomain entries incompatibility" "for subdomain entries incompatibility"
msgstr "" msgstr ""
#: ../class/m_dom.php:697 ../class/m_dom.php:1146 ../class/m_dom.php:1217 #: ../class/m_dom.php:697 ../class/m_dom.php:1146 ../class/m_dom.php:1218
#: ../class/m_dom.php:1372 ../class/m_dom.php:1462 ../class/m_dom.php:1511 #: ../class/m_dom.php:1373 ../class/m_dom.php:1463 ../class/m_dom.php:1512
#: ../class/m_dom.php:1855 #: ../class/m_dom.php:1856
msgid "--- Program error --- No lock on the domains!" msgid "--- Program error --- No lock on the domains!"
msgstr "" msgstr ""
#: ../class/m_dom.php:704 ../class/m_dom.php:1151 ../class/m_dom.php:1396 #: ../class/m_dom.php:704 ../class/m_dom.php:1151 ../class/m_dom.php:1397
#: ../class/m_dom.php:1538 #: ../class/m_dom.php:1539
msgid "The domain name is syntaxically incorrect" msgid "The domain name is syntaxically incorrect"
msgstr "" msgstr ""
#: ../class/m_dom.php:710 ../class/m_dom.php:755 ../class/m_dom.php:1622 #: ../class/m_dom.php:710 ../class/m_dom.php:755 ../class/m_dom.php:1623
msgid "" msgid ""
"The requested domain is forbidden in this server, please contact the " "The requested domain is forbidden in this server, please contact the "
"administrator" "administrator"
@ -4278,7 +4287,7 @@ msgstr ""
msgid "The domain already exist" msgid "The domain already exist"
msgstr "" msgstr ""
#: ../class/m_dom.php:731 ../class/m_dom.php:1518 #: ../class/m_dom.php:731 ../class/m_dom.php:1519
msgid "" msgid ""
"The last member of the domain name is incorrect or cannot be hosted in that " "The last member of the domain name is incorrect or cannot be hosted in that "
"server" "server"
@ -4309,153 +4318,153 @@ msgstr ""
msgid "The Whois database is unavailable, please try again later" msgid "The Whois database is unavailable, please try again later"
msgstr "" msgstr ""
#: ../class/m_dom.php:1064 ../class/m_dom.php:1522 #: ../class/m_dom.php:1064 ../class/m_dom.php:1523
msgid "The domain cannot be found in the Whois database" msgid "The domain cannot be found in the Whois database"
msgstr "" msgstr ""
#: ../class/m_dom.php:1222 ../class/m_dom.php:1466 #: ../class/m_dom.php:1223 ../class/m_dom.php:1467
msgid "The sub-domain does not exist" msgid "The sub-domain does not exist"
msgstr "" msgstr ""
#: ../class/m_dom.php:1261 #: ../class/m_dom.php:1262
msgid "invalid url" msgid "invalid url"
msgstr "" msgstr ""
#: ../class/m_dom.php:1271 #: ../class/m_dom.php:1272
msgid "The folder you entered is incorrect or does not exist" msgid "The folder you entered is incorrect or does not exist"
msgstr "" msgstr ""
#: ../class/m_dom.php:1280 ../class/m_dom.php:1288 #: ../class/m_dom.php:1281 ../class/m_dom.php:1289
msgid "The ip address is invalid" msgid "The ip address is invalid"
msgstr "" msgstr ""
#: ../class/m_dom.php:1296 #: ../class/m_dom.php:1297
msgid "" msgid ""
"The name you entered is incorrect or not fully qualified (shall end with a .)" "The name you entered is incorrect or not fully qualified (shall end with a .)"
msgstr "" msgstr ""
#: ../class/m_dom.php:1304 #: ../class/m_dom.php:1305
msgid "The TXT value you entered is incorrect" msgid "The TXT value you entered is incorrect"
msgstr "" msgstr ""
#: ../class/m_dom.php:1309 #: ../class/m_dom.php:1310
msgid "Invalid domain type selected, please check" msgid "Invalid domain type selected, please check"
msgstr "" msgstr ""
#: ../class/m_dom.php:1384 #: ../class/m_dom.php:1385
msgid "" msgid ""
"There is some forbidden characters in the sub domain (only A-Z 0-9 and - are " "There is some forbidden characters in the sub domain (only A-Z 0-9 and - are "
"allowed)" "allowed)"
msgstr "" msgstr ""
#: ../class/m_dom.php:1423 ../class/m_dom.php:1434 #: ../class/m_dom.php:1424 ../class/m_dom.php:1435
msgid "Cannot write to the destination folder" msgid "Cannot write to the destination folder"
msgstr "" msgstr ""
#: ../class/m_dom.php:1526 #: ../class/m_dom.php:1527
msgid "" msgid ""
"The DNS of this domain do not match the server's DNS. Please change your " "The DNS of this domain do not match the server's DNS. Please change your "
"domain's DNS before you install it again" "domain's DNS before you install it again"
msgstr "" msgstr ""
#: ../class/m_dom.php:1543 #: ../class/m_dom.php:1544
#, php-format #, php-format
msgid "The domain name %s does not exist" msgid "The domain name %s does not exist"
msgstr "" msgstr ""
#: ../class/m_dom.php:1550 #: ../class/m_dom.php:1551
msgid "No change has been requested..." msgid "No change has been requested..."
msgstr "" msgstr ""
#: ../class/m_dom.php:1558 ../class/m_dom.php:1563 #: ../class/m_dom.php:1559 ../class/m_dom.php:1564
msgid "" msgid ""
"There is no MX record pointing to this server, and you are asking us to host " "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 " "the mail here. Make sure to update your MX entries or no mail will be "
"received" "received"
msgstr "" msgstr ""
#: ../class/m_dom.php:1614 ../class/m_dom.php:1639 #: ../class/m_dom.php:1615 ../class/m_dom.php:1640
msgid "The IP address you entered is incorrect" msgid "The IP address you entered is incorrect"
msgstr "" msgstr ""
#: ../class/m_dom.php:1732 ../class/m_dom.php:1738 ../class/m_dom.php:1756 #: ../class/m_dom.php:1733 ../class/m_dom.php:1739 ../class/m_dom.php:1757
#: ../class/m_dom.php:1762 #: ../class/m_dom.php:1763
msgid "This domain is not installed in your account" msgid "This domain is not installed in your account"
msgstr "" msgstr ""
#: ../class/m_dom.php:1805 #: ../class/m_dom.php:1806
msgid "The specified slave account already exists" msgid "The specified slave account already exists"
msgstr "" msgstr ""
#: ../class/m_dom.php:1836 #: ../class/m_dom.php:1837
msgid "--- Program error --- Lock already obtained!" msgid "--- Program error --- Lock already obtained!"
msgstr "" msgstr ""
#: ../class/m_dom.php:2182 #: ../class/m_dom.php:2183
#, php-format #, php-format
msgid "" msgid ""
"Problem on %s: there is more than 1 web configuration going to be generated " "Problem on %s: there is more than 1 web configuration going to be generated "
"for this sub-domain." "for this sub-domain."
msgstr "" msgstr ""
#: ../class/m_dom.php:2191 #: ../class/m_dom.php:2192
#, php-format #, php-format
msgid "Problem on %s: we do not know domain's type <b>%s</b>." msgid "Problem on %s: we do not know domain's type <b>%s</b>."
msgstr "" msgstr ""
#: ../class/m_dom.php:2202 #: ../class/m_dom.php:2203
msgid "Locally hosted" msgid "Locally hosted"
msgstr "" msgstr ""
#: ../class/m_dom.php:2203 #: ../class/m_dom.php:2204
msgid "URL redirection" msgid "URL redirection"
msgstr "" msgstr ""
#: ../class/m_dom.php:2204 #: ../class/m_dom.php:2205
msgid "IPv4 redirect" msgid "IPv4 redirect"
msgstr "" msgstr ""
#: ../class/m_dom.php:2205 #: ../class/m_dom.php:2206
msgid "Webmail access" msgid "Webmail access"
msgstr "" msgstr ""
#: ../class/m_dom.php:2206 #: ../class/m_dom.php:2207
msgid "Squirrelmail Webmail access" msgid "Squirrelmail Webmail access"
msgstr "" msgstr ""
#: ../class/m_dom.php:2207 #: ../class/m_dom.php:2208
msgid "Roundcube Webmail access" msgid "Roundcube Webmail access"
msgstr "" msgstr ""
#: ../class/m_dom.php:2208 #: ../class/m_dom.php:2209
msgid "IPv6 redirect" msgid "IPv6 redirect"
msgstr "" msgstr ""
#: ../class/m_dom.php:2209 #: ../class/m_dom.php:2210
msgid "CNAME DNS entry" msgid "CNAME DNS entry"
msgstr "" msgstr ""
#: ../class/m_dom.php:2210 #: ../class/m_dom.php:2211
msgid "TXT DNS entry" msgid "TXT DNS entry"
msgstr "" msgstr ""
#: ../class/m_dom.php:2211 #: ../class/m_dom.php:2212
msgid "MX DNS entry" msgid "MX DNS entry"
msgstr "" msgstr ""
#: ../class/m_dom.php:2212 #: ../class/m_dom.php:2213
msgid "secondary MX DNS entry" msgid "secondary MX DNS entry"
msgstr "" msgstr ""
#: ../class/m_dom.php:2213 #: ../class/m_dom.php:2214
msgid "Default mail server" msgid "Default mail server"
msgstr "" msgstr ""
#: ../class/m_dom.php:2214 #: ../class/m_dom.php:2215
msgid "Default backup mail server" msgid "Default backup mail server"
msgstr "" msgstr ""
#: ../class/m_dom.php:2215 #: ../class/m_dom.php:2216
msgid "AlternC panel access" msgid "AlternC panel access"
msgstr "" msgstr ""

View File

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: AlternC 2.0\n" "Project-Id-Version: AlternC 2.0\n"
"Report-Msgid-Bugs-To: i18n@alternc.org\n" "Report-Msgid-Bugs-To: i18n@alternc.org\n"
"POT-Creation-Date: 2015-06-16 16:06+0200\n" "POT-Creation-Date: 2015-06-17 16:24+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n"
@ -162,7 +162,7 @@ msgstr ""
#: ../admin/adm_domstype.php:87 ../admin/adm_domstype.php:88 #: ../admin/adm_domstype.php:87 ../admin/adm_domstype.php:88
#: ../admin/adm_edit.php:78 ../admin/adm_edit.php:95 #: ../admin/adm_edit.php:78 ../admin/adm_edit.php:95
#: ../admin/adm_passpolicy.php:113 ../admin/adm_passpolicy.php:157 #: ../admin/adm_passpolicy.php:113 ../admin/adm_passpolicy.php:157
#: ../admin/dom_edit.php:257 ../admin/dom_edit.php:280 #: ../admin/dom_edit.php:270 ../admin/dom_edit.php:293
#: ../admin/dom_subdel.php:80 ../admin/mail_edit.php:90 #: ../admin/dom_subdel.php:80 ../admin/mail_edit.php:90
#: ../admin/mail_list.php:166 ../admin/sql_bck.php:94 ../class/m_bro.php:75 #: ../admin/mail_list.php:166 ../admin/sql_bck.php:94 ../class/m_bro.php:75
msgid "No" msgid "No"
@ -173,7 +173,7 @@ msgstr ""
#: ../admin/adm_domstype.php:87 ../admin/adm_domstype.php:88 #: ../admin/adm_domstype.php:87 ../admin/adm_domstype.php:88
#: ../admin/adm_edit.php:79 ../admin/adm_edit.php:96 #: ../admin/adm_edit.php:79 ../admin/adm_edit.php:96
#: ../admin/adm_passpolicy.php:114 ../admin/adm_passpolicy.php:157 #: ../admin/adm_passpolicy.php:114 ../admin/adm_passpolicy.php:157
#: ../admin/dom_edit.php:256 ../admin/dom_edit.php:279 #: ../admin/dom_edit.php:269 ../admin/dom_edit.php:292
#: ../admin/dom_subdel.php:79 ../admin/mail_edit.php:91 #: ../admin/dom_subdel.php:79 ../admin/mail_edit.php:91
#: ../admin/mail_list.php:212 ../admin/mail_list.php:225 #: ../admin/mail_list.php:212 ../admin/mail_list.php:225
#: ../admin/mail_list.php:238 ../admin/mail_list.php:257 #: ../admin/mail_list.php:238 ../admin/mail_list.php:257
@ -286,7 +286,8 @@ msgid "Informations"
msgstr "" msgstr ""
#: ../admin/adm_authip_whitelist.php:64 ../admin/adm_doms_def_type.php:48 #: ../admin/adm_authip_whitelist.php:64 ../admin/adm_doms_def_type.php:48
#: ../admin/dom_edit.php:146 ../admin/ip_main.php:146 #: ../admin/dom_edit.php:146 ../admin/dom_edit.php:159
#: ../admin/ip_main.php:146
msgid "Type" msgid "Type"
msgstr "" msgstr ""
@ -294,7 +295,7 @@ msgstr ""
#: ../admin/adm_list.php:199 ../admin/adm_list.php:226 #: ../admin/adm_list.php:199 ../admin/adm_list.php:226
#: ../admin/adm_list.php:258 ../admin/adm_passpolicy.php:151 #: ../admin/adm_list.php:258 ../admin/adm_passpolicy.php:151
#: ../admin/adm_tld.php:80 ../admin/bro_editor.php:86 #: ../admin/adm_tld.php:80 ../admin/bro_editor.php:86
#: ../admin/dom_edit.php:161 ../admin/ftp_list.php:80 ../admin/ip_main.php:166 #: ../admin/dom_edit.php:174 ../admin/ftp_list.php:80 ../admin/ip_main.php:166
#: ../admin/mail_list.php:152 #: ../admin/mail_list.php:152
msgid "Edit" msgid "Edit"
msgstr "" msgstr ""
@ -302,7 +303,7 @@ msgstr ""
#: ../admin/adm_authip_whitelist.php:85 ../admin/adm_doms_def_type.php:60 #: ../admin/adm_authip_whitelist.php:85 ../admin/adm_doms_def_type.php:60
#: ../admin/adm_mxaccount.php:83 ../admin/adm_slavedns.php:101 #: ../admin/adm_mxaccount.php:83 ../admin/adm_slavedns.php:101
#: ../admin/adm_slavedns.php:145 ../admin/bro_main.php:283 #: ../admin/adm_slavedns.php:145 ../admin/bro_main.php:283
#: ../admin/cron.php:54 ../admin/dom_edit.php:127 ../admin/dom_edit.php:168 #: ../admin/cron.php:54 ../admin/dom_edit.php:127 ../admin/dom_edit.php:181
#: ../admin/ftp_del.php:82 ../admin/hta_dodeluser.php:64 #: ../admin/ftp_del.php:82 ../admin/hta_dodeluser.php:64
#: ../admin/ip_main.php:79 ../admin/ip_main.php:167 #: ../admin/ip_main.php:79 ../admin/ip_main.php:167
#: ../admin/piwik_site_dodel.php:70 ../admin/piwik_sitelist.php:128 #: ../admin/piwik_site_dodel.php:70 ../admin/piwik_sitelist.php:128
@ -466,7 +467,7 @@ msgid "Account"
msgstr "" msgstr ""
#: ../admin/adm_dnsweberror.php:55 ../admin/adm_dnsweberror.php:85 #: ../admin/adm_dnsweberror.php:55 ../admin/adm_dnsweberror.php:85
#: ../admin/dom_add.php:57 ../class/m_dom.php:1902 #: ../admin/dom_add.php:57 ../class/m_dom.php:1903
msgid "Domain name" msgid "Domain name"
msgstr "" msgstr ""
@ -632,6 +633,7 @@ msgid "OK?"
msgstr "" msgstr ""
#: ../admin/adm_doms.php:69 ../admin/dom_edit.php:146 #: ../admin/adm_doms.php:69 ../admin/dom_edit.php:146
#: ../admin/dom_edit.php:159
msgid "Status" msgid "Status"
msgstr "" msgstr ""
@ -781,7 +783,7 @@ msgstr ""
msgid "Compatibility" msgid "Compatibility"
msgstr "" msgstr ""
#: ../admin/adm_domstypeedit.php:100 ../admin/dom_edit.php:190 #: ../admin/adm_domstypeedit.php:100 ../admin/dom_edit.php:203
#: ../admin/ftp_list.php:73 ../admin/ftp_list.php:84 #: ../admin/ftp_list.php:73 ../admin/ftp_list.php:84
#: ../admin/mail_list.php:127 ../admin/mail_list.php:154 #: ../admin/mail_list.php:127 ../admin/mail_list.php:154
msgid "Enabled" msgid "Enabled"
@ -1024,7 +1026,7 @@ msgstr ""
msgid "DB:" msgid "DB:"
msgstr "" msgstr ""
#: ../admin/adm_list.php:206 ../admin/dom_edit.php:191 #: ../admin/adm_list.php:206 ../admin/dom_edit.php:204
msgid "Disable" msgid "Disable"
msgstr "" msgstr ""
@ -1959,111 +1961,118 @@ msgid "Settings"
msgstr "" msgstr ""
#: ../admin/dom_edit.php:132 #: ../admin/dom_edit.php:132
#, php-format msgid "Main subdomains"
msgid "Editing subdomains of %s"
msgstr "" msgstr ""
#: ../admin/dom_edit.php:146 #: ../admin/dom_edit.php:146 ../admin/dom_edit.php:159
msgid "Subdomain" msgid "Subdomain"
msgstr "" msgstr ""
#: ../admin/dom_edit.php:159 #: ../admin/dom_edit.php:155
msgid "Advanced subdomains"
msgstr ""
#: ../admin/dom_edit.php:156
msgid "The following entries are advanced ones, edit them at your own risks."
msgstr ""
#: ../admin/dom_edit.php:172
msgid "Forbidden" msgid "Forbidden"
msgstr "" msgstr ""
#: ../admin/dom_edit.php:173 #: ../admin/dom_edit.php:186
msgid "ERROR, please check your server setup" msgid "ERROR, please check your server setup"
msgstr "" msgstr ""
#: ../admin/dom_edit.php:180 ../admin/ftp_list.php:97 #: ../admin/dom_edit.php:193 ../admin/ftp_list.php:97
msgid "Directory not found" msgid "Directory not found"
msgstr "" msgstr ""
#: ../admin/dom_edit.php:194 #: ../admin/dom_edit.php:207
msgid "Activation pending" msgid "Activation pending"
msgstr "" msgstr ""
#: ../admin/dom_edit.php:197 ../admin/ftp_list.php:87 #: ../admin/dom_edit.php:210 ../admin/ftp_list.php:87
#: ../admin/mail_list.php:146 ../admin/mail_list.php:156 #: ../admin/mail_list.php:146 ../admin/mail_list.php:156
msgid "Disabled" msgid "Disabled"
msgstr "" msgstr ""
#: ../admin/dom_edit.php:198 #: ../admin/dom_edit.php:211
msgid "Enable" msgid "Enable"
msgstr "" msgstr ""
#: ../admin/dom_edit.php:201 #: ../admin/dom_edit.php:214
msgid "Desactivation pending" msgid "Desactivation pending"
msgstr "" msgstr ""
#: ../admin/dom_edit.php:209 #: ../admin/dom_edit.php:222
msgid "Update pending" msgid "Update pending"
msgstr "" msgstr ""
#: ../admin/dom_edit.php:212 #: ../admin/dom_edit.php:225
msgid "Deletion pending" msgid "Deletion pending"
msgstr "" msgstr ""
#: ../admin/dom_edit.php:232 #: ../admin/dom_edit.php:245
#, php-format #, php-format
msgid "Add a subdomain to %s" msgid "Add a subdomain to %s"
msgstr "" msgstr ""
#: ../admin/dom_edit.php:249 #: ../admin/dom_edit.php:262
msgid "DNS &amp; Email parameters" msgid "DNS &amp; Email parameters"
msgstr "" msgstr ""
#: ../admin/dom_edit.php:254 #: ../admin/dom_edit.php:267
msgid "Manage the DNS on the server ?" msgid "Manage the DNS on the server ?"
msgstr "" msgstr ""
#: ../admin/dom_edit.php:265 #: ../admin/dom_edit.php:278
msgid "Define TTL for the zone records" msgid "Define TTL for the zone records"
msgstr "" msgstr ""
#: ../admin/dom_edit.php:267 #: ../admin/dom_edit.php:280
msgid "" msgid ""
"Warning: a low TTL can be problematic. It is recommended not to use a lower " "Warning: a low TTL can be problematic. It is recommended not to use a lower "
"TTL than 3600 seconds." "TTL than 3600 seconds."
msgstr "" msgstr ""
#: ../admin/dom_edit.php:267 #: ../admin/dom_edit.php:280
msgid "seconds" msgid "seconds"
msgstr "" msgstr ""
#: ../admin/dom_edit.php:276 #: ../admin/dom_edit.php:289
msgid "Manage the Emails Addresses of this domain on the server?" msgid "Manage the Emails Addresses of this domain on the server?"
msgstr "" msgstr ""
#: ../admin/dom_edit.php:284 #: ../admin/dom_edit.php:297
msgid "" msgid ""
"Warning: If you set this to 'no', all your email accounts and aliases on " "Warning: If you set this to 'no', all your email accounts and aliases on "
"this domain will be immediately deleted." "this domain will be immediately deleted."
msgstr "" msgstr ""
#: ../admin/dom_edit.php:285 #: ../admin/dom_edit.php:298
msgid "Submit the changes" msgid "Submit the changes"
msgstr "" msgstr ""
#: ../admin/dom_edit.php:293 #: ../admin/dom_edit.php:306
msgid "" msgid ""
"Here is the actual DNS zone running on the AlternC server. If you just made " "Here is the actual DNS zone running on the AlternC server. If you just made "
"some changes, you have to wait for it." "some changes, you have to wait for it."
msgstr "" msgstr ""
#: ../admin/dom_edit.php:297 #: ../admin/dom_edit.php:310
msgid "Click here to view the dump" msgid "Click here to view the dump"
msgstr "" msgstr ""
#: ../admin/dom_edit.php:300 #: ../admin/dom_edit.php:313
msgid "Refresh" msgid "Refresh"
msgstr "" msgstr ""
#: ../admin/dom_edit.php:306 #: ../admin/dom_edit.php:319
msgid "Domain removal" msgid "Domain removal"
msgstr "" msgstr ""
#: ../admin/dom_edit.php:307 #: ../admin/dom_edit.php:320
#, php-format #, php-format
msgid "" msgid ""
"If you want to destroy the domain %s, click on the button below. Warning: " "If you want to destroy the domain %s, click on the button below. Warning: "
@ -2071,7 +2080,7 @@ msgid ""
"domain and subdomains." "domain and subdomains."
msgstr "" msgstr ""
#: ../admin/dom_edit.php:310 #: ../admin/dom_edit.php:323
#, php-format #, php-format
msgid "Delete %s from this server" msgid "Delete %s from this server"
msgstr "" msgstr ""
@ -4247,24 +4256,24 @@ msgstr ""
msgid "The name MUST contain only letter and digits" msgid "The name MUST contain only letter and digits"
msgstr "" msgstr ""
#: ../class/m_dom.php:578 ../class/m_dom.php:1401 #: ../class/m_dom.php:578 ../class/m_dom.php:1402
msgid "" msgid ""
"The parameters for this subdomain and domain type are invalid. Please check " "The parameters for this subdomain and domain type are invalid. Please check "
"for subdomain entries incompatibility" "for subdomain entries incompatibility"
msgstr "" msgstr ""
#: ../class/m_dom.php:697 ../class/m_dom.php:1146 ../class/m_dom.php:1217 #: ../class/m_dom.php:697 ../class/m_dom.php:1146 ../class/m_dom.php:1218
#: ../class/m_dom.php:1372 ../class/m_dom.php:1462 ../class/m_dom.php:1511 #: ../class/m_dom.php:1373 ../class/m_dom.php:1463 ../class/m_dom.php:1512
#: ../class/m_dom.php:1855 #: ../class/m_dom.php:1856
msgid "--- Program error --- No lock on the domains!" msgid "--- Program error --- No lock on the domains!"
msgstr "" msgstr ""
#: ../class/m_dom.php:704 ../class/m_dom.php:1151 ../class/m_dom.php:1396 #: ../class/m_dom.php:704 ../class/m_dom.php:1151 ../class/m_dom.php:1397
#: ../class/m_dom.php:1538 #: ../class/m_dom.php:1539
msgid "The domain name is syntaxically incorrect" msgid "The domain name is syntaxically incorrect"
msgstr "" msgstr ""
#: ../class/m_dom.php:710 ../class/m_dom.php:755 ../class/m_dom.php:1622 #: ../class/m_dom.php:710 ../class/m_dom.php:755 ../class/m_dom.php:1623
msgid "" msgid ""
"The requested domain is forbidden in this server, please contact the " "The requested domain is forbidden in this server, please contact the "
"administrator" "administrator"
@ -4278,7 +4287,7 @@ msgstr ""
msgid "The domain already exist" msgid "The domain already exist"
msgstr "" msgstr ""
#: ../class/m_dom.php:731 ../class/m_dom.php:1518 #: ../class/m_dom.php:731 ../class/m_dom.php:1519
msgid "" msgid ""
"The last member of the domain name is incorrect or cannot be hosted in that " "The last member of the domain name is incorrect or cannot be hosted in that "
"server" "server"
@ -4309,153 +4318,153 @@ msgstr ""
msgid "The Whois database is unavailable, please try again later" msgid "The Whois database is unavailable, please try again later"
msgstr "" msgstr ""
#: ../class/m_dom.php:1064 ../class/m_dom.php:1522 #: ../class/m_dom.php:1064 ../class/m_dom.php:1523
msgid "The domain cannot be found in the Whois database" msgid "The domain cannot be found in the Whois database"
msgstr "" msgstr ""
#: ../class/m_dom.php:1222 ../class/m_dom.php:1466 #: ../class/m_dom.php:1223 ../class/m_dom.php:1467
msgid "The sub-domain does not exist" msgid "The sub-domain does not exist"
msgstr "" msgstr ""
#: ../class/m_dom.php:1261 #: ../class/m_dom.php:1262
msgid "invalid url" msgid "invalid url"
msgstr "" msgstr ""
#: ../class/m_dom.php:1271 #: ../class/m_dom.php:1272
msgid "The folder you entered is incorrect or does not exist" msgid "The folder you entered is incorrect or does not exist"
msgstr "" msgstr ""
#: ../class/m_dom.php:1280 ../class/m_dom.php:1288 #: ../class/m_dom.php:1281 ../class/m_dom.php:1289
msgid "The ip address is invalid" msgid "The ip address is invalid"
msgstr "" msgstr ""
#: ../class/m_dom.php:1296 #: ../class/m_dom.php:1297
msgid "" msgid ""
"The name you entered is incorrect or not fully qualified (shall end with a .)" "The name you entered is incorrect or not fully qualified (shall end with a .)"
msgstr "" msgstr ""
#: ../class/m_dom.php:1304 #: ../class/m_dom.php:1305
msgid "The TXT value you entered is incorrect" msgid "The TXT value you entered is incorrect"
msgstr "" msgstr ""
#: ../class/m_dom.php:1309 #: ../class/m_dom.php:1310
msgid "Invalid domain type selected, please check" msgid "Invalid domain type selected, please check"
msgstr "" msgstr ""
#: ../class/m_dom.php:1384 #: ../class/m_dom.php:1385
msgid "" msgid ""
"There is some forbidden characters in the sub domain (only A-Z 0-9 and - are " "There is some forbidden characters in the sub domain (only A-Z 0-9 and - are "
"allowed)" "allowed)"
msgstr "" msgstr ""
#: ../class/m_dom.php:1423 ../class/m_dom.php:1434 #: ../class/m_dom.php:1424 ../class/m_dom.php:1435
msgid "Cannot write to the destination folder" msgid "Cannot write to the destination folder"
msgstr "" msgstr ""
#: ../class/m_dom.php:1526 #: ../class/m_dom.php:1527
msgid "" msgid ""
"The DNS of this domain do not match the server's DNS. Please change your " "The DNS of this domain do not match the server's DNS. Please change your "
"domain's DNS before you install it again" "domain's DNS before you install it again"
msgstr "" msgstr ""
#: ../class/m_dom.php:1543 #: ../class/m_dom.php:1544
#, php-format #, php-format
msgid "The domain name %s does not exist" msgid "The domain name %s does not exist"
msgstr "" msgstr ""
#: ../class/m_dom.php:1550 #: ../class/m_dom.php:1551
msgid "No change has been requested..." msgid "No change has been requested..."
msgstr "" msgstr ""
#: ../class/m_dom.php:1558 ../class/m_dom.php:1563 #: ../class/m_dom.php:1559 ../class/m_dom.php:1564
msgid "" msgid ""
"There is no MX record pointing to this server, and you are asking us to host " "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 " "the mail here. Make sure to update your MX entries or no mail will be "
"received" "received"
msgstr "" msgstr ""
#: ../class/m_dom.php:1614 ../class/m_dom.php:1639 #: ../class/m_dom.php:1615 ../class/m_dom.php:1640
msgid "The IP address you entered is incorrect" msgid "The IP address you entered is incorrect"
msgstr "" msgstr ""
#: ../class/m_dom.php:1732 ../class/m_dom.php:1738 ../class/m_dom.php:1756 #: ../class/m_dom.php:1733 ../class/m_dom.php:1739 ../class/m_dom.php:1757
#: ../class/m_dom.php:1762 #: ../class/m_dom.php:1763
msgid "This domain is not installed in your account" msgid "This domain is not installed in your account"
msgstr "" msgstr ""
#: ../class/m_dom.php:1805 #: ../class/m_dom.php:1806
msgid "The specified slave account already exists" msgid "The specified slave account already exists"
msgstr "" msgstr ""
#: ../class/m_dom.php:1836 #: ../class/m_dom.php:1837
msgid "--- Program error --- Lock already obtained!" msgid "--- Program error --- Lock already obtained!"
msgstr "" msgstr ""
#: ../class/m_dom.php:2182 #: ../class/m_dom.php:2183
#, php-format #, php-format
msgid "" msgid ""
"Problem on %s: there is more than 1 web configuration going to be generated " "Problem on %s: there is more than 1 web configuration going to be generated "
"for this sub-domain." "for this sub-domain."
msgstr "" msgstr ""
#: ../class/m_dom.php:2191 #: ../class/m_dom.php:2192
#, php-format #, php-format
msgid "Problem on %s: we do not know domain's type <b>%s</b>." msgid "Problem on %s: we do not know domain's type <b>%s</b>."
msgstr "" msgstr ""
#: ../class/m_dom.php:2202 #: ../class/m_dom.php:2203
msgid "Locally hosted" msgid "Locally hosted"
msgstr "" msgstr ""
#: ../class/m_dom.php:2203 #: ../class/m_dom.php:2204
msgid "URL redirection" msgid "URL redirection"
msgstr "" msgstr ""
#: ../class/m_dom.php:2204 #: ../class/m_dom.php:2205
msgid "IPv4 redirect" msgid "IPv4 redirect"
msgstr "" msgstr ""
#: ../class/m_dom.php:2205 #: ../class/m_dom.php:2206
msgid "Webmail access" msgid "Webmail access"
msgstr "" msgstr ""
#: ../class/m_dom.php:2206 #: ../class/m_dom.php:2207
msgid "Squirrelmail Webmail access" msgid "Squirrelmail Webmail access"
msgstr "" msgstr ""
#: ../class/m_dom.php:2207 #: ../class/m_dom.php:2208
msgid "Roundcube Webmail access" msgid "Roundcube Webmail access"
msgstr "" msgstr ""
#: ../class/m_dom.php:2208 #: ../class/m_dom.php:2209
msgid "IPv6 redirect" msgid "IPv6 redirect"
msgstr "" msgstr ""
#: ../class/m_dom.php:2209 #: ../class/m_dom.php:2210
msgid "CNAME DNS entry" msgid "CNAME DNS entry"
msgstr "" msgstr ""
#: ../class/m_dom.php:2210 #: ../class/m_dom.php:2211
msgid "TXT DNS entry" msgid "TXT DNS entry"
msgstr "" msgstr ""
#: ../class/m_dom.php:2211 #: ../class/m_dom.php:2212
msgid "MX DNS entry" msgid "MX DNS entry"
msgstr "" msgstr ""
#: ../class/m_dom.php:2212 #: ../class/m_dom.php:2213
msgid "secondary MX DNS entry" msgid "secondary MX DNS entry"
msgstr "" msgstr ""
#: ../class/m_dom.php:2213 #: ../class/m_dom.php:2214
msgid "Default mail server" msgid "Default mail server"
msgstr "" msgstr ""
#: ../class/m_dom.php:2214 #: ../class/m_dom.php:2215
msgid "Default backup mail server" msgid "Default backup mail server"
msgstr "" msgstr ""
#: ../class/m_dom.php:2215 #: ../class/m_dom.php:2216
msgid "AlternC panel access" msgid "AlternC panel access"
msgstr "" msgstr ""

View File

@ -6,7 +6,7 @@
msgid "" msgid ""
msgstr "" msgstr ""
"Report-Msgid-Bugs-To: i18n@alternc.org\n" "Report-Msgid-Bugs-To: i18n@alternc.org\n"
"POT-Creation-Date: 2015-06-16 16:06+0200\n" "POT-Creation-Date: 2015-06-17 16:24+0200\n"
"PO-Revision-Date: 2012-10-17 09:52+0200\n" "PO-Revision-Date: 2012-10-17 09:52+0200\n"
"Last-Translator: Benjamin Sonntag <benjamin@sonntag.fr>\n" "Last-Translator: Benjamin Sonntag <benjamin@sonntag.fr>\n"
"Language-Team: Dutch <team@alternc.org>\n" "Language-Team: Dutch <team@alternc.org>\n"
@ -162,7 +162,7 @@ msgstr ""
#: ../admin/adm_domstype.php:87 ../admin/adm_domstype.php:88 #: ../admin/adm_domstype.php:87 ../admin/adm_domstype.php:88
#: ../admin/adm_edit.php:78 ../admin/adm_edit.php:95 #: ../admin/adm_edit.php:78 ../admin/adm_edit.php:95
#: ../admin/adm_passpolicy.php:113 ../admin/adm_passpolicy.php:157 #: ../admin/adm_passpolicy.php:113 ../admin/adm_passpolicy.php:157
#: ../admin/dom_edit.php:257 ../admin/dom_edit.php:280 #: ../admin/dom_edit.php:270 ../admin/dom_edit.php:293
#: ../admin/dom_subdel.php:80 ../admin/mail_edit.php:90 #: ../admin/dom_subdel.php:80 ../admin/mail_edit.php:90
#: ../admin/mail_list.php:166 ../admin/sql_bck.php:94 ../class/m_bro.php:75 #: ../admin/mail_list.php:166 ../admin/sql_bck.php:94 ../class/m_bro.php:75
msgid "No" msgid "No"
@ -173,7 +173,7 @@ msgstr ""
#: ../admin/adm_domstype.php:87 ../admin/adm_domstype.php:88 #: ../admin/adm_domstype.php:87 ../admin/adm_domstype.php:88
#: ../admin/adm_edit.php:79 ../admin/adm_edit.php:96 #: ../admin/adm_edit.php:79 ../admin/adm_edit.php:96
#: ../admin/adm_passpolicy.php:114 ../admin/adm_passpolicy.php:157 #: ../admin/adm_passpolicy.php:114 ../admin/adm_passpolicy.php:157
#: ../admin/dom_edit.php:256 ../admin/dom_edit.php:279 #: ../admin/dom_edit.php:269 ../admin/dom_edit.php:292
#: ../admin/dom_subdel.php:79 ../admin/mail_edit.php:91 #: ../admin/dom_subdel.php:79 ../admin/mail_edit.php:91
#: ../admin/mail_list.php:212 ../admin/mail_list.php:225 #: ../admin/mail_list.php:212 ../admin/mail_list.php:225
#: ../admin/mail_list.php:238 ../admin/mail_list.php:257 #: ../admin/mail_list.php:238 ../admin/mail_list.php:257
@ -286,7 +286,8 @@ msgid "Informations"
msgstr "" msgstr ""
#: ../admin/adm_authip_whitelist.php:64 ../admin/adm_doms_def_type.php:48 #: ../admin/adm_authip_whitelist.php:64 ../admin/adm_doms_def_type.php:48
#: ../admin/dom_edit.php:146 ../admin/ip_main.php:146 #: ../admin/dom_edit.php:146 ../admin/dom_edit.php:159
#: ../admin/ip_main.php:146
msgid "Type" msgid "Type"
msgstr "" msgstr ""
@ -294,7 +295,7 @@ msgstr ""
#: ../admin/adm_list.php:199 ../admin/adm_list.php:226 #: ../admin/adm_list.php:199 ../admin/adm_list.php:226
#: ../admin/adm_list.php:258 ../admin/adm_passpolicy.php:151 #: ../admin/adm_list.php:258 ../admin/adm_passpolicy.php:151
#: ../admin/adm_tld.php:80 ../admin/bro_editor.php:86 #: ../admin/adm_tld.php:80 ../admin/bro_editor.php:86
#: ../admin/dom_edit.php:161 ../admin/ftp_list.php:80 ../admin/ip_main.php:166 #: ../admin/dom_edit.php:174 ../admin/ftp_list.php:80 ../admin/ip_main.php:166
#: ../admin/mail_list.php:152 #: ../admin/mail_list.php:152
msgid "Edit" msgid "Edit"
msgstr "" msgstr ""
@ -302,7 +303,7 @@ msgstr ""
#: ../admin/adm_authip_whitelist.php:85 ../admin/adm_doms_def_type.php:60 #: ../admin/adm_authip_whitelist.php:85 ../admin/adm_doms_def_type.php:60
#: ../admin/adm_mxaccount.php:83 ../admin/adm_slavedns.php:101 #: ../admin/adm_mxaccount.php:83 ../admin/adm_slavedns.php:101
#: ../admin/adm_slavedns.php:145 ../admin/bro_main.php:283 #: ../admin/adm_slavedns.php:145 ../admin/bro_main.php:283
#: ../admin/cron.php:54 ../admin/dom_edit.php:127 ../admin/dom_edit.php:168 #: ../admin/cron.php:54 ../admin/dom_edit.php:127 ../admin/dom_edit.php:181
#: ../admin/ftp_del.php:82 ../admin/hta_dodeluser.php:64 #: ../admin/ftp_del.php:82 ../admin/hta_dodeluser.php:64
#: ../admin/ip_main.php:79 ../admin/ip_main.php:167 #: ../admin/ip_main.php:79 ../admin/ip_main.php:167
#: ../admin/piwik_site_dodel.php:70 ../admin/piwik_sitelist.php:128 #: ../admin/piwik_site_dodel.php:70 ../admin/piwik_sitelist.php:128
@ -466,7 +467,7 @@ msgid "Account"
msgstr "" msgstr ""
#: ../admin/adm_dnsweberror.php:55 ../admin/adm_dnsweberror.php:85 #: ../admin/adm_dnsweberror.php:55 ../admin/adm_dnsweberror.php:85
#: ../admin/dom_add.php:57 ../class/m_dom.php:1902 #: ../admin/dom_add.php:57 ../class/m_dom.php:1903
msgid "Domain name" msgid "Domain name"
msgstr "" msgstr ""
@ -632,6 +633,7 @@ msgid "OK?"
msgstr "" msgstr ""
#: ../admin/adm_doms.php:69 ../admin/dom_edit.php:146 #: ../admin/adm_doms.php:69 ../admin/dom_edit.php:146
#: ../admin/dom_edit.php:159
msgid "Status" msgid "Status"
msgstr "" msgstr ""
@ -781,7 +783,7 @@ msgstr ""
msgid "Compatibility" msgid "Compatibility"
msgstr "" msgstr ""
#: ../admin/adm_domstypeedit.php:100 ../admin/dom_edit.php:190 #: ../admin/adm_domstypeedit.php:100 ../admin/dom_edit.php:203
#: ../admin/ftp_list.php:73 ../admin/ftp_list.php:84 #: ../admin/ftp_list.php:73 ../admin/ftp_list.php:84
#: ../admin/mail_list.php:127 ../admin/mail_list.php:154 #: ../admin/mail_list.php:127 ../admin/mail_list.php:154
msgid "Enabled" msgid "Enabled"
@ -1024,7 +1026,7 @@ msgstr ""
msgid "DB:" msgid "DB:"
msgstr "" msgstr ""
#: ../admin/adm_list.php:206 ../admin/dom_edit.php:191 #: ../admin/adm_list.php:206 ../admin/dom_edit.php:204
msgid "Disable" msgid "Disable"
msgstr "" msgstr ""
@ -1959,111 +1961,118 @@ msgid "Settings"
msgstr "" msgstr ""
#: ../admin/dom_edit.php:132 #: ../admin/dom_edit.php:132
#, php-format msgid "Main subdomains"
msgid "Editing subdomains of %s"
msgstr "" msgstr ""
#: ../admin/dom_edit.php:146 #: ../admin/dom_edit.php:146 ../admin/dom_edit.php:159
msgid "Subdomain" msgid "Subdomain"
msgstr "" msgstr ""
#: ../admin/dom_edit.php:159 #: ../admin/dom_edit.php:155
msgid "Advanced subdomains"
msgstr ""
#: ../admin/dom_edit.php:156
msgid "The following entries are advanced ones, edit them at your own risks."
msgstr ""
#: ../admin/dom_edit.php:172
msgid "Forbidden" msgid "Forbidden"
msgstr "" msgstr ""
#: ../admin/dom_edit.php:173 #: ../admin/dom_edit.php:186
msgid "ERROR, please check your server setup" msgid "ERROR, please check your server setup"
msgstr "" msgstr ""
#: ../admin/dom_edit.php:180 ../admin/ftp_list.php:97 #: ../admin/dom_edit.php:193 ../admin/ftp_list.php:97
msgid "Directory not found" msgid "Directory not found"
msgstr "" msgstr ""
#: ../admin/dom_edit.php:194 #: ../admin/dom_edit.php:207
msgid "Activation pending" msgid "Activation pending"
msgstr "" msgstr ""
#: ../admin/dom_edit.php:197 ../admin/ftp_list.php:87 #: ../admin/dom_edit.php:210 ../admin/ftp_list.php:87
#: ../admin/mail_list.php:146 ../admin/mail_list.php:156 #: ../admin/mail_list.php:146 ../admin/mail_list.php:156
msgid "Disabled" msgid "Disabled"
msgstr "" msgstr ""
#: ../admin/dom_edit.php:198 #: ../admin/dom_edit.php:211
msgid "Enable" msgid "Enable"
msgstr "" msgstr ""
#: ../admin/dom_edit.php:201 #: ../admin/dom_edit.php:214
msgid "Desactivation pending" msgid "Desactivation pending"
msgstr "" msgstr ""
#: ../admin/dom_edit.php:209 #: ../admin/dom_edit.php:222
msgid "Update pending" msgid "Update pending"
msgstr "" msgstr ""
#: ../admin/dom_edit.php:212 #: ../admin/dom_edit.php:225
msgid "Deletion pending" msgid "Deletion pending"
msgstr "" msgstr ""
#: ../admin/dom_edit.php:232 #: ../admin/dom_edit.php:245
#, php-format #, php-format
msgid "Add a subdomain to %s" msgid "Add a subdomain to %s"
msgstr "" msgstr ""
#: ../admin/dom_edit.php:249 #: ../admin/dom_edit.php:262
msgid "DNS &amp; Email parameters" msgid "DNS &amp; Email parameters"
msgstr "" msgstr ""
#: ../admin/dom_edit.php:254 #: ../admin/dom_edit.php:267
msgid "Manage the DNS on the server ?" msgid "Manage the DNS on the server ?"
msgstr "" msgstr ""
#: ../admin/dom_edit.php:265 #: ../admin/dom_edit.php:278
msgid "Define TTL for the zone records" msgid "Define TTL for the zone records"
msgstr "" msgstr ""
#: ../admin/dom_edit.php:267 #: ../admin/dom_edit.php:280
msgid "" msgid ""
"Warning: a low TTL can be problematic. It is recommended not to use a lower " "Warning: a low TTL can be problematic. It is recommended not to use a lower "
"TTL than 3600 seconds." "TTL than 3600 seconds."
msgstr "" msgstr ""
#: ../admin/dom_edit.php:267 #: ../admin/dom_edit.php:280
msgid "seconds" msgid "seconds"
msgstr "" msgstr ""
#: ../admin/dom_edit.php:276 #: ../admin/dom_edit.php:289
msgid "Manage the Emails Addresses of this domain on the server?" msgid "Manage the Emails Addresses of this domain on the server?"
msgstr "" msgstr ""
#: ../admin/dom_edit.php:284 #: ../admin/dom_edit.php:297
msgid "" msgid ""
"Warning: If you set this to 'no', all your email accounts and aliases on " "Warning: If you set this to 'no', all your email accounts and aliases on "
"this domain will be immediately deleted." "this domain will be immediately deleted."
msgstr "" msgstr ""
#: ../admin/dom_edit.php:285 #: ../admin/dom_edit.php:298
msgid "Submit the changes" msgid "Submit the changes"
msgstr "" msgstr ""
#: ../admin/dom_edit.php:293 #: ../admin/dom_edit.php:306
msgid "" msgid ""
"Here is the actual DNS zone running on the AlternC server. If you just made " "Here is the actual DNS zone running on the AlternC server. If you just made "
"some changes, you have to wait for it." "some changes, you have to wait for it."
msgstr "" msgstr ""
#: ../admin/dom_edit.php:297 #: ../admin/dom_edit.php:310
msgid "Click here to view the dump" msgid "Click here to view the dump"
msgstr "" msgstr ""
#: ../admin/dom_edit.php:300 #: ../admin/dom_edit.php:313
msgid "Refresh" msgid "Refresh"
msgstr "" msgstr ""
#: ../admin/dom_edit.php:306 #: ../admin/dom_edit.php:319
msgid "Domain removal" msgid "Domain removal"
msgstr "" msgstr ""
#: ../admin/dom_edit.php:307 #: ../admin/dom_edit.php:320
#, php-format #, php-format
msgid "" msgid ""
"If you want to destroy the domain %s, click on the button below. Warning: " "If you want to destroy the domain %s, click on the button below. Warning: "
@ -2071,7 +2080,7 @@ msgid ""
"domain and subdomains." "domain and subdomains."
msgstr "" msgstr ""
#: ../admin/dom_edit.php:310 #: ../admin/dom_edit.php:323
#, php-format #, php-format
msgid "Delete %s from this server" msgid "Delete %s from this server"
msgstr "" msgstr ""
@ -4247,24 +4256,24 @@ msgstr ""
msgid "The name MUST contain only letter and digits" msgid "The name MUST contain only letter and digits"
msgstr "" msgstr ""
#: ../class/m_dom.php:578 ../class/m_dom.php:1401 #: ../class/m_dom.php:578 ../class/m_dom.php:1402
msgid "" msgid ""
"The parameters for this subdomain and domain type are invalid. Please check " "The parameters for this subdomain and domain type are invalid. Please check "
"for subdomain entries incompatibility" "for subdomain entries incompatibility"
msgstr "" msgstr ""
#: ../class/m_dom.php:697 ../class/m_dom.php:1146 ../class/m_dom.php:1217 #: ../class/m_dom.php:697 ../class/m_dom.php:1146 ../class/m_dom.php:1218
#: ../class/m_dom.php:1372 ../class/m_dom.php:1462 ../class/m_dom.php:1511 #: ../class/m_dom.php:1373 ../class/m_dom.php:1463 ../class/m_dom.php:1512
#: ../class/m_dom.php:1855 #: ../class/m_dom.php:1856
msgid "--- Program error --- No lock on the domains!" msgid "--- Program error --- No lock on the domains!"
msgstr "" msgstr ""
#: ../class/m_dom.php:704 ../class/m_dom.php:1151 ../class/m_dom.php:1396 #: ../class/m_dom.php:704 ../class/m_dom.php:1151 ../class/m_dom.php:1397
#: ../class/m_dom.php:1538 #: ../class/m_dom.php:1539
msgid "The domain name is syntaxically incorrect" msgid "The domain name is syntaxically incorrect"
msgstr "" msgstr ""
#: ../class/m_dom.php:710 ../class/m_dom.php:755 ../class/m_dom.php:1622 #: ../class/m_dom.php:710 ../class/m_dom.php:755 ../class/m_dom.php:1623
msgid "" msgid ""
"The requested domain is forbidden in this server, please contact the " "The requested domain is forbidden in this server, please contact the "
"administrator" "administrator"
@ -4278,7 +4287,7 @@ msgstr ""
msgid "The domain already exist" msgid "The domain already exist"
msgstr "" msgstr ""
#: ../class/m_dom.php:731 ../class/m_dom.php:1518 #: ../class/m_dom.php:731 ../class/m_dom.php:1519
msgid "" msgid ""
"The last member of the domain name is incorrect or cannot be hosted in that " "The last member of the domain name is incorrect or cannot be hosted in that "
"server" "server"
@ -4309,153 +4318,153 @@ msgstr ""
msgid "The Whois database is unavailable, please try again later" msgid "The Whois database is unavailable, please try again later"
msgstr "" msgstr ""
#: ../class/m_dom.php:1064 ../class/m_dom.php:1522 #: ../class/m_dom.php:1064 ../class/m_dom.php:1523
msgid "The domain cannot be found in the Whois database" msgid "The domain cannot be found in the Whois database"
msgstr "" msgstr ""
#: ../class/m_dom.php:1222 ../class/m_dom.php:1466 #: ../class/m_dom.php:1223 ../class/m_dom.php:1467
msgid "The sub-domain does not exist" msgid "The sub-domain does not exist"
msgstr "" msgstr ""
#: ../class/m_dom.php:1261 #: ../class/m_dom.php:1262
msgid "invalid url" msgid "invalid url"
msgstr "" msgstr ""
#: ../class/m_dom.php:1271 #: ../class/m_dom.php:1272
msgid "The folder you entered is incorrect or does not exist" msgid "The folder you entered is incorrect or does not exist"
msgstr "" msgstr ""
#: ../class/m_dom.php:1280 ../class/m_dom.php:1288 #: ../class/m_dom.php:1281 ../class/m_dom.php:1289
msgid "The ip address is invalid" msgid "The ip address is invalid"
msgstr "" msgstr ""
#: ../class/m_dom.php:1296 #: ../class/m_dom.php:1297
msgid "" msgid ""
"The name you entered is incorrect or not fully qualified (shall end with a .)" "The name you entered is incorrect or not fully qualified (shall end with a .)"
msgstr "" msgstr ""
#: ../class/m_dom.php:1304 #: ../class/m_dom.php:1305
msgid "The TXT value you entered is incorrect" msgid "The TXT value you entered is incorrect"
msgstr "" msgstr ""
#: ../class/m_dom.php:1309 #: ../class/m_dom.php:1310
msgid "Invalid domain type selected, please check" msgid "Invalid domain type selected, please check"
msgstr "" msgstr ""
#: ../class/m_dom.php:1384 #: ../class/m_dom.php:1385
msgid "" msgid ""
"There is some forbidden characters in the sub domain (only A-Z 0-9 and - are " "There is some forbidden characters in the sub domain (only A-Z 0-9 and - are "
"allowed)" "allowed)"
msgstr "" msgstr ""
#: ../class/m_dom.php:1423 ../class/m_dom.php:1434 #: ../class/m_dom.php:1424 ../class/m_dom.php:1435
msgid "Cannot write to the destination folder" msgid "Cannot write to the destination folder"
msgstr "" msgstr ""
#: ../class/m_dom.php:1526 #: ../class/m_dom.php:1527
msgid "" msgid ""
"The DNS of this domain do not match the server's DNS. Please change your " "The DNS of this domain do not match the server's DNS. Please change your "
"domain's DNS before you install it again" "domain's DNS before you install it again"
msgstr "" msgstr ""
#: ../class/m_dom.php:1543 #: ../class/m_dom.php:1544
#, php-format #, php-format
msgid "The domain name %s does not exist" msgid "The domain name %s does not exist"
msgstr "" msgstr ""
#: ../class/m_dom.php:1550 #: ../class/m_dom.php:1551
msgid "No change has been requested..." msgid "No change has been requested..."
msgstr "" msgstr ""
#: ../class/m_dom.php:1558 ../class/m_dom.php:1563 #: ../class/m_dom.php:1559 ../class/m_dom.php:1564
msgid "" msgid ""
"There is no MX record pointing to this server, and you are asking us to host " "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 " "the mail here. Make sure to update your MX entries or no mail will be "
"received" "received"
msgstr "" msgstr ""
#: ../class/m_dom.php:1614 ../class/m_dom.php:1639 #: ../class/m_dom.php:1615 ../class/m_dom.php:1640
msgid "The IP address you entered is incorrect" msgid "The IP address you entered is incorrect"
msgstr "" msgstr ""
#: ../class/m_dom.php:1732 ../class/m_dom.php:1738 ../class/m_dom.php:1756 #: ../class/m_dom.php:1733 ../class/m_dom.php:1739 ../class/m_dom.php:1757
#: ../class/m_dom.php:1762 #: ../class/m_dom.php:1763
msgid "This domain is not installed in your account" msgid "This domain is not installed in your account"
msgstr "" msgstr ""
#: ../class/m_dom.php:1805 #: ../class/m_dom.php:1806
msgid "The specified slave account already exists" msgid "The specified slave account already exists"
msgstr "" msgstr ""
#: ../class/m_dom.php:1836 #: ../class/m_dom.php:1837
msgid "--- Program error --- Lock already obtained!" msgid "--- Program error --- Lock already obtained!"
msgstr "" msgstr ""
#: ../class/m_dom.php:2182 #: ../class/m_dom.php:2183
#, php-format #, php-format
msgid "" msgid ""
"Problem on %s: there is more than 1 web configuration going to be generated " "Problem on %s: there is more than 1 web configuration going to be generated "
"for this sub-domain." "for this sub-domain."
msgstr "" msgstr ""
#: ../class/m_dom.php:2191 #: ../class/m_dom.php:2192
#, php-format #, php-format
msgid "Problem on %s: we do not know domain's type <b>%s</b>." msgid "Problem on %s: we do not know domain's type <b>%s</b>."
msgstr "" msgstr ""
#: ../class/m_dom.php:2202 #: ../class/m_dom.php:2203
msgid "Locally hosted" msgid "Locally hosted"
msgstr "" msgstr ""
#: ../class/m_dom.php:2203 #: ../class/m_dom.php:2204
msgid "URL redirection" msgid "URL redirection"
msgstr "" msgstr ""
#: ../class/m_dom.php:2204 #: ../class/m_dom.php:2205
msgid "IPv4 redirect" msgid "IPv4 redirect"
msgstr "" msgstr ""
#: ../class/m_dom.php:2205 #: ../class/m_dom.php:2206
msgid "Webmail access" msgid "Webmail access"
msgstr "" msgstr ""
#: ../class/m_dom.php:2206 #: ../class/m_dom.php:2207
msgid "Squirrelmail Webmail access" msgid "Squirrelmail Webmail access"
msgstr "" msgstr ""
#: ../class/m_dom.php:2207 #: ../class/m_dom.php:2208
msgid "Roundcube Webmail access" msgid "Roundcube Webmail access"
msgstr "" msgstr ""
#: ../class/m_dom.php:2208 #: ../class/m_dom.php:2209
msgid "IPv6 redirect" msgid "IPv6 redirect"
msgstr "" msgstr ""
#: ../class/m_dom.php:2209 #: ../class/m_dom.php:2210
msgid "CNAME DNS entry" msgid "CNAME DNS entry"
msgstr "" msgstr ""
#: ../class/m_dom.php:2210 #: ../class/m_dom.php:2211
msgid "TXT DNS entry" msgid "TXT DNS entry"
msgstr "" msgstr ""
#: ../class/m_dom.php:2211 #: ../class/m_dom.php:2212
msgid "MX DNS entry" msgid "MX DNS entry"
msgstr "" msgstr ""
#: ../class/m_dom.php:2212 #: ../class/m_dom.php:2213
msgid "secondary MX DNS entry" msgid "secondary MX DNS entry"
msgstr "" msgstr ""
#: ../class/m_dom.php:2213 #: ../class/m_dom.php:2214
msgid "Default mail server" msgid "Default mail server"
msgstr "" msgstr ""
#: ../class/m_dom.php:2214 #: ../class/m_dom.php:2215
msgid "Default backup mail server" msgid "Default backup mail server"
msgstr "" msgstr ""
#: ../class/m_dom.php:2215 #: ../class/m_dom.php:2216
msgid "AlternC panel access" msgid "AlternC panel access"
msgstr "" msgstr ""

View File

@ -6,7 +6,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: $Id: admin.po,v 1.2 2003/06/09 14:36:08 root Exp $\n" "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" "Report-Msgid-Bugs-To: i18n@alternc.org\n"
"POT-Creation-Date: 2015-06-16 16:06+0200\n" "POT-Creation-Date: 2015-06-17 16:24+0200\n"
"PO-Revision-Date: 2007-10-25 23:50-0400\n" "PO-Revision-Date: 2007-10-25 23:50-0400\n"
"Last-Translator: Benjamin Sonntag <benjamin@alternc.org>\n" "Last-Translator: Benjamin Sonntag <benjamin@alternc.org>\n"
"Language-Team: English <i18n@alternc.org>\n" "Language-Team: English <i18n@alternc.org>\n"
@ -174,7 +174,7 @@ msgstr "Pode mudar a senha"
#: ../admin/adm_domstype.php:87 ../admin/adm_domstype.php:88 #: ../admin/adm_domstype.php:87 ../admin/adm_domstype.php:88
#: ../admin/adm_edit.php:78 ../admin/adm_edit.php:95 #: ../admin/adm_edit.php:78 ../admin/adm_edit.php:95
#: ../admin/adm_passpolicy.php:113 ../admin/adm_passpolicy.php:157 #: ../admin/adm_passpolicy.php:113 ../admin/adm_passpolicy.php:157
#: ../admin/dom_edit.php:257 ../admin/dom_edit.php:280 #: ../admin/dom_edit.php:270 ../admin/dom_edit.php:293
#: ../admin/dom_subdel.php:80 ../admin/mail_edit.php:90 #: ../admin/dom_subdel.php:80 ../admin/mail_edit.php:90
#: ../admin/mail_list.php:166 ../admin/sql_bck.php:94 ../class/m_bro.php:75 #: ../admin/mail_list.php:166 ../admin/sql_bck.php:94 ../class/m_bro.php:75
msgid "No" msgid "No"
@ -185,7 +185,7 @@ msgstr "Não"
#: ../admin/adm_domstype.php:87 ../admin/adm_domstype.php:88 #: ../admin/adm_domstype.php:87 ../admin/adm_domstype.php:88
#: ../admin/adm_edit.php:79 ../admin/adm_edit.php:96 #: ../admin/adm_edit.php:79 ../admin/adm_edit.php:96
#: ../admin/adm_passpolicy.php:114 ../admin/adm_passpolicy.php:157 #: ../admin/adm_passpolicy.php:114 ../admin/adm_passpolicy.php:157
#: ../admin/dom_edit.php:256 ../admin/dom_edit.php:279 #: ../admin/dom_edit.php:269 ../admin/dom_edit.php:292
#: ../admin/dom_subdel.php:79 ../admin/mail_edit.php:91 #: ../admin/dom_subdel.php:79 ../admin/mail_edit.php:91
#: ../admin/mail_list.php:212 ../admin/mail_list.php:225 #: ../admin/mail_list.php:212 ../admin/mail_list.php:225
#: ../admin/mail_list.php:238 ../admin/mail_list.php:257 #: ../admin/mail_list.php:238 ../admin/mail_list.php:257
@ -302,7 +302,8 @@ msgid "Informations"
msgstr "" msgstr ""
#: ../admin/adm_authip_whitelist.php:64 ../admin/adm_doms_def_type.php:48 #: ../admin/adm_authip_whitelist.php:64 ../admin/adm_doms_def_type.php:48
#: ../admin/dom_edit.php:146 ../admin/ip_main.php:146 #: ../admin/dom_edit.php:146 ../admin/dom_edit.php:159
#: ../admin/ip_main.php:146
msgid "Type" msgid "Type"
msgstr "" msgstr ""
@ -310,7 +311,7 @@ msgstr ""
#: ../admin/adm_list.php:199 ../admin/adm_list.php:226 #: ../admin/adm_list.php:199 ../admin/adm_list.php:226
#: ../admin/adm_list.php:258 ../admin/adm_passpolicy.php:151 #: ../admin/adm_list.php:258 ../admin/adm_passpolicy.php:151
#: ../admin/adm_tld.php:80 ../admin/bro_editor.php:86 #: ../admin/adm_tld.php:80 ../admin/bro_editor.php:86
#: ../admin/dom_edit.php:161 ../admin/ftp_list.php:80 ../admin/ip_main.php:166 #: ../admin/dom_edit.php:174 ../admin/ftp_list.php:80 ../admin/ip_main.php:166
#: ../admin/mail_list.php:152 #: ../admin/mail_list.php:152
msgid "Edit" msgid "Edit"
msgstr "Editar" msgstr "Editar"
@ -318,7 +319,7 @@ msgstr "Editar"
#: ../admin/adm_authip_whitelist.php:85 ../admin/adm_doms_def_type.php:60 #: ../admin/adm_authip_whitelist.php:85 ../admin/adm_doms_def_type.php:60
#: ../admin/adm_mxaccount.php:83 ../admin/adm_slavedns.php:101 #: ../admin/adm_mxaccount.php:83 ../admin/adm_slavedns.php:101
#: ../admin/adm_slavedns.php:145 ../admin/bro_main.php:283 #: ../admin/adm_slavedns.php:145 ../admin/bro_main.php:283
#: ../admin/cron.php:54 ../admin/dom_edit.php:127 ../admin/dom_edit.php:168 #: ../admin/cron.php:54 ../admin/dom_edit.php:127 ../admin/dom_edit.php:181
#: ../admin/ftp_del.php:82 ../admin/hta_dodeluser.php:64 #: ../admin/ftp_del.php:82 ../admin/hta_dodeluser.php:64
#: ../admin/ip_main.php:79 ../admin/ip_main.php:167 #: ../admin/ip_main.php:79 ../admin/ip_main.php:167
#: ../admin/piwik_site_dodel.php:70 ../admin/piwik_sitelist.php:128 #: ../admin/piwik_site_dodel.php:70 ../admin/piwik_sitelist.php:128
@ -493,7 +494,7 @@ msgid "Account"
msgstr "Conta Permitiu ?" msgstr "Conta Permitiu ?"
#: ../admin/adm_dnsweberror.php:55 ../admin/adm_dnsweberror.php:85 #: ../admin/adm_dnsweberror.php:55 ../admin/adm_dnsweberror.php:85
#: ../admin/dom_add.php:57 ../class/m_dom.php:1902 #: ../admin/dom_add.php:57 ../class/m_dom.php:1903
msgid "Domain name" msgid "Domain name"
msgstr "Nome do Domínio" msgstr "Nome do Domínio"
@ -674,6 +675,7 @@ msgid "OK?"
msgstr "" msgstr ""
#: ../admin/adm_doms.php:69 ../admin/dom_edit.php:146 #: ../admin/adm_doms.php:69 ../admin/dom_edit.php:146
#: ../admin/dom_edit.php:159
msgid "Status" msgid "Status"
msgstr "" msgstr ""
@ -832,7 +834,7 @@ msgstr ""
msgid "Compatibility" msgid "Compatibility"
msgstr "" msgstr ""
#: ../admin/adm_domstypeedit.php:100 ../admin/dom_edit.php:190 #: ../admin/adm_domstypeedit.php:100 ../admin/dom_edit.php:203
#: ../admin/ftp_list.php:73 ../admin/ftp_list.php:84 #: ../admin/ftp_list.php:73 ../admin/ftp_list.php:84
#: ../admin/mail_list.php:127 ../admin/mail_list.php:154 #: ../admin/mail_list.php:127 ../admin/mail_list.php:154
msgid "Enabled" msgid "Enabled"
@ -1100,7 +1102,7 @@ msgstr "%3$d/%1$d/%2$d %6$d:%5$d %7$s"
msgid "DB:" msgid "DB:"
msgstr "" msgstr ""
#: ../admin/adm_list.php:206 ../admin/dom_edit.php:191 #: ../admin/adm_list.php:206 ../admin/dom_edit.php:204
msgid "Disable" msgid "Disable"
msgstr "" msgstr ""
@ -2098,118 +2100,127 @@ msgid "Settings"
msgstr "" msgstr ""
#: ../admin/dom_edit.php:132 #: ../admin/dom_edit.php:132
#, fuzzy, php-format #, fuzzy
msgid "Editing subdomains of %s" msgid "Main subdomains"
msgstr "Editando o domínio %s" msgstr "Editando o domínio %s"
#: ../admin/dom_edit.php:146 #: ../admin/dom_edit.php:146 ../admin/dom_edit.php:159
#, fuzzy #, fuzzy
msgid "Subdomain" msgid "Subdomain"
msgstr "Secundário-domínios" msgstr "Secundário-domínios"
#: ../admin/dom_edit.php:159 #: ../admin/dom_edit.php:155
#, fuzzy
msgid "Advanced subdomains"
msgstr "Adiçionar um secundário-domínio"
#: ../admin/dom_edit.php:156
msgid "The following entries are advanced ones, edit them at your own risks."
msgstr ""
#: ../admin/dom_edit.php:172
msgid "Forbidden" msgid "Forbidden"
msgstr "" msgstr ""
#: ../admin/dom_edit.php:173 #: ../admin/dom_edit.php:186
msgid "ERROR, please check your server setup" msgid "ERROR, please check your server setup"
msgstr "" msgstr ""
#: ../admin/dom_edit.php:180 ../admin/ftp_list.php:97 #: ../admin/dom_edit.php:193 ../admin/ftp_list.php:97
#, fuzzy #, fuzzy
msgid "Directory not found" msgid "Directory not found"
msgstr "Domínio %s suprimido" msgstr "Domínio %s suprimido"
#: ../admin/dom_edit.php:194 #: ../admin/dom_edit.php:207
msgid "Activation pending" msgid "Activation pending"
msgstr "" msgstr ""
#: ../admin/dom_edit.php:197 ../admin/ftp_list.php:87 #: ../admin/dom_edit.php:210 ../admin/ftp_list.php:87
#: ../admin/mail_list.php:146 ../admin/mail_list.php:156 #: ../admin/mail_list.php:146 ../admin/mail_list.php:156
msgid "Disabled" msgid "Disabled"
msgstr "" msgstr ""
#: ../admin/dom_edit.php:198 #: ../admin/dom_edit.php:211
msgid "Enable" msgid "Enable"
msgstr "" msgstr ""
#: ../admin/dom_edit.php:201 #: ../admin/dom_edit.php:214
msgid "Desactivation pending" msgid "Desactivation pending"
msgstr "" msgstr ""
#: ../admin/dom_edit.php:209 #: ../admin/dom_edit.php:222
msgid "Update pending" msgid "Update pending"
msgstr "" msgstr ""
#: ../admin/dom_edit.php:212 #: ../admin/dom_edit.php:225
#, fuzzy #, fuzzy
msgid "Deletion pending" msgid "Deletion pending"
msgstr "Suprimando o secundário-domínio %s" msgstr "Suprimando o secundário-domínio %s"
#: ../admin/dom_edit.php:232 #: ../admin/dom_edit.php:245
#, fuzzy, php-format #, fuzzy, php-format
msgid "Add a subdomain to %s" msgid "Add a subdomain to %s"
msgstr "Adiçionar um secundário-domínio" msgstr "Adiçionar um secundário-domínio"
#: ../admin/dom_edit.php:249 #: ../admin/dom_edit.php:262
#, fuzzy #, fuzzy
msgid "DNS &amp; Email parameters" msgid "DNS &amp; Email parameters"
msgstr "Parâmetros DNS" msgstr "Parâmetros DNS"
#: ../admin/dom_edit.php:254 #: ../admin/dom_edit.php:267
msgid "Manage the DNS on the server ?" msgid "Manage the DNS on the server ?"
msgstr "Administrar o DNS neste servidor ?" msgstr "Administrar o DNS neste servidor ?"
#: ../admin/dom_edit.php:265 #: ../admin/dom_edit.php:278
msgid "Define TTL for the zone records" msgid "Define TTL for the zone records"
msgstr "" msgstr ""
#: ../admin/dom_edit.php:267 #: ../admin/dom_edit.php:280
msgid "" msgid ""
"Warning: a low TTL can be problematic. It is recommended not to use a lower " "Warning: a low TTL can be problematic. It is recommended not to use a lower "
"TTL than 3600 seconds." "TTL than 3600 seconds."
msgstr "" msgstr ""
#: ../admin/dom_edit.php:267 #: ../admin/dom_edit.php:280
msgid "seconds" msgid "seconds"
msgstr "" msgstr ""
#: ../admin/dom_edit.php:276 #: ../admin/dom_edit.php:289
#, fuzzy #, fuzzy
msgid "Manage the Emails Addresses of this domain on the server?" msgid "Manage the Emails Addresses of this domain on the server?"
msgstr "Administrar o DNS neste servidor ?" msgstr "Administrar o DNS neste servidor ?"
#: ../admin/dom_edit.php:284 #: ../admin/dom_edit.php:297
msgid "" msgid ""
"Warning: If you set this to 'no', all your email accounts and aliases on " "Warning: If you set this to 'no', all your email accounts and aliases on "
"this domain will be immediately deleted." "this domain will be immediately deleted."
msgstr "" msgstr ""
#: ../admin/dom_edit.php:285 #: ../admin/dom_edit.php:298
msgid "Submit the changes" msgid "Submit the changes"
msgstr "Submeter as mudanças" msgstr "Submeter as mudanças"
#: ../admin/dom_edit.php:293 #: ../admin/dom_edit.php:306
msgid "" msgid ""
"Here is the actual DNS zone running on the AlternC server. If you just made " "Here is the actual DNS zone running on the AlternC server. If you just made "
"some changes, you have to wait for it." "some changes, you have to wait for it."
msgstr "" msgstr ""
#: ../admin/dom_edit.php:297 #: ../admin/dom_edit.php:310
#, fuzzy #, fuzzy
msgid "Click here to view the dump" msgid "Click here to view the dump"
msgstr "Clicar aqui para continuar" msgstr "Clicar aqui para continuar"
#: ../admin/dom_edit.php:300 #: ../admin/dom_edit.php:313
msgid "Refresh" msgid "Refresh"
msgstr "" msgstr ""
#: ../admin/dom_edit.php:306 #: ../admin/dom_edit.php:319
#, fuzzy #, fuzzy
msgid "Domain removal" msgid "Domain removal"
msgstr "Nome do Domínio" msgstr "Nome do Domínio"
#: ../admin/dom_edit.php:307 #: ../admin/dom_edit.php:320
#, php-format #, php-format
msgid "" msgid ""
"If you want to destroy the domain %s, click on the button below. Warning: " "If you want to destroy the domain %s, click on the button below. Warning: "
@ -2217,7 +2228,7 @@ msgid ""
"domain and subdomains." "domain and subdomains."
msgstr "" msgstr ""
#: ../admin/dom_edit.php:310 #: ../admin/dom_edit.php:323
#, php-format #, php-format
msgid "Delete %s from this server" msgid "Delete %s from this server"
msgstr "" msgstr ""
@ -4568,24 +4579,24 @@ msgstr "Editando o domínio %s"
msgid "The name MUST contain only letter and digits" msgid "The name MUST contain only letter and digits"
msgstr "" msgstr ""
#: ../class/m_dom.php:578 ../class/m_dom.php:1401 #: ../class/m_dom.php:578 ../class/m_dom.php:1402
msgid "" msgid ""
"The parameters for this subdomain and domain type are invalid. Please check " "The parameters for this subdomain and domain type are invalid. Please check "
"for subdomain entries incompatibility" "for subdomain entries incompatibility"
msgstr "" msgstr ""
#: ../class/m_dom.php:697 ../class/m_dom.php:1146 ../class/m_dom.php:1217 #: ../class/m_dom.php:697 ../class/m_dom.php:1146 ../class/m_dom.php:1218
#: ../class/m_dom.php:1372 ../class/m_dom.php:1462 ../class/m_dom.php:1511 #: ../class/m_dom.php:1373 ../class/m_dom.php:1463 ../class/m_dom.php:1512
#: ../class/m_dom.php:1855 #: ../class/m_dom.php:1856
msgid "--- Program error --- No lock on the domains!" msgid "--- Program error --- No lock on the domains!"
msgstr "" msgstr ""
#: ../class/m_dom.php:704 ../class/m_dom.php:1151 ../class/m_dom.php:1396 #: ../class/m_dom.php:704 ../class/m_dom.php:1151 ../class/m_dom.php:1397
#: ../class/m_dom.php:1538 #: ../class/m_dom.php:1539
msgid "The domain name is syntaxically incorrect" msgid "The domain name is syntaxically incorrect"
msgstr "" msgstr ""
#: ../class/m_dom.php:710 ../class/m_dom.php:755 ../class/m_dom.php:1622 #: ../class/m_dom.php:710 ../class/m_dom.php:755 ../class/m_dom.php:1623
msgid "" msgid ""
"The requested domain is forbidden in this server, please contact the " "The requested domain is forbidden in this server, please contact the "
"administrator" "administrator"
@ -4600,7 +4611,7 @@ msgstr ""
msgid "The domain already exist" msgid "The domain already exist"
msgstr "Edição de arquivo" msgstr "Edição de arquivo"
#: ../class/m_dom.php:731 ../class/m_dom.php:1518 #: ../class/m_dom.php:731 ../class/m_dom.php:1519
msgid "" msgid ""
"The last member of the domain name is incorrect or cannot be hosted in that " "The last member of the domain name is incorrect or cannot be hosted in that "
"server" "server"
@ -4632,164 +4643,164 @@ msgstr "Algums TLD não pode ser suprimidos..."
msgid "The Whois database is unavailable, please try again later" msgid "The Whois database is unavailable, please try again later"
msgstr "" msgstr ""
#: ../class/m_dom.php:1064 ../class/m_dom.php:1522 #: ../class/m_dom.php:1064 ../class/m_dom.php:1523
msgid "The domain cannot be found in the Whois database" msgid "The domain cannot be found in the Whois database"
msgstr "" msgstr ""
#: ../class/m_dom.php:1222 ../class/m_dom.php:1466 #: ../class/m_dom.php:1223 ../class/m_dom.php:1467
#, fuzzy #, fuzzy
msgid "The sub-domain does not exist" msgid "The sub-domain does not exist"
msgstr "A caixa de email <b>%s</b> não existe!" msgstr "A caixa de email <b>%s</b> não existe!"
#: ../class/m_dom.php:1261 #: ../class/m_dom.php:1262
msgid "invalid url" msgid "invalid url"
msgstr "" msgstr ""
#: ../class/m_dom.php:1271 #: ../class/m_dom.php:1272
#, fuzzy #, fuzzy
msgid "The folder you entered is incorrect or does not exist" msgid "The folder you entered is incorrect or does not exist"
msgstr "Membro '%s' não existe" msgstr "Membro '%s' não existe"
#: ../class/m_dom.php:1280 ../class/m_dom.php:1288 #: ../class/m_dom.php:1281 ../class/m_dom.php:1289
#, fuzzy #, fuzzy
msgid "The ip address is invalid" msgid "The ip address is invalid"
msgstr "Lista de caixas de email do domínio %s" msgstr "Lista de caixas de email do domínio %s"
#: ../class/m_dom.php:1296 #: ../class/m_dom.php:1297
#, fuzzy #, fuzzy
msgid "" msgid ""
"The name you entered is incorrect or not fully qualified (shall end with a .)" "The name you entered is incorrect or not fully qualified (shall end with a .)"
msgstr "Membro '%s' não existe" msgstr "Membro '%s' não existe"
#: ../class/m_dom.php:1304 #: ../class/m_dom.php:1305
#, fuzzy #, fuzzy
msgid "The TXT value you entered is incorrect" msgid "The TXT value you entered is incorrect"
msgstr "Membro '%s' não existe" msgstr "Membro '%s' não existe"
#: ../class/m_dom.php:1309 #: ../class/m_dom.php:1310
msgid "Invalid domain type selected, please check" msgid "Invalid domain type selected, please check"
msgstr "" msgstr ""
#: ../class/m_dom.php:1384 #: ../class/m_dom.php:1385
msgid "" msgid ""
"There is some forbidden characters in the sub domain (only A-Z 0-9 and - are " "There is some forbidden characters in the sub domain (only A-Z 0-9 and - are "
"allowed)" "allowed)"
msgstr "" msgstr ""
#: ../class/m_dom.php:1423 ../class/m_dom.php:1434 #: ../class/m_dom.php:1424 ../class/m_dom.php:1435
msgid "Cannot write to the destination folder" msgid "Cannot write to the destination folder"
msgstr "" msgstr ""
#: ../class/m_dom.php:1526 #: ../class/m_dom.php:1527
msgid "" msgid ""
"The DNS of this domain do not match the server's DNS. Please change your " "The DNS of this domain do not match the server's DNS. Please change your "
"domain's DNS before you install it again" "domain's DNS before you install it again"
msgstr "" msgstr ""
#: ../class/m_dom.php:1543 #: ../class/m_dom.php:1544
#, fuzzy, php-format #, fuzzy, php-format
msgid "The domain name %s does not exist" msgid "The domain name %s does not exist"
msgstr "A caixa de email <b>%s</b> não existe!" msgstr "A caixa de email <b>%s</b> não existe!"
#: ../class/m_dom.php:1550 #: ../class/m_dom.php:1551
#, fuzzy #, fuzzy
msgid "No change has been requested..." msgid "No change has been requested..."
msgstr "Suas preferências foram atualizadas." msgstr "Suas preferências foram atualizadas."
#: ../class/m_dom.php:1558 ../class/m_dom.php:1563 #: ../class/m_dom.php:1559 ../class/m_dom.php:1564
msgid "" msgid ""
"There is no MX record pointing to this server, and you are asking us to host " "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 " "the mail here. Make sure to update your MX entries or no mail will be "
"received" "received"
msgstr "" msgstr ""
#: ../class/m_dom.php:1614 ../class/m_dom.php:1639 #: ../class/m_dom.php:1615 ../class/m_dom.php:1640
msgid "The IP address you entered is incorrect" msgid "The IP address you entered is incorrect"
msgstr "" msgstr ""
#: ../class/m_dom.php:1732 ../class/m_dom.php:1738 ../class/m_dom.php:1756 #: ../class/m_dom.php:1733 ../class/m_dom.php:1739 ../class/m_dom.php:1757
#: ../class/m_dom.php:1762 #: ../class/m_dom.php:1763
#, fuzzy #, fuzzy
msgid "This domain is not installed in your account" msgid "This domain is not installed in your account"
msgstr "Esta conta é uma conta super-administrador" msgstr "Esta conta é uma conta super-administrador"
#: ../class/m_dom.php:1805 #: ../class/m_dom.php:1806
msgid "The specified slave account already exists" msgid "The specified slave account already exists"
msgstr "" msgstr ""
#: ../class/m_dom.php:1836 #: ../class/m_dom.php:1837
msgid "--- Program error --- Lock already obtained!" msgid "--- Program error --- Lock already obtained!"
msgstr "" msgstr ""
#: ../class/m_dom.php:2182 #: ../class/m_dom.php:2183
#, php-format #, php-format
msgid "" msgid ""
"Problem on %s: there is more than 1 web configuration going to be generated " "Problem on %s: there is more than 1 web configuration going to be generated "
"for this sub-domain." "for this sub-domain."
msgstr "" msgstr ""
#: ../class/m_dom.php:2191 #: ../class/m_dom.php:2192
#, php-format #, php-format
msgid "Problem on %s: we do not know domain's type <b>%s</b>." msgid "Problem on %s: we do not know domain's type <b>%s</b>."
msgstr "" msgstr ""
#: ../class/m_dom.php:2202 #: ../class/m_dom.php:2203
#, fuzzy #, fuzzy
msgid "Locally hosted" msgid "Locally hosted"
msgstr "Controlado localemente" msgstr "Controlado localemente"
#: ../class/m_dom.php:2203 #: ../class/m_dom.php:2204
#, fuzzy #, fuzzy
msgid "URL redirection" msgid "URL redirection"
msgstr "Redireção URL" msgstr "Redireção URL"
#: ../class/m_dom.php:2204 #: ../class/m_dom.php:2205
msgid "IPv4 redirect" msgid "IPv4 redirect"
msgstr "" msgstr ""
#: ../class/m_dom.php:2205
msgid "Webmail access"
msgstr "Acesso Webmail"
#: ../class/m_dom.php:2206 #: ../class/m_dom.php:2206
#, fuzzy msgid "Webmail access"
msgid "Squirrelmail Webmail access"
msgstr "Acesso Webmail" msgstr "Acesso Webmail"
#: ../class/m_dom.php:2207 #: ../class/m_dom.php:2207
#, fuzzy #, fuzzy
msgid "Roundcube Webmail access" msgid "Squirrelmail Webmail access"
msgstr "Acesso Webmail" msgstr "Acesso Webmail"
#: ../class/m_dom.php:2208 #: ../class/m_dom.php:2208
#, fuzzy
msgid "Roundcube Webmail access"
msgstr "Acesso Webmail"
#: ../class/m_dom.php:2209
msgid "IPv6 redirect" msgid "IPv6 redirect"
msgstr "" msgstr ""
#: ../class/m_dom.php:2209 #: ../class/m_dom.php:2210
msgid "CNAME DNS entry" msgid "CNAME DNS entry"
msgstr "" msgstr ""
#: ../class/m_dom.php:2210 #: ../class/m_dom.php:2211
msgid "TXT DNS entry" msgid "TXT DNS entry"
msgstr "" msgstr ""
#: ../class/m_dom.php:2211 #: ../class/m_dom.php:2212
msgid "MX DNS entry" msgid "MX DNS entry"
msgstr "" msgstr ""
#: ../class/m_dom.php:2212 #: ../class/m_dom.php:2213
msgid "secondary MX DNS entry" msgid "secondary MX DNS entry"
msgstr "" msgstr ""
#: ../class/m_dom.php:2213 #: ../class/m_dom.php:2214
msgid "Default mail server" msgid "Default mail server"
msgstr "" msgstr ""
#: ../class/m_dom.php:2214 #: ../class/m_dom.php:2215
msgid "Default backup mail server" msgid "Default backup mail server"
msgstr "" msgstr ""
#: ../class/m_dom.php:2215 #: ../class/m_dom.php:2216
#, fuzzy #, fuzzy
msgid "AlternC panel access" msgid "AlternC panel access"
msgstr "Lista de contas FTP" msgstr "Lista de contas FTP"
@ -5511,6 +5522,10 @@ msgstr ""
msgid "Real Media File" msgid "Real Media File"
msgstr "" msgstr ""
#, fuzzy
#~ msgid "Editing subdomains of %s"
#~ msgstr "Editando o domínio %s"
#, fuzzy #, fuzzy
#~ msgid "The name you entered is incorrect" #~ msgid "The name you entered is incorrect"
#~ msgstr "Membro '%s' não existe" #~ msgstr "Membro '%s' não existe"

View File

@ -1,13 +1,13 @@
--- changelog 2014-06-24 13:42:50.234304438 +0200 --- changelog 2014-06-24 13:42:50.234304438 +0200
+++ changelog.wheezy 2014-06-24 13:43:51.978313552 +0200 +++ changelog.wheezy 2014-06-24 13:43:51.978313552 +0200
@@ -1,3 +1,10 @@ @@ -1,3 +1,10 @@
+alternc (3.2.6) stable; urgency=low +alternc (3.2.7) oldstable; urgency=low
+ +
+ * Version identical to 3.1 for Squeeze + * Version identical to 3.1 for Squeeze
+ * Includes a small dovecot patch / dependency for dovecot 2.0 for Wheezy + * Includes a small dovecot patch / dependency for dovecot 2.0 for Wheezy
+ +
+ -- Benjamin Sonntag <benjamin@sonntag.fr> Thu, 7 May 2015 18:19:00 +0100 + -- Benjamin Sonntag <benjamin@sonntag.fr> Thu, 16 Jun 2015 18:19:00 +0100
+ +
alternc (3.1.6) oldstable; urgency=low alternc (3.1.7) oldoldstable; urgency=low
* add SSL and API alternc packages (Beta) * fix added autocomplete="off" to password fields (not login form)