From 0c70a3337f8fa619e7854769299d46baa8d85bbf Mon Sep 17 00:00:00 2001 From: Benjamin Sonntag Date: Tue, 16 Jun 2015 16:09:26 +0200 Subject: [PATCH] CNAME is now checked properly (including . at the end) --- bureau/class/functions.php | 18 ++++++++- bureau/class/m_dom.php | 2 +- bureau/locales/de_DE/LC_MESSAGES/messages.po | 39 ++++++++++--------- bureau/locales/en_US/LC_MESSAGES/messages.po | 35 ++++++++--------- bureau/locales/es_ES/LC_MESSAGES/messages.po | 39 ++++++++++--------- bureau/locales/fr_FR/LC_MESSAGES/messages.po | 40 +++++++++++--------- bureau/locales/it_IT/LC_MESSAGES/messages.po | 35 ++++++++--------- bureau/locales/messages.pot | 35 ++++++++--------- bureau/locales/nl_NL/LC_MESSAGES/messages.po | 35 ++++++++--------- bureau/locales/pt_BR/LC_MESSAGES/messages.po | 39 ++++++++++--------- 10 files changed, 178 insertions(+), 139 deletions(-) diff --git a/bureau/class/functions.php b/bureau/class/functions.php index 6aac9d31..b2bdd572 100644 --- a/bureau/class/functions.php +++ b/bureau/class/functions.php @@ -159,7 +159,23 @@ function checksubtxt($txt) { * @return boolean */ function checkcname($cname) { - return true; + 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; } /** diff --git a/bureau/class/m_dom.php b/bureau/class/m_dom.php index 26e93c92..649dc7b9 100644 --- a/bureau/class/m_dom.php +++ b/bureau/class/m_dom.php @@ -1293,7 +1293,7 @@ class m_dom { if (checkcname($value)) { return true; } 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; } break; diff --git a/bureau/locales/de_DE/LC_MESSAGES/messages.po b/bureau/locales/de_DE/LC_MESSAGES/messages.po index d53aad08..a6aa56fb 100644 --- a/bureau/locales/de_DE/LC_MESSAGES/messages.po +++ b/bureau/locales/de_DE/LC_MESSAGES/messages.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: alternc\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" "Last-Translator: Bruno Marmier \n" "Language-Team: Espagnol \n" @@ -3847,64 +3847,64 @@ msgstr "" msgid "The zone file of this domain is locked. Contact your administrator." msgstr "" -#: ../class/functions.php:385 +#: ../class/functions.php:401 msgid "Bytes" msgstr "Bytes" -#: ../class/functions.php:387 +#: ../class/functions.php:403 msgid "Byte" msgstr "Byte" -#: ../class/functions.php:392 +#: ../class/functions.php:408 msgid "Kb" msgstr "Kb" -#: ../class/functions.php:396 +#: ../class/functions.php:412 msgid "Mb" msgstr "Mb" -#: ../class/functions.php:400 +#: ../class/functions.php:416 msgid "Gb" msgstr "Gb" -#: ../class/functions.php:402 +#: ../class/functions.php:418 msgid "Tb" msgstr "Tb" -#: ../class/functions.php:511 +#: ../class/functions.php:527 msgid "year" msgstr "" -#: ../class/functions.php:511 +#: ../class/functions.php:527 #, fuzzy msgid "years" msgstr "Bytes" -#: ../class/functions.php:513 +#: ../class/functions.php:529 msgid "month" msgstr "" -#: ../class/functions.php:513 +#: ../class/functions.php:529 msgid "months" msgstr "" -#: ../class/functions.php:536 +#: ../class/functions.php:552 msgid "Not managed" msgstr "" -#: ../class/functions.php:702 ../class/functions.php:704 +#: ../class/functions.php:718 ../class/functions.php:720 msgid "Previous Page" msgstr "" -#: ../class/functions.php:758 ../class/functions.php:760 +#: ../class/functions.php:774 ../class/functions.php:776 msgid "Next Page" msgstr "" -#: ../class/functions.php:799 +#: ../class/functions.php:815 msgid "Clic here to generate a password" msgstr "" -#: ../class/functions.php:841 ../class/functions.php:842 +#: ../class/functions.php:857 ../class/functions.php:858 msgid "Choose a folder..." msgstr "" @@ -4369,7 +4369,8 @@ msgstr "" #: ../class/m_dom.php:1296 #, 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" #: ../class/m_dom.php:1304 @@ -5185,3 +5186,7 @@ msgstr "" #: ../class/mime.php:172 ../class/mime.php:173 ../class/mime.php:174 msgid "Real Media File" msgstr "" + +#, fuzzy +#~ msgid "The name you entered is incorrect" +#~ msgstr "Miglied '%s' existiert nicht" diff --git a/bureau/locales/en_US/LC_MESSAGES/messages.po b/bureau/locales/en_US/LC_MESSAGES/messages.po index aa6fb708..aeef1229 100644 --- a/bureau/locales/en_US/LC_MESSAGES/messages.po +++ b/bureau/locales/en_US/LC_MESSAGES/messages.po @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: $Id: admin.po,v 1.10 2004/11/01 15:55:44 anonymous Exp " "$\n" "Report-Msgid-Bugs-To: i18n@alternc.org\n" -"POT-Creation-Date: 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" "Last-Translator: Benjamin Sonntag \n" "Language-Team: French \n" @@ -3817,63 +3817,63 @@ msgstr "" msgid "The zone file of this domain is locked. Contact your administrator." msgstr "" -#: ../class/functions.php:385 +#: ../class/functions.php:401 msgid "Bytes" msgstr "" -#: ../class/functions.php:387 +#: ../class/functions.php:403 msgid "Byte" msgstr "" -#: ../class/functions.php:392 +#: ../class/functions.php:408 msgid "Kb" msgstr "" -#: ../class/functions.php:396 +#: ../class/functions.php:412 msgid "Mb" msgstr "" -#: ../class/functions.php:400 +#: ../class/functions.php:416 msgid "Gb" msgstr "" -#: ../class/functions.php:402 +#: ../class/functions.php:418 msgid "Tb" msgstr "" -#: ../class/functions.php:511 +#: ../class/functions.php:527 msgid "year" msgstr "" -#: ../class/functions.php:511 +#: ../class/functions.php:527 msgid "years" msgstr "" -#: ../class/functions.php:513 +#: ../class/functions.php:529 msgid "month" msgstr "" -#: ../class/functions.php:513 +#: ../class/functions.php:529 msgid "months" msgstr "" -#: ../class/functions.php:536 +#: ../class/functions.php:552 msgid "Not managed" msgstr "" -#: ../class/functions.php:702 ../class/functions.php:704 +#: ../class/functions.php:718 ../class/functions.php:720 msgid "Previous Page" msgstr "" -#: ../class/functions.php:758 ../class/functions.php:760 +#: ../class/functions.php:774 ../class/functions.php:776 msgid "Next Page" msgstr "" -#: ../class/functions.php:799 +#: ../class/functions.php:815 msgid "Clic here to generate a password" msgstr "" -#: ../class/functions.php:841 ../class/functions.php:842 +#: ../class/functions.php:857 ../class/functions.php:858 msgid "Choose a folder..." msgstr "" @@ -4330,7 +4330,8 @@ msgid "The ip address is invalid" msgstr "" #: ../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 "" #: ../class/m_dom.php:1304 diff --git a/bureau/locales/es_ES/LC_MESSAGES/messages.po b/bureau/locales/es_ES/LC_MESSAGES/messages.po index c2bda7d4..fe7027c4 100644 --- a/bureau/locales/es_ES/LC_MESSAGES/messages.po +++ b/bureau/locales/es_ES/LC_MESSAGES/messages.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: messages\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" "Last-Translator: \n" "Language-Team: \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" # Variables used in functions.php3 -#: ../class/functions.php:385 +#: ../class/functions.php:401 msgid "Bytes" msgstr "Octetos" -#: ../class/functions.php:387 +#: ../class/functions.php:403 msgid "Byte" msgstr "Octeto" -#: ../class/functions.php:392 +#: ../class/functions.php:408 msgid "Kb" msgstr "Kb" -#: ../class/functions.php:396 +#: ../class/functions.php:412 msgid "Mb" msgstr "Mb" -#: ../class/functions.php:400 +#: ../class/functions.php:416 msgid "Gb" msgstr "Gb" -#: ../class/functions.php:402 +#: ../class/functions.php:418 msgid "Tb" msgstr "Tb" -#: ../class/functions.php:511 +#: ../class/functions.php:527 msgid "year" msgstr "año" # Variables used in functions.php3 -#: ../class/functions.php:511 +#: ../class/functions.php:527 msgid "years" msgstr "años" -#: ../class/functions.php:513 +#: ../class/functions.php:529 msgid "month" msgstr "mes" -#: ../class/functions.php:513 +#: ../class/functions.php:529 msgid "months" msgstr "meses" -#: ../class/functions.php:536 +#: ../class/functions.php:552 msgid "Not managed" msgstr "No manejado" -#: ../class/functions.php:702 ../class/functions.php:704 +#: ../class/functions.php:718 ../class/functions.php:720 msgid "Previous Page" msgstr "" -#: ../class/functions.php:758 ../class/functions.php:760 +#: ../class/functions.php:774 ../class/functions.php:776 msgid "Next Page" msgstr "" -#: ../class/functions.php:799 +#: ../class/functions.php:815 #, fuzzy msgid "Clic here to generate a password" msgstr "Por favor, entra una contraseña" -#: ../class/functions.php:841 ../class/functions.php:842 +#: ../class/functions.php:857 ../class/functions.php:858 #, fuzzy msgid "Choose a folder..." msgstr "Proteger una carpeta" @@ -4692,7 +4692,8 @@ msgstr "Lista de las buzones de correo del dominio %s" #: ../class/m_dom.php:1296 #, 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" #: ../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 msgid "Real Media File" msgstr "Archivo Real Media" + +#, fuzzy +#~ msgid "The name you entered is incorrect" +#~ msgstr "El miembro '%s' no existe" diff --git a/bureau/locales/fr_FR/LC_MESSAGES/messages.po b/bureau/locales/fr_FR/LC_MESSAGES/messages.po index 84960317..d6665f71 100644 --- a/bureau/locales/fr_FR/LC_MESSAGES/messages.po +++ b/bureau/locales/fr_FR/LC_MESSAGES/messages.po @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: $Id: admin.po,v 1.10 2004/11/01 15:55:44 anonymous Exp " "$\n" "Report-Msgid-Bugs-To: i18n@alternc.org\n" -"POT-Creation-Date: 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" "Last-Translator: Benjamin Sonntag \n" "Language-Team: français \n" @@ -4075,64 +4075,64 @@ msgstr "" "La zone DNS de ce domaine est verrouillée, contactez votre administrateur." # Variables used in functions.php3 -#: ../class/functions.php:385 +#: ../class/functions.php:401 msgid "Bytes" msgstr "Octets" # Variables used in functions.php3 -#: ../class/functions.php:387 +#: ../class/functions.php:403 msgid "Byte" msgstr "Octets" -#: ../class/functions.php:392 +#: ../class/functions.php:408 msgid "Kb" msgstr "Ko" -#: ../class/functions.php:396 +#: ../class/functions.php:412 msgid "Mb" msgstr "Mo" -#: ../class/functions.php:400 +#: ../class/functions.php:416 msgid "Gb" msgstr "Go" -#: ../class/functions.php:402 +#: ../class/functions.php:418 msgid "Tb" msgstr "To" -#: ../class/functions.php:511 +#: ../class/functions.php:527 msgid "year" msgstr "an" -#: ../class/functions.php:511 +#: ../class/functions.php:527 msgid "years" msgstr "ans" -#: ../class/functions.php:513 +#: ../class/functions.php:529 msgid "month" msgstr "mois" -#: ../class/functions.php:513 +#: ../class/functions.php:529 msgid "months" msgstr "mois" -#: ../class/functions.php:536 +#: ../class/functions.php:552 msgid "Not managed" msgstr "Non géré" -#: ../class/functions.php:702 ../class/functions.php:704 +#: ../class/functions.php:718 ../class/functions.php:720 msgid "Previous Page" msgstr "Page précédente" -#: ../class/functions.php:758 ../class/functions.php:760 +#: ../class/functions.php:774 ../class/functions.php:776 msgid "Next Page" msgstr "Page suivante" -#: ../class/functions.php:799 +#: ../class/functions.php:815 msgid "Clic here to generate a password" 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..." msgstr "Choisir un répertoire ..." @@ -4619,8 +4619,9 @@ msgid "The ip address is invalid" msgstr "Adresse IP invalide" #: ../class/m_dom.php:1296 -msgid "The name you entered is incorrect" -msgstr "Le nom que vous avez entré est incorrect" +msgid "" +"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 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 msgid "Real Media File" msgstr "Fichier Real Media" + +#~ msgid "The name you entered is incorrect" +#~ msgstr "Le nom que vous avez entré est incorrect" diff --git a/bureau/locales/it_IT/LC_MESSAGES/messages.po b/bureau/locales/it_IT/LC_MESSAGES/messages.po index c359d039..c7bf78c7 100644 --- a/bureau/locales/it_IT/LC_MESSAGES/messages.po +++ b/bureau/locales/it_IT/LC_MESSAGES/messages.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: AlternC 2.0\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" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -3817,63 +3817,63 @@ msgstr "" msgid "The zone file of this domain is locked. Contact your administrator." msgstr "" -#: ../class/functions.php:385 +#: ../class/functions.php:401 msgid "Bytes" msgstr "" -#: ../class/functions.php:387 +#: ../class/functions.php:403 msgid "Byte" msgstr "" -#: ../class/functions.php:392 +#: ../class/functions.php:408 msgid "Kb" msgstr "" -#: ../class/functions.php:396 +#: ../class/functions.php:412 msgid "Mb" msgstr "" -#: ../class/functions.php:400 +#: ../class/functions.php:416 msgid "Gb" msgstr "" -#: ../class/functions.php:402 +#: ../class/functions.php:418 msgid "Tb" msgstr "" -#: ../class/functions.php:511 +#: ../class/functions.php:527 msgid "year" msgstr "" -#: ../class/functions.php:511 +#: ../class/functions.php:527 msgid "years" msgstr "" -#: ../class/functions.php:513 +#: ../class/functions.php:529 msgid "month" msgstr "" -#: ../class/functions.php:513 +#: ../class/functions.php:529 msgid "months" msgstr "" -#: ../class/functions.php:536 +#: ../class/functions.php:552 msgid "Not managed" msgstr "" -#: ../class/functions.php:702 ../class/functions.php:704 +#: ../class/functions.php:718 ../class/functions.php:720 msgid "Previous Page" msgstr "" -#: ../class/functions.php:758 ../class/functions.php:760 +#: ../class/functions.php:774 ../class/functions.php:776 msgid "Next Page" msgstr "" -#: ../class/functions.php:799 +#: ../class/functions.php:815 msgid "Clic here to generate a password" msgstr "" -#: ../class/functions.php:841 ../class/functions.php:842 +#: ../class/functions.php:857 ../class/functions.php:858 msgid "Choose a folder..." msgstr "" @@ -4330,7 +4330,8 @@ msgid "The ip address is invalid" msgstr "" #: ../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 "" #: ../class/m_dom.php:1304 diff --git a/bureau/locales/messages.pot b/bureau/locales/messages.pot index d472a420..1f47f240 100644 --- a/bureau/locales/messages.pot +++ b/bureau/locales/messages.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: AlternC 2.0\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" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -3817,63 +3817,63 @@ msgstr "" msgid "The zone file of this domain is locked. Contact your administrator." msgstr "" -#: ../class/functions.php:385 +#: ../class/functions.php:401 msgid "Bytes" msgstr "" -#: ../class/functions.php:387 +#: ../class/functions.php:403 msgid "Byte" msgstr "" -#: ../class/functions.php:392 +#: ../class/functions.php:408 msgid "Kb" msgstr "" -#: ../class/functions.php:396 +#: ../class/functions.php:412 msgid "Mb" msgstr "" -#: ../class/functions.php:400 +#: ../class/functions.php:416 msgid "Gb" msgstr "" -#: ../class/functions.php:402 +#: ../class/functions.php:418 msgid "Tb" msgstr "" -#: ../class/functions.php:511 +#: ../class/functions.php:527 msgid "year" msgstr "" -#: ../class/functions.php:511 +#: ../class/functions.php:527 msgid "years" msgstr "" -#: ../class/functions.php:513 +#: ../class/functions.php:529 msgid "month" msgstr "" -#: ../class/functions.php:513 +#: ../class/functions.php:529 msgid "months" msgstr "" -#: ../class/functions.php:536 +#: ../class/functions.php:552 msgid "Not managed" msgstr "" -#: ../class/functions.php:702 ../class/functions.php:704 +#: ../class/functions.php:718 ../class/functions.php:720 msgid "Previous Page" msgstr "" -#: ../class/functions.php:758 ../class/functions.php:760 +#: ../class/functions.php:774 ../class/functions.php:776 msgid "Next Page" msgstr "" -#: ../class/functions.php:799 +#: ../class/functions.php:815 msgid "Clic here to generate a password" msgstr "" -#: ../class/functions.php:841 ../class/functions.php:842 +#: ../class/functions.php:857 ../class/functions.php:858 msgid "Choose a folder..." msgstr "" @@ -4330,7 +4330,8 @@ msgid "The ip address is invalid" msgstr "" #: ../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 "" #: ../class/m_dom.php:1304 diff --git a/bureau/locales/nl_NL/LC_MESSAGES/messages.po b/bureau/locales/nl_NL/LC_MESSAGES/messages.po index 3d2e2068..a2d124ea 100644 --- a/bureau/locales/nl_NL/LC_MESSAGES/messages.po +++ b/bureau/locales/nl_NL/LC_MESSAGES/messages.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "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" "Last-Translator: Benjamin Sonntag \n" "Language-Team: Dutch \n" @@ -3817,63 +3817,63 @@ msgstr "" msgid "The zone file of this domain is locked. Contact your administrator." msgstr "" -#: ../class/functions.php:385 +#: ../class/functions.php:401 msgid "Bytes" msgstr "" -#: ../class/functions.php:387 +#: ../class/functions.php:403 msgid "Byte" msgstr "" -#: ../class/functions.php:392 +#: ../class/functions.php:408 msgid "Kb" msgstr "" -#: ../class/functions.php:396 +#: ../class/functions.php:412 msgid "Mb" msgstr "" -#: ../class/functions.php:400 +#: ../class/functions.php:416 msgid "Gb" msgstr "" -#: ../class/functions.php:402 +#: ../class/functions.php:418 msgid "Tb" msgstr "" -#: ../class/functions.php:511 +#: ../class/functions.php:527 msgid "year" msgstr "" -#: ../class/functions.php:511 +#: ../class/functions.php:527 msgid "years" msgstr "" -#: ../class/functions.php:513 +#: ../class/functions.php:529 msgid "month" msgstr "" -#: ../class/functions.php:513 +#: ../class/functions.php:529 msgid "months" msgstr "" -#: ../class/functions.php:536 +#: ../class/functions.php:552 msgid "Not managed" msgstr "" -#: ../class/functions.php:702 ../class/functions.php:704 +#: ../class/functions.php:718 ../class/functions.php:720 msgid "Previous Page" msgstr "" -#: ../class/functions.php:758 ../class/functions.php:760 +#: ../class/functions.php:774 ../class/functions.php:776 msgid "Next Page" msgstr "" -#: ../class/functions.php:799 +#: ../class/functions.php:815 msgid "Clic here to generate a password" msgstr "" -#: ../class/functions.php:841 ../class/functions.php:842 +#: ../class/functions.php:857 ../class/functions.php:858 msgid "Choose a folder..." msgstr "" @@ -4330,7 +4330,8 @@ msgid "The ip address is invalid" msgstr "" #: ../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 "" #: ../class/m_dom.php:1304 diff --git a/bureau/locales/pt_BR/LC_MESSAGES/messages.po b/bureau/locales/pt_BR/LC_MESSAGES/messages.po index 51010dd3..2b691e97 100644 --- a/bureau/locales/pt_BR/LC_MESSAGES/messages.po +++ b/bureau/locales/pt_BR/LC_MESSAGES/messages.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: $Id: admin.po,v 1.2 2003/06/09 14:36:08 root Exp $\n" "Report-Msgid-Bugs-To: i18n@alternc.org\n" -"POT-Creation-Date: 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" "Last-Translator: Benjamin Sonntag \n" "Language-Team: English \n" @@ -4117,65 +4117,65 @@ msgstr "" msgid "The zone file of this domain is locked. Contact your administrator." msgstr "Esta conta é uma conta super-administrador" -#: ../class/functions.php:385 +#: ../class/functions.php:401 msgid "Bytes" msgstr "" -#: ../class/functions.php:387 +#: ../class/functions.php:403 msgid "Byte" msgstr "" -#: ../class/functions.php:392 +#: ../class/functions.php:408 msgid "Kb" msgstr "" -#: ../class/functions.php:396 +#: ../class/functions.php:412 msgid "Mb" msgstr "" -#: ../class/functions.php:400 +#: ../class/functions.php:416 msgid "Gb" msgstr "" -#: ../class/functions.php:402 +#: ../class/functions.php:418 msgid "Tb" msgstr "" -#: ../class/functions.php:511 +#: ../class/functions.php:527 msgid "year" msgstr "" -#: ../class/functions.php:511 +#: ../class/functions.php:527 msgid "years" msgstr "" -#: ../class/functions.php:513 +#: ../class/functions.php:529 msgid "month" msgstr "" -#: ../class/functions.php:513 +#: ../class/functions.php:529 msgid "months" msgstr "" -#: ../class/functions.php:536 +#: ../class/functions.php:552 #, fuzzy msgid "Not managed" msgstr "Controlado localemente" -#: ../class/functions.php:702 ../class/functions.php:704 +#: ../class/functions.php:718 ../class/functions.php:720 msgid "Previous Page" msgstr "" -#: ../class/functions.php:758 ../class/functions.php:760 +#: ../class/functions.php:774 ../class/functions.php:776 msgid "Next Page" msgstr "" -#: ../class/functions.php:799 +#: ../class/functions.php:815 #, fuzzy msgid "Clic here to generate a password" msgstr "Please enter a password" -#: ../class/functions.php:841 ../class/functions.php:842 +#: ../class/functions.php:857 ../class/functions.php:858 #, fuzzy msgid "Choose 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 #, 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" #: ../class/m_dom.php:1304 @@ -5509,3 +5510,7 @@ msgstr "" #: ../class/mime.php:172 ../class/mime.php:173 ../class/mime.php:174 msgid "Real Media File" msgstr "" + +#, fuzzy +#~ msgid "The name you entered is incorrect" +#~ msgstr "Membro '%s' não existe"