CNAME is now checked properly (including . at the end)

This commit is contained in:
Benjamin Sonntag 2015-06-16 16:09:26 +02:00
parent f135d17e20
commit 0c70a3337f
10 changed files with 178 additions and 139 deletions

View File

@ -159,6 +159,22 @@ function checksubtxt($txt) {
* @return boolean * @return boolean
*/ */
function checkcname($cname) { function checkcname($cname) {
if ($check=checkfqdn(rtrim($cname,"."))) {
if ($check!=4) { // ALLOW non-fully qualified (no .)
return false; // bad FQDN
}
}
if (substr($cname,-1)!=".") {
// Not fully qualified :
if (strpos($cname,".")===false) {
// NO DOT in the middle, no DOT elsewhere => seems fine
return true;
} else {
// NO DOT at the end, but A DOT ELSEWHERE => seems broken (please use fully qualified)
return false;
}
}
// fully qualified => fine
return true; return true;
} }

View File

@ -1293,7 +1293,7 @@ class m_dom {
if (checkcname($value)) { if (checkcname($value)) {
return true; return true;
} else { } else {
$err->raise("dom", _("The name you entered is incorrect")); $err->raise("dom", _("The name you entered is incorrect or not fully qualified (shall end with a .)"));
return false; return false;
} }
break; break;

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 14:25+0200\n" "POT-Creation-Date: 2015-06-16 16:06+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"
@ -3847,64 +3847,64 @@ msgstr ""
msgid "The zone file of this domain is locked. Contact your administrator." msgid "The zone file of this domain is locked. Contact your administrator."
msgstr "" msgstr ""
#: ../class/functions.php:385 #: ../class/functions.php:401
msgid "Bytes" msgid "Bytes"
msgstr "Bytes" msgstr "Bytes"
#: ../class/functions.php:387 #: ../class/functions.php:403
msgid "Byte" msgid "Byte"
msgstr "Byte" msgstr "Byte"
#: ../class/functions.php:392 #: ../class/functions.php:408
msgid "Kb" msgid "Kb"
msgstr "Kb" msgstr "Kb"
#: ../class/functions.php:396 #: ../class/functions.php:412
msgid "Mb" msgid "Mb"
msgstr "Mb" msgstr "Mb"
#: ../class/functions.php:400 #: ../class/functions.php:416
msgid "Gb" msgid "Gb"
msgstr "Gb" msgstr "Gb"
#: ../class/functions.php:402 #: ../class/functions.php:418
msgid "Tb" msgid "Tb"
msgstr "Tb" msgstr "Tb"
#: ../class/functions.php:511 #: ../class/functions.php:527
msgid "year" msgid "year"
msgstr "" msgstr ""
#: ../class/functions.php:511 #: ../class/functions.php:527
#, fuzzy #, fuzzy
msgid "years" msgid "years"
msgstr "Bytes" msgstr "Bytes"
#: ../class/functions.php:513 #: ../class/functions.php:529
msgid "month" msgid "month"
msgstr "" msgstr ""
#: ../class/functions.php:513 #: ../class/functions.php:529
msgid "months" msgid "months"
msgstr "" msgstr ""
#: ../class/functions.php:536 #: ../class/functions.php:552
msgid "Not managed" msgid "Not managed"
msgstr "" msgstr ""
#: ../class/functions.php:702 ../class/functions.php:704 #: ../class/functions.php:718 ../class/functions.php:720
msgid "Previous Page" msgid "Previous Page"
msgstr "" msgstr ""
#: ../class/functions.php:758 ../class/functions.php:760 #: ../class/functions.php:774 ../class/functions.php:776
msgid "Next Page" msgid "Next Page"
msgstr "" msgstr ""
#: ../class/functions.php:799 #: ../class/functions.php:815
msgid "Clic here to generate a password" msgid "Clic here to generate a password"
msgstr "" msgstr ""
#: ../class/functions.php:841 ../class/functions.php:842 #: ../class/functions.php:857 ../class/functions.php:858
msgid "Choose a folder..." msgid "Choose a folder..."
msgstr "" msgstr ""
@ -4369,7 +4369,8 @@ msgstr ""
#: ../class/m_dom.php:1296 #: ../class/m_dom.php:1296
#, fuzzy #, fuzzy
msgid "The name you entered is incorrect" msgid ""
"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:1304
@ -5185,3 +5186,7 @@ msgstr ""
#: ../class/mime.php:172 ../class/mime.php:173 ../class/mime.php:174 #: ../class/mime.php:172 ../class/mime.php:173 ../class/mime.php:174
msgid "Real Media File" msgid "Real Media File"
msgstr "" msgstr ""
#, fuzzy
#~ msgid "The name you entered is incorrect"
#~ msgstr "Miglied '%s' existiert nicht"

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 14:25+0200\n" "POT-Creation-Date: 2015-06-16 16:06+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"
@ -3817,63 +3817,63 @@ msgstr ""
msgid "The zone file of this domain is locked. Contact your administrator." msgid "The zone file of this domain is locked. Contact your administrator."
msgstr "" msgstr ""
#: ../class/functions.php:385 #: ../class/functions.php:401
msgid "Bytes" msgid "Bytes"
msgstr "" msgstr ""
#: ../class/functions.php:387 #: ../class/functions.php:403
msgid "Byte" msgid "Byte"
msgstr "" msgstr ""
#: ../class/functions.php:392 #: ../class/functions.php:408
msgid "Kb" msgid "Kb"
msgstr "" msgstr ""
#: ../class/functions.php:396 #: ../class/functions.php:412
msgid "Mb" msgid "Mb"
msgstr "" msgstr ""
#: ../class/functions.php:400 #: ../class/functions.php:416
msgid "Gb" msgid "Gb"
msgstr "" msgstr ""
#: ../class/functions.php:402 #: ../class/functions.php:418
msgid "Tb" msgid "Tb"
msgstr "" msgstr ""
#: ../class/functions.php:511 #: ../class/functions.php:527
msgid "year" msgid "year"
msgstr "" msgstr ""
#: ../class/functions.php:511 #: ../class/functions.php:527
msgid "years" msgid "years"
msgstr "" msgstr ""
#: ../class/functions.php:513 #: ../class/functions.php:529
msgid "month" msgid "month"
msgstr "" msgstr ""
#: ../class/functions.php:513 #: ../class/functions.php:529
msgid "months" msgid "months"
msgstr "" msgstr ""
#: ../class/functions.php:536 #: ../class/functions.php:552
msgid "Not managed" msgid "Not managed"
msgstr "" msgstr ""
#: ../class/functions.php:702 ../class/functions.php:704 #: ../class/functions.php:718 ../class/functions.php:720
msgid "Previous Page" msgid "Previous Page"
msgstr "" msgstr ""
#: ../class/functions.php:758 ../class/functions.php:760 #: ../class/functions.php:774 ../class/functions.php:776
msgid "Next Page" msgid "Next Page"
msgstr "" msgstr ""
#: ../class/functions.php:799 #: ../class/functions.php:815
msgid "Clic here to generate a password" msgid "Clic here to generate a password"
msgstr "" msgstr ""
#: ../class/functions.php:841 ../class/functions.php:842 #: ../class/functions.php:857 ../class/functions.php:858
msgid "Choose a folder..." msgid "Choose a folder..."
msgstr "" msgstr ""
@ -4330,7 +4330,8 @@ msgid "The ip address is invalid"
msgstr "" msgstr ""
#: ../class/m_dom.php:1296 #: ../class/m_dom.php:1296
msgid "The name you entered is incorrect" msgid ""
"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:1304

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 14:25+0200\n" "POT-Creation-Date: 2015-06-16 16:06+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"
@ -4152,65 +4152,65 @@ msgid "The zone file of this domain is locked. Contact your administrator."
msgstr "Esta cuenta es un cuenta de administrador" msgstr "Esta cuenta es un cuenta de administrador"
# Variables used in functions.php3 # Variables used in functions.php3
#: ../class/functions.php:385 #: ../class/functions.php:401
msgid "Bytes" msgid "Bytes"
msgstr "Octetos" msgstr "Octetos"
#: ../class/functions.php:387 #: ../class/functions.php:403
msgid "Byte" msgid "Byte"
msgstr "Octeto" msgstr "Octeto"
#: ../class/functions.php:392 #: ../class/functions.php:408
msgid "Kb" msgid "Kb"
msgstr "Kb" msgstr "Kb"
#: ../class/functions.php:396 #: ../class/functions.php:412
msgid "Mb" msgid "Mb"
msgstr "Mb" msgstr "Mb"
#: ../class/functions.php:400 #: ../class/functions.php:416
msgid "Gb" msgid "Gb"
msgstr "Gb" msgstr "Gb"
#: ../class/functions.php:402 #: ../class/functions.php:418
msgid "Tb" msgid "Tb"
msgstr "Tb" msgstr "Tb"
#: ../class/functions.php:511 #: ../class/functions.php:527
msgid "year" msgid "year"
msgstr "año" msgstr "año"
# Variables used in functions.php3 # Variables used in functions.php3
#: ../class/functions.php:511 #: ../class/functions.php:527
msgid "years" msgid "years"
msgstr "años" msgstr "años"
#: ../class/functions.php:513 #: ../class/functions.php:529
msgid "month" msgid "month"
msgstr "mes" msgstr "mes"
#: ../class/functions.php:513 #: ../class/functions.php:529
msgid "months" msgid "months"
msgstr "meses" msgstr "meses"
#: ../class/functions.php:536 #: ../class/functions.php:552
msgid "Not managed" msgid "Not managed"
msgstr "No manejado" msgstr "No manejado"
#: ../class/functions.php:702 ../class/functions.php:704 #: ../class/functions.php:718 ../class/functions.php:720
msgid "Previous Page" msgid "Previous Page"
msgstr "" msgstr ""
#: ../class/functions.php:758 ../class/functions.php:760 #: ../class/functions.php:774 ../class/functions.php:776
msgid "Next Page" msgid "Next Page"
msgstr "" msgstr ""
#: ../class/functions.php:799 #: ../class/functions.php:815
#, fuzzy #, fuzzy
msgid "Clic here to generate a password" msgid "Clic here to generate a password"
msgstr "Por favor, entra una contraseña" msgstr "Por favor, entra una contraseña"
#: ../class/functions.php:841 ../class/functions.php:842 #: ../class/functions.php:857 ../class/functions.php:858
#, fuzzy #, fuzzy
msgid "Choose a folder..." msgid "Choose a folder..."
msgstr "Proteger una carpeta" msgstr "Proteger una carpeta"
@ -4692,7 +4692,8 @@ msgstr "Lista de las buzones de correo del dominio %s"
#: ../class/m_dom.php:1296 #: ../class/m_dom.php:1296
#, fuzzy #, fuzzy
msgid "The name you entered is incorrect" msgid ""
"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:1304
@ -5543,3 +5544,7 @@ msgstr "Animación Flash"
#: ../class/mime.php:172 ../class/mime.php:173 ../class/mime.php:174 #: ../class/mime.php:172 ../class/mime.php:173 ../class/mime.php:174
msgid "Real Media File" msgid "Real Media File"
msgstr "Archivo Real Media" msgstr "Archivo Real Media"
#, fuzzy
#~ msgid "The name you entered is incorrect"
#~ msgstr "El miembro '%s' no existe"

View File

@ -9,7 +9,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 14:25+0200\n" "POT-Creation-Date: 2015-06-16 16:06+0200\n"
"PO-Revision-Date: 2015-06-16 14:11+0200\n" "PO-Revision-Date: 2015-06-16 14:11+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"
@ -4075,64 +4075,64 @@ msgstr ""
"La zone DNS de ce domaine est verrouillée, contactez votre administrateur." "La zone DNS de ce domaine est verrouillée, contactez votre administrateur."
# Variables used in functions.php3 # Variables used in functions.php3
#: ../class/functions.php:385 #: ../class/functions.php:401
msgid "Bytes" msgid "Bytes"
msgstr "Octets" msgstr "Octets"
# Variables used in functions.php3 # Variables used in functions.php3
#: ../class/functions.php:387 #: ../class/functions.php:403
msgid "Byte" msgid "Byte"
msgstr "Octets" msgstr "Octets"
#: ../class/functions.php:392 #: ../class/functions.php:408
msgid "Kb" msgid "Kb"
msgstr "Ko" msgstr "Ko"
#: ../class/functions.php:396 #: ../class/functions.php:412
msgid "Mb" msgid "Mb"
msgstr "Mo" msgstr "Mo"
#: ../class/functions.php:400 #: ../class/functions.php:416
msgid "Gb" msgid "Gb"
msgstr "Go" msgstr "Go"
#: ../class/functions.php:402 #: ../class/functions.php:418
msgid "Tb" msgid "Tb"
msgstr "To" msgstr "To"
#: ../class/functions.php:511 #: ../class/functions.php:527
msgid "year" msgid "year"
msgstr "an" msgstr "an"
#: ../class/functions.php:511 #: ../class/functions.php:527
msgid "years" msgid "years"
msgstr "ans" msgstr "ans"
#: ../class/functions.php:513 #: ../class/functions.php:529
msgid "month" msgid "month"
msgstr "mois" msgstr "mois"
#: ../class/functions.php:513 #: ../class/functions.php:529
msgid "months" msgid "months"
msgstr "mois" msgstr "mois"
#: ../class/functions.php:536 #: ../class/functions.php:552
msgid "Not managed" msgid "Not managed"
msgstr "Non géré" msgstr "Non géré"
#: ../class/functions.php:702 ../class/functions.php:704 #: ../class/functions.php:718 ../class/functions.php:720
msgid "Previous Page" msgid "Previous Page"
msgstr "Page précédente" msgstr "Page précédente"
#: ../class/functions.php:758 ../class/functions.php:760 #: ../class/functions.php:774 ../class/functions.php:776
msgid "Next Page" msgid "Next Page"
msgstr "Page suivante" msgstr "Page suivante"
#: ../class/functions.php:799 #: ../class/functions.php:815
msgid "Clic here to generate a password" msgid "Clic here to generate a password"
msgstr "Cliquez ici pour générer un mot de passe" msgstr "Cliquez ici pour générer un mot de passe"
#: ../class/functions.php:841 ../class/functions.php:842 #: ../class/functions.php:857 ../class/functions.php:858
msgid "Choose a folder..." msgid "Choose a folder..."
msgstr "Choisir un répertoire ..." msgstr "Choisir un répertoire ..."
@ -4619,8 +4619,9 @@ msgid "The ip address is invalid"
msgstr "Adresse IP invalide" msgstr "Adresse IP invalide"
#: ../class/m_dom.php:1296 #: ../class/m_dom.php:1296
msgid "The name you entered is incorrect" msgid ""
msgstr "Le nom que vous avez entré est incorrect" "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 .)"
#: ../class/m_dom.php:1304 #: ../class/m_dom.php:1304
msgid "The TXT value you entered is incorrect" msgid "The TXT value you entered is incorrect"
@ -5489,3 +5490,6 @@ msgstr "Animation Flash"
#: ../class/mime.php:172 ../class/mime.php:173 ../class/mime.php:174 #: ../class/mime.php:172 ../class/mime.php:173 ../class/mime.php:174
msgid "Real Media File" msgid "Real Media File"
msgstr "Fichier Real Media" msgstr "Fichier Real Media"
#~ msgid "The name you entered is 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 14:25+0200\n" "POT-Creation-Date: 2015-06-16 16:06+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"
@ -3817,63 +3817,63 @@ msgstr ""
msgid "The zone file of this domain is locked. Contact your administrator." msgid "The zone file of this domain is locked. Contact your administrator."
msgstr "" msgstr ""
#: ../class/functions.php:385 #: ../class/functions.php:401
msgid "Bytes" msgid "Bytes"
msgstr "" msgstr ""
#: ../class/functions.php:387 #: ../class/functions.php:403
msgid "Byte" msgid "Byte"
msgstr "" msgstr ""
#: ../class/functions.php:392 #: ../class/functions.php:408
msgid "Kb" msgid "Kb"
msgstr "" msgstr ""
#: ../class/functions.php:396 #: ../class/functions.php:412
msgid "Mb" msgid "Mb"
msgstr "" msgstr ""
#: ../class/functions.php:400 #: ../class/functions.php:416
msgid "Gb" msgid "Gb"
msgstr "" msgstr ""
#: ../class/functions.php:402 #: ../class/functions.php:418
msgid "Tb" msgid "Tb"
msgstr "" msgstr ""
#: ../class/functions.php:511 #: ../class/functions.php:527
msgid "year" msgid "year"
msgstr "" msgstr ""
#: ../class/functions.php:511 #: ../class/functions.php:527
msgid "years" msgid "years"
msgstr "" msgstr ""
#: ../class/functions.php:513 #: ../class/functions.php:529
msgid "month" msgid "month"
msgstr "" msgstr ""
#: ../class/functions.php:513 #: ../class/functions.php:529
msgid "months" msgid "months"
msgstr "" msgstr ""
#: ../class/functions.php:536 #: ../class/functions.php:552
msgid "Not managed" msgid "Not managed"
msgstr "" msgstr ""
#: ../class/functions.php:702 ../class/functions.php:704 #: ../class/functions.php:718 ../class/functions.php:720
msgid "Previous Page" msgid "Previous Page"
msgstr "" msgstr ""
#: ../class/functions.php:758 ../class/functions.php:760 #: ../class/functions.php:774 ../class/functions.php:776
msgid "Next Page" msgid "Next Page"
msgstr "" msgstr ""
#: ../class/functions.php:799 #: ../class/functions.php:815
msgid "Clic here to generate a password" msgid "Clic here to generate a password"
msgstr "" msgstr ""
#: ../class/functions.php:841 ../class/functions.php:842 #: ../class/functions.php:857 ../class/functions.php:858
msgid "Choose a folder..." msgid "Choose a folder..."
msgstr "" msgstr ""
@ -4330,7 +4330,8 @@ msgid "The ip address is invalid"
msgstr "" msgstr ""
#: ../class/m_dom.php:1296 #: ../class/m_dom.php:1296
msgid "The name you entered is incorrect" msgid ""
"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:1304

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 14:25+0200\n" "POT-Creation-Date: 2015-06-16 16:06+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"
@ -3817,63 +3817,63 @@ msgstr ""
msgid "The zone file of this domain is locked. Contact your administrator." msgid "The zone file of this domain is locked. Contact your administrator."
msgstr "" msgstr ""
#: ../class/functions.php:385 #: ../class/functions.php:401
msgid "Bytes" msgid "Bytes"
msgstr "" msgstr ""
#: ../class/functions.php:387 #: ../class/functions.php:403
msgid "Byte" msgid "Byte"
msgstr "" msgstr ""
#: ../class/functions.php:392 #: ../class/functions.php:408
msgid "Kb" msgid "Kb"
msgstr "" msgstr ""
#: ../class/functions.php:396 #: ../class/functions.php:412
msgid "Mb" msgid "Mb"
msgstr "" msgstr ""
#: ../class/functions.php:400 #: ../class/functions.php:416
msgid "Gb" msgid "Gb"
msgstr "" msgstr ""
#: ../class/functions.php:402 #: ../class/functions.php:418
msgid "Tb" msgid "Tb"
msgstr "" msgstr ""
#: ../class/functions.php:511 #: ../class/functions.php:527
msgid "year" msgid "year"
msgstr "" msgstr ""
#: ../class/functions.php:511 #: ../class/functions.php:527
msgid "years" msgid "years"
msgstr "" msgstr ""
#: ../class/functions.php:513 #: ../class/functions.php:529
msgid "month" msgid "month"
msgstr "" msgstr ""
#: ../class/functions.php:513 #: ../class/functions.php:529
msgid "months" msgid "months"
msgstr "" msgstr ""
#: ../class/functions.php:536 #: ../class/functions.php:552
msgid "Not managed" msgid "Not managed"
msgstr "" msgstr ""
#: ../class/functions.php:702 ../class/functions.php:704 #: ../class/functions.php:718 ../class/functions.php:720
msgid "Previous Page" msgid "Previous Page"
msgstr "" msgstr ""
#: ../class/functions.php:758 ../class/functions.php:760 #: ../class/functions.php:774 ../class/functions.php:776
msgid "Next Page" msgid "Next Page"
msgstr "" msgstr ""
#: ../class/functions.php:799 #: ../class/functions.php:815
msgid "Clic here to generate a password" msgid "Clic here to generate a password"
msgstr "" msgstr ""
#: ../class/functions.php:841 ../class/functions.php:842 #: ../class/functions.php:857 ../class/functions.php:858
msgid "Choose a folder..." msgid "Choose a folder..."
msgstr "" msgstr ""
@ -4330,7 +4330,8 @@ msgid "The ip address is invalid"
msgstr "" msgstr ""
#: ../class/m_dom.php:1296 #: ../class/m_dom.php:1296
msgid "The name you entered is incorrect" msgid ""
"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:1304

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 14:25+0200\n" "POT-Creation-Date: 2015-06-16 16:06+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"
@ -3817,63 +3817,63 @@ msgstr ""
msgid "The zone file of this domain is locked. Contact your administrator." msgid "The zone file of this domain is locked. Contact your administrator."
msgstr "" msgstr ""
#: ../class/functions.php:385 #: ../class/functions.php:401
msgid "Bytes" msgid "Bytes"
msgstr "" msgstr ""
#: ../class/functions.php:387 #: ../class/functions.php:403
msgid "Byte" msgid "Byte"
msgstr "" msgstr ""
#: ../class/functions.php:392 #: ../class/functions.php:408
msgid "Kb" msgid "Kb"
msgstr "" msgstr ""
#: ../class/functions.php:396 #: ../class/functions.php:412
msgid "Mb" msgid "Mb"
msgstr "" msgstr ""
#: ../class/functions.php:400 #: ../class/functions.php:416
msgid "Gb" msgid "Gb"
msgstr "" msgstr ""
#: ../class/functions.php:402 #: ../class/functions.php:418
msgid "Tb" msgid "Tb"
msgstr "" msgstr ""
#: ../class/functions.php:511 #: ../class/functions.php:527
msgid "year" msgid "year"
msgstr "" msgstr ""
#: ../class/functions.php:511 #: ../class/functions.php:527
msgid "years" msgid "years"
msgstr "" msgstr ""
#: ../class/functions.php:513 #: ../class/functions.php:529
msgid "month" msgid "month"
msgstr "" msgstr ""
#: ../class/functions.php:513 #: ../class/functions.php:529
msgid "months" msgid "months"
msgstr "" msgstr ""
#: ../class/functions.php:536 #: ../class/functions.php:552
msgid "Not managed" msgid "Not managed"
msgstr "" msgstr ""
#: ../class/functions.php:702 ../class/functions.php:704 #: ../class/functions.php:718 ../class/functions.php:720
msgid "Previous Page" msgid "Previous Page"
msgstr "" msgstr ""
#: ../class/functions.php:758 ../class/functions.php:760 #: ../class/functions.php:774 ../class/functions.php:776
msgid "Next Page" msgid "Next Page"
msgstr "" msgstr ""
#: ../class/functions.php:799 #: ../class/functions.php:815
msgid "Clic here to generate a password" msgid "Clic here to generate a password"
msgstr "" msgstr ""
#: ../class/functions.php:841 ../class/functions.php:842 #: ../class/functions.php:857 ../class/functions.php:858
msgid "Choose a folder..." msgid "Choose a folder..."
msgstr "" msgstr ""
@ -4330,7 +4330,8 @@ msgid "The ip address is invalid"
msgstr "" msgstr ""
#: ../class/m_dom.php:1296 #: ../class/m_dom.php:1296
msgid "The name you entered is incorrect" msgid ""
"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:1304

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 14:25+0200\n" "POT-Creation-Date: 2015-06-16 16:06+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"
@ -4117,65 +4117,65 @@ msgstr ""
msgid "The zone file of this domain is locked. Contact your administrator." msgid "The zone file of this domain is locked. Contact your administrator."
msgstr "Esta conta é uma conta super-administrador" msgstr "Esta conta é uma conta super-administrador"
#: ../class/functions.php:385 #: ../class/functions.php:401
msgid "Bytes" msgid "Bytes"
msgstr "" msgstr ""
#: ../class/functions.php:387 #: ../class/functions.php:403
msgid "Byte" msgid "Byte"
msgstr "" msgstr ""
#: ../class/functions.php:392 #: ../class/functions.php:408
msgid "Kb" msgid "Kb"
msgstr "" msgstr ""
#: ../class/functions.php:396 #: ../class/functions.php:412
msgid "Mb" msgid "Mb"
msgstr "" msgstr ""
#: ../class/functions.php:400 #: ../class/functions.php:416
msgid "Gb" msgid "Gb"
msgstr "" msgstr ""
#: ../class/functions.php:402 #: ../class/functions.php:418
msgid "Tb" msgid "Tb"
msgstr "" msgstr ""
#: ../class/functions.php:511 #: ../class/functions.php:527
msgid "year" msgid "year"
msgstr "" msgstr ""
#: ../class/functions.php:511 #: ../class/functions.php:527
msgid "years" msgid "years"
msgstr "" msgstr ""
#: ../class/functions.php:513 #: ../class/functions.php:529
msgid "month" msgid "month"
msgstr "" msgstr ""
#: ../class/functions.php:513 #: ../class/functions.php:529
msgid "months" msgid "months"
msgstr "" msgstr ""
#: ../class/functions.php:536 #: ../class/functions.php:552
#, fuzzy #, fuzzy
msgid "Not managed" msgid "Not managed"
msgstr "Controlado localemente" msgstr "Controlado localemente"
#: ../class/functions.php:702 ../class/functions.php:704 #: ../class/functions.php:718 ../class/functions.php:720
msgid "Previous Page" msgid "Previous Page"
msgstr "" msgstr ""
#: ../class/functions.php:758 ../class/functions.php:760 #: ../class/functions.php:774 ../class/functions.php:776
msgid "Next Page" msgid "Next Page"
msgstr "" msgstr ""
#: ../class/functions.php:799 #: ../class/functions.php:815
#, fuzzy #, fuzzy
msgid "Clic here to generate a password" msgid "Clic here to generate a password"
msgstr "Please enter a password" msgstr "Please enter a password"
#: ../class/functions.php:841 ../class/functions.php:842 #: ../class/functions.php:857 ../class/functions.php:858
#, fuzzy #, fuzzy
msgid "Choose a folder..." msgid "Choose a folder..."
msgstr "Protect a folder" msgstr "Protect a folder"
@ -4657,7 +4657,8 @@ msgstr "Lista de caixas de email do domínio %s"
#: ../class/m_dom.php:1296 #: ../class/m_dom.php:1296
#, fuzzy #, fuzzy
msgid "The name you entered is incorrect" msgid ""
"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:1304
@ -5509,3 +5510,7 @@ msgstr ""
#: ../class/mime.php:172 ../class/mime.php:173 ../class/mime.php:174 #: ../class/mime.php:172 ../class/mime.php:173 ../class/mime.php:174
msgid "Real Media File" msgid "Real Media File"
msgstr "" msgstr ""
#, fuzzy
#~ msgid "The name you entered is incorrect"
#~ msgstr "Membro '%s' não existe"