Changeset 1653

Show
Ignore:
Timestamp:
05/22/06 11:03:51 (2 years ago)
Author:
benjamin
Message:

new translations + secondarymx management

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • alternc/trunk/bureau/admin/adm_add.php

    r1563 r1653  
    100100<tr> 
    101101        <th colspan="2"><label><input type="checkbox" name="create_dom" value="1" /> 
    102         <?php print _("Create the domain username.").variable_get('hosting_tld'); ?></label></th> 
     102        <?php printf(_("Create the domain <b>username.%s</b>"),variable_get('hosting_tld')); ?></label></th> 
    103103        </tr> 
    104104<tr> 
  • alternc/trunk/bureau/admin/adm_panel.php

    r991 r1653  
    5252<tr class="lst2"><td><a href="adm_slaveip.php"><?php __("Manage allowed ip for slave zone transfers"); ?></a></td></tr> 
    5353<tr class="lst1"><td><a href="adm_slaveaccount.php"><?php __("Manage allowed accounts for slave zone transfers"); ?></a></td></tr> 
     54<tr class="lst1"><td><a href="adm_mxaccount.php"><?php __("Manage allowed accounts for secondary mx"); ?></a></td></tr> 
    5455<tr class="lst2"><td><a href="adm_variables.php"><?php __("Configure AlternC variables"); ?></a></td></tr> 
    5556<tr class="lst1"><td><a href="quota_show_all.php"><?php __("Show all quotas"); ?></a></td></tr> 
  • alternc/trunk/bureau/admin/adm_tldadd.php

    r108 r1653  
    5050<p> 
    5151<?php __("Enter the new TLD (without the first dot) and choose what check should be done."); ?><br /> 
    52 <small><?php __("Warning : only some final tld are known in the whois function of AlternC, please check m_domains.php accordingly."); ?></small> 
     52<small><?php __("Warning : only some final tld are known in the whois function of AlternC, please check m_dom.php accordingly."); ?></small> 
    5353</p> 
    5454 
  • alternc/trunk/bureau/admin/domlist.php

    r341 r1653  
    2424 To read the license please visit http://www.gnu.org/copyleft/gpl.html 
    2525 ---------------------------------------------------------------------- 
    26  Original Author of file: 
    27  Purpose of file: 
     26 Original Author of file: Benjamin Sonntag 
     27 Purpose of file: Return the list of hosted domains to a slave dns server 
    2828 ---------------------------------------------------------------------- 
    2929*/ 
  • alternc/trunk/bureau/class/m_mail.php

    r1652 r1653  
    438438    } 
    439439    return true; 
     440  } 
     441 
     442 
     443  /* ----------------------------------------------------------------- */ 
     444  /** 
     445   * Check for a slave account (secondary mx) 
     446   */ 
     447  function check_slave_account($login,$pass) { 
     448        global $db,$err; 
     449        $db->query("SELECT * FROM mxaccount WHERE login='$login' AND pass='$pass';"); 
     450        if ($db->next_record()) {  
     451                return true; 
     452        } 
     453        return false; 
     454  } 
     455 
     456  /* ----------------------------------------------------------------- */ 
     457  /** 
     458   * Out (echo) the complete mx-hosted domain list :  
     459   */ 
     460  function echo_domain_list() { 
     461        global $db,$err; 
     462        $db->query("SELECT domaine FROM domaines WHERE gesmx=1 ORDER BY domaine"); 
     463        while ($db->next_record()) { 
     464                echo $db->f("domaine")."\n"; 
     465        } 
     466        return true; 
     467  } 
     468 
     469  /* ----------------------------------------------------------------- */ 
     470  /** 
     471   * Return the list of allowed slave accounts (secondary-mx) 
     472   */ 
     473  function enum_slave_account() { 
     474        global $db,$err; 
     475        $db->query("SELECT * FROM mxaccount;"); 
     476        $res=array(); 
     477        while ($db->next_record()) { 
     478                $res[]=$db->Record; 
     479        } 
     480        if (!count($res)) return false; 
     481        return $res; 
     482  } 
     483 
     484  /* ----------------------------------------------------------------- */ 
     485  /** 
     486   * Add a slave account that will be allowed to access the mxdomain list 
     487   */ 
     488  function add_slave_account($login,$pass) { 
     489        global $db,$err; 
     490        $db->query("SELECT * FROM mxaccount WHERE login='$login'"); 
     491        if ($db->next_record()) { 
     492          $err->raise("err",23); // FIXME 
     493          return false; 
     494        } 
     495        $db->query("INSERT INTO mxaccount (login,pass) VALUES ('$login','$pass')"); 
     496        return true; 
     497  } 
     498 
     499  /* ----------------------------------------------------------------- */ 
     500  /** 
     501   * Remove a slave account 
     502   */ 
     503  function del_slave_account($login) { 
     504        global $db,$err; 
     505        $db->query("DELETE FROM mxaccount WHERE login='$login'"); 
     506        return true; 
    440507  } 
    441508 
  • alternc/trunk/bureau/locales/de_DE/LC_MESSAGES/messages.po

    r1640 r1653  
    2626#: ../admin/adm_edit.php:35 ../admin/adm_edit.php:39 ../admin/adm_list.php:36 
    2727#: ../admin/adm_login.php:33 ../admin/adm_login.php:40 
    28 #: ../admin/adm_panel.php:33 ../admin/adm_quotadoedit.php:33 
    29 #: ../admin/adm_quotaedit.php:33 ../admin/adm_slaveaccount.php:33 
    30 #: ../admin/adm_slaveip.php:33 ../admin/adm_tldadd.php:33 
    31 #: ../admin/adm_tlddoadd.php:33 ../admin/adm_tlddoedit.php:33 
    32 #: ../admin/adm_tldedit.php:33 ../admin/adm_tld.php:33 
    33 #: ../admin/adm_variables.php:33 ../class/reset_stats_conf.php:6 
     28#: ../admin/adm_mxaccount.php:33 ../admin/adm_panel.php:33 
     29#: ../admin/adm_quotadoedit.php:33 ../admin/adm_quotaedit.php:33 
     30#: ../admin/adm_slaveaccount.php:33 ../admin/adm_slaveip.php:33 
     31#: ../admin/adm_tldadd.php:33 ../admin/adm_tlddoadd.php:33 
     32#: ../admin/adm_tlddoedit.php:33 ../admin/adm_tldedit.php:33 
     33#: ../admin/adm_tld.php:33 ../admin/adm_variables.php:33 
     34#: ../class/reset_stats_conf.php:6 
    3435msgid "This page is restricted to authorized staff" 
    3536msgstr "" 
     
    3940msgstr "Neuer Mitglied" 
    4041 
    41 #: ../admin/index.php:54 ../admin/adm_add.php:54 ../admin/adm_edit.php:61 
    42 #: ../admin/adm_list.php:78 ../admin/adm_list.php:122 
    43 #: ../admin/adm_list.php:123 ../admin/adm_list.php:124 
    44 #: ../admin/adm_quotaedit.php:60 ../admin/ftp_add.php:53 
    45 #: ../admin/ftp_edit.php:55 ../admin/ftp_list.php:60 
    46 #: ../admin/hta_adduser.php:48 ../admin/hta_edit.php:59 
     42#: ../admin/adm_add.php:54 ../admin/adm_edit.php:61 ../admin/adm_list.php:78 
     43#: ../admin/adm_list.php:131 ../admin/adm_list.php:132 
     44#: ../admin/adm_list.php:133 ../admin/adm_quotaedit.php:60 
     45#: ../admin/ftp_add.php:53 ../admin/ftp_edit.php:55 ../admin/ftp_list.php:60 
     46#: ../admin/hta_adduser.php:48 ../admin/hta_edit.php:59 ../admin/index.php:54 
    4747#: ../admin/sql_getparam.php:49 ../admin/sql_list.php:96 
    4848#: ../admin/sql_passchg.php:51 ../admin/sql_users_add.php:54 
     
    7474msgstr "Vorname" 
    7575 
    76 #: ../admin/adm_list.php:78 ../admin/adm_add.php:82 ../admin/adm_edit.php:102 
    77 #: ../admin/lst_affallsub.php:50 ../admin/lst_affsub.php:128 
    78 #: ../admin/lst_owner.php:69 ../admin/lst_subscribers.php:63 
     76#: ../admin/adm_add.php:82 ../admin/adm_edit.php:102 ../admin/adm_list.php:78 
    7977#: ../admin/mail_add.php:48 ../admin/mail_list.php:88 
    8078msgid "Email address" 
    8179msgstr "" 
    8280 
    83 #: ../admin/adm_dodefquotas.php:43 ../admin/adm_dodefquotas.php:45 
    84 #: ../admin/adm_dodefquotas.php:51 ../admin/adm_dodefquotas.php:53 
    85 #: ../admin/adm_add.php:86 ../admin/adm_edit.php:106 ../admin/adm_list.php:78 
     81#: ../admin/adm_add.php:86 ../admin/adm_dodefquotas.php:43 
     82#: ../admin/adm_dodefquotas.php:45 ../admin/adm_dodefquotas.php:51 
     83#: ../admin/adm_dodefquotas.php:53 ../admin/adm_edit.php:106 
     84#: ../admin/adm_list.php:78 
    8685msgid "Account type" 
    8786msgstr "" 
    8887 
    8988#: ../admin/adm_add.php:102 
    90 msgid "Create the domain username." 
     89#, php-format 
     90msgid "Create the domain <b>username.%s</b>" 
    9191msgstr "" 
    9292 
     
    117117msgstr "" 
    118118 
    119 #: ../admin/adm_defquotas.php:83 ../admin/adm_list.php:93 
     119#: ../admin/adm_defquotas.php:83 ../admin/adm_list.php:97 
    120120#: ../admin/quota_show_all.php:36 
    121121msgid "Quotas" 
     
    191191msgstr "" 
    192192 
    193 #: ../admin/adm_doms.php:56 ../admin/adm_slaveaccount.php:71 
    194 #: ../admin/adm_slaveip.php:73 ../admin/adm_tld.php:67 
    195 #: ../admin/mail_list.php:88 
     193#: ../admin/adm_doms.php:56 ../admin/adm_mxaccount.php:71 
     194#: ../admin/adm_slaveaccount.php:71 ../admin/adm_slaveip.php:73 
     195#: ../admin/adm_tld.php:67 ../admin/mail_list.php:88 
    196196msgid "Action" 
    197197msgstr "" 
     
    243243msgstr "Ja" 
    244244 
    245 #: ../admin/index.php:55 ../admin/adm_edit.php:78 
    246 #: ../admin/adm_slaveaccount.php:71 ../admin/adm_slaveaccount.php:91 
    247 #: ../admin/ftp_add.php:56 ../admin/ftp_edit.php:58 
    248 #: ../admin/hta_adduser.php:49 ../admin/sql_getparam.php:50 
    249 #: ../admin/sql_list.php:97 ../admin/sql_passchg.php:52 
    250 #: ../admin/sql_users_add.php:58 ../admin/sql_users_list.php:96 
     245#: ../admin/adm_edit.php:78 ../admin/adm_mxaccount.php:71 
     246#: ../admin/adm_mxaccount.php:91 ../admin/adm_slaveaccount.php:71 
     247#: ../admin/adm_slaveaccount.php:91 ../admin/ftp_add.php:56 
     248#: ../admin/ftp_edit.php:58 ../admin/hta_adduser.php:49 ../admin/index.php:55 
     249#: ../admin/sql_getparam.php:50 ../admin/sql_list.php:97 
     250#: ../admin/sql_passchg.php:52 ../admin/sql_users_add.php:58 
     251#: ../admin/sql_users_list.php:96 
    251252msgid "Password" 
    252253msgstr "Passwört" 
     
    335336msgstr "" 
    336337 
    337 #: ../admin/main.php:55 ../admin/adm_list.php:78 
     338#: ../admin/adm_list.php:78 ../admin/main.php:55 
    338339msgid "Expiry" 
    339340msgstr "" 
    340341 
    341 #: ../admin/lst_affallsub.php:60 ../admin/lst_affsub.php:138 
    342 #: ../admin/mail_list.php:97 ../admin/adm_list.php:92 ../admin/adm_tld.php:75 
    343 #: ../admin/dom_edit.php:77 ../admin/ftp_list.php:70 ../admin/hta_edit.php:68 
    344 #: ../admin/hta_list.php:76 ../admin/sta2_list.php:67 
     342#: ../admin/adm_list.php:96 ../admin/adm_tld.php:75 ../admin/dom_edit.php:77 
     343#: ../admin/ftp_list.php:70 ../admin/hta_edit.php:68 ../admin/hta_list.php:76 
     344#: ../admin/mail_list.php:97 ../admin/sta2_list.php:67 
    345345msgid "Edit" 
    346346msgstr "" 
    347347 
    348 #: ../admin/adm_list.php:96 ../admin/adm_list.php:148 
    349 #: ../admin/adm_list.php:169 ../admin/adm_list.php:194 
     348#: ../admin/adm_list.php:100 ../admin/adm_list.php:157 
     349#: ../admin/adm_list.php:178 ../admin/adm_list.php:203 
    350350msgid "Locked Account" 
    351351msgstr "" 
    352352 
    353 #: ../admin/adm_list.php:100 
     353#: ../admin/adm_list.php:103 
    354354msgid "Connect as" 
    355355msgstr "" 
    356356 
    357 #: ../admin/adm_list.php:144 ../admin/adm_list.php:165 
    358 #: ../admin/adm_list.php:190 
     357#: ../admin/adm_list.php:153 ../admin/adm_list.php:174 
     358#: ../admin/adm_list.php:199 
    359359msgid "E" 
    360360msgstr "" 
    361361 
    362 #: ../admin/adm_list.php:145 ../admin/adm_list.php:166 
    363 #: ../admin/adm_list.php:191 
     362#: ../admin/adm_list.php:154 ../admin/adm_list.php:175 
     363#: ../admin/adm_list.php:200 
    364364msgid "Q" 
    365365msgstr "" 
    366366 
    367 #: ../admin/adm_list.php:151 ../admin/adm_list.php:173 
    368 #: ../admin/adm_list.php:197 
     367#: ../admin/adm_list.php:160 ../admin/adm_list.php:182 
     368#: ../admin/adm_list.php:206 
    369369msgid "C" 
    370370msgstr "" 
    371371 
    372 #: ../admin/adm_list.php:209 ../admin/ftp_list.php:77 
     372#: ../admin/adm_list.php:218 ../admin/ftp_list.php:77 
    373373msgid "Delete checked accounts" 
    374374msgstr "" 
     
    380380#: ../admin/adm_login.php:82 
    381381msgid "Member login" 
     382msgstr "" 
     383 
     384#: ../admin/adm_mxaccount.php:40 ../admin/adm_slaveaccount.php:40 
     385msgid "The requested account has been deleted. It is now denied." 
     386msgstr "" 
     387 
     388#: ../admin/adm_mxaccount.php:46 ../admin/adm_slaveaccount.php:46 
     389msgid "The requested account address has been created. It is now allowed." 
     390msgstr "" 
     391 
     392#: ../admin/adm_mxaccount.php:55 ../admin/adm_panel.php:54 
     393msgid "Manage allowed accounts for secondary mx" 
     394msgstr "" 
     395 
     396#: ../admin/adm_mxaccount.php:67 
     397msgid "" 
     398"Here is the list of the allowed accounts for secondary mx management. You " 
     399"can configure the alternc-secondarymx package on your secondary mx server " 
     400"and give him the login/pass that will grant him access to your server's mx-" 
     401"hosted domain list. " 
     402msgstr "" 
     403 
     404#: ../admin/adm_mxaccount.php:71 ../admin/adm_mxaccount.php:91 
     405#: ../admin/adm_slaveaccount.php:71 ../admin/adm_slaveaccount.php:91 
     406msgid "Login" 
     407msgstr "" 
     408 
     409#: ../admin/adm_mxaccount.php:79 ../admin/adm_slaveaccount.php:79 
     410#: ../admin/adm_slaveip.php:81 ../admin/bro_main.php:138 
     411#: ../admin/dom_edit.php:80 ../admin/mail_list.php:88 
     412msgid "Delete" 
     413msgstr "" 
     414 
     415#: ../admin/adm_mxaccount.php:88 
     416msgid "" 
     417"If you want to allow a new server to access your mx-hosted domain list, give " 
     418"him an account." 
     419msgstr "" 
     420 
     421#: ../admin/adm_mxaccount.php:97 ../admin/adm_slaveaccount.php:97 
     422msgid "Add this account to the allowed list" 
    382423msgstr "" 
    383424 
     
    399440msgstr "" 
    400441 
    401 #: ../admin/adm_panel.php:54 ../admin/adm_variables.php:48 
     442#: ../admin/adm_panel.php:55 ../admin/adm_variables.php:48 
    402443msgid "Configure AlternC variables" 
    403444msgstr "" 
    404445 
    405 #: ../admin/adm_panel.php:55 
     446#: ../admin/adm_panel.php:56 
    406447msgid "Show all quotas" 
    407448msgstr "" 
     
    415456msgstr "" 
    416457 
    417 #: ../admin/quota_show.php:42 ../admin/adm_quotaedit.php:61 
     458#: ../admin/adm_quotaedit.php:61 ../admin/quota_show.php:42 
    418459msgid "Quota" 
    419460msgstr "" 
    420461 
    421 #: ../admin/quota_show.php:42 ../admin/adm_quotaedit.php:61 
     462#: ../admin/adm_quotaedit.php:61 ../admin/quota_show.php:42 
    422463msgid "Total" 
    423464msgstr "" 
    424465 
    425 #: ../admin/quota_show.php:42 ../admin/adm_quotaedit.php:61 
     466#: ../admin/adm_quotaedit.php:61 ../admin/quota_show.php:42 
    426467msgid "Used" 
    427468msgstr "Benützt" 
     
    436477msgstr "" 
    437478 
    438 #: ../admin/adm_slaveaccount.php:40 
    439 msgid "The requested account has been deleted. It is now denied." 
    440 msgstr "" 
    441  
    442 #: ../admin/adm_slaveaccount.php:46 
    443 msgid "The requested account address has been created. It is now allowed." 
    444 msgstr "" 
    445  
    446479#: ../admin/adm_slaveaccount.php:67 
    447480msgid "" 
     
    451484msgstr "" 
    452485 
    453 #: ../admin/adm_slaveaccount.php:71 ../admin/adm_slaveaccount.php:91 
    454 msgid "Login" 
    455 msgstr "" 
    456  
    457 #: ../admin/adm_slaveaccount.php:79 ../admin/adm_slaveip.php:81 
    458 #: ../admin/bro_main.php:138 ../admin/dom_edit.php:80 
    459 #: ../admin/lst_affallsub.php:50 ../admin/lst_affsub.php:128 
    460 #: ../admin/lst_owner.php:69 ../admin/mail_list.php:88 
    461 msgid "Delete" 
    462 msgstr "" 
    463  
    464486#: ../admin/adm_slaveaccount.php:88 
    465487msgid "" 
    466488"If you want to allow a new server to access your domain list, give him an " 
    467489"account." 
    468 msgstr "" 
    469  
    470 #: ../admin/adm_slaveaccount.php:97 
    471 msgid "Add this account to the allowed list" 
    472490msgstr "" 
    473491 
     
    524542msgid "" 
    525543"Warning : only some final tld are known in the whois function of AlternC, " 
    526 "please check m_domains.php accordingly." 
     544"please check m_dom.php accordingly." 
    527545msgstr "" 
    528546 
     
    604622msgstr "" 
    605623 
    606 #: ../admin/bro_editor.php:69 
     624#: ../admin/bro_editor.php:67 
    607625msgid "Save" 
    608626msgstr "Speichern" 
    609627 
    610 #: ../admin/bro_editor.php:70 
     628#: ../admin/bro_editor.php:68 
    611629msgid "Save &amp; Quit" 
    612630msgstr "" 
    613631 
    614 #: ../admin/bro_editor.php:71 
     632#: ../admin/bro_editor.php:69 
    615633msgid "Quit" 
    616634msgstr "" 
    617635 
    618 #: ../admin/hta_edit.php:50 ../admin/bro_main.php:89 ../admin/hta_edit.php:82 
     636#: ../admin/bro_main.php:89 ../admin/hta_edit.php:50 ../admin/hta_edit.php:82 
    619637#: ../admin/menu_brouteur.php:34 
    620638msgid "File browser" 
     
    625643msgstr "" 
    626644 
    627 #: ../class/m_bro.php:222 ../class/m_bro.php:231 ../admin/bro_main.php:97 
     645#: ../admin/bro_main.php:97 ../class/m_bro.php:222 ../class/m_bro.php:231 
    628646msgid "File" 
    629647msgstr "Datei" 
     
    651669 
    652670#: ../admin/bro_main.php:177 ../admin/bro_main.php:348 
    653 #: ../admin/sta2_list.php:71 ../admin/sta2_list.php:57 
     671#: ../admin/sta2_list.php:57 ../admin/sta2_list.php:71 
    654672msgid "View" 
    655673msgstr "" 
     
    828846msgstr "" 
    829847 
    830 #: ../admin/hta_doedituser.php:53 ../admin/dom_doadd.php:4
    831 #: ../admin/dom_dodel.php:69 ../admin/dom_editdns.php:57 
     848#: ../admin/dom_doadd.php:49 ../admin/dom_dodel.php:6
     849#: ../admin/dom_editdns.php:57 ../admin/hta_doedituser.php:53 
    832850msgid "Click here to continue" 
    833851msgstr "" 
     
    893911msgstr "" 
    894912 
    895 #: ../class/m_dom.php:551 ../admin/dom_edit.php:122 
    896 #: ../admin/dom_subedit.php:83 
     913#: ../admin/dom_edit.php:122 ../admin/dom_subedit.php:83 
     914#: ../class/m_dom.php:551 
    897915msgid "Webmail access" 
    898916msgstr "" 
     
    9871005msgstr "" 
    9881006 
    989 #: ../admin/hta_list.php:50 ../admin/hta_add.php:37 ../admin/hta_list.php:86 
     1007#: ../admin/hta_add.php:37 ../admin/hta_list.php:50 ../admin/hta_list.php:86 
    9901008#: ../admin/web_list.php:3 
    9911009msgid "Protect a folder" 
     
    10551073msgstr "" 
    10561074 
    1057 #: ../admin/quota_show_all.php:50 ../admin/hta_edituser.php:48 
     1075#: ../admin/hta_edituser.php:48 ../admin/quota_show_all.php:50 
    10581076#: ../admin/sql_users_list.php:53 
    10591077msgid "User" 
     
    11021120 
    11031121#: ../admin/index.php:66 
    1104 msgid "If you want to use a different language, click on the flag below" 
     1122#, fuzzy 
     1123msgid "You can use a different language: " 
    11051124msgstr "Für eine andere Sprache, click über die Fahne" 
    11061125 
    1107 #: ../admin/index.php:75 ../admin/index.php:7
     1126#: ../admin/index.php:7
    11081127msgid "AlternC, Opensource hosting control panel" 
    1109 msgstr "" 
    1110  
    1111 #: ../admin/lst_addown.php:42 
    1112 msgid "The new owner has been successfully added" 
    1113 msgstr "" 
    1114  
    1115 #: ../admin/lst_addown.php:51 ../admin/lst_addsub1.php:51 
    1116 #: ../admin/lst_addsub.php:50 ../admin/lst_affallsub.php:42 
    1117 #: ../admin/lst_affsub.php:43 ../admin/lst_delown.php:52 
    1118 #: ../admin/lst_delsub.php:50 ../admin/lst_doedit.php:51 
    1119 #: ../admin/lst_doeditsub.php:46 ../admin/lst_owner.php:40 
    1120 #: ../admin/lst_subscribers.php:40 
    1121 #, php-format 
    1122 msgid "Mailing list %s" 
    1123 msgstr "" 
    1124  
    1125 #: ../admin/lst_addsub1.php:42 
    1126 msgid "Subscription successfull" 
    1127 msgstr "" 
    1128  
    1129 #: ../admin/lst_addsub.php:41 
    1130 msgid "The new member has been successfully added" 
    1131 msgstr "" 
    1132  
    1133 #: ../admin/lst_affallsub.php:50 ../admin/lst_affsub.php:128 
    1134 msgid "Name" 
    1135 msgstr "" 
    1136  
    1137 #: ../admin/lst_affallsub.php:65 ../admin/lst_affsub.php:143 
    1138 msgid "Delete the checked subscribers" 
    1139 msgstr "" 
    1140  
    1141 #: ../admin/lst_affallsub.php:72 ../admin/lst_affsub.php:228 
    1142 msgid "Back to the subscription page" 
    1143 msgstr "" 
    1144  
    1145 #: ../admin/lst_affsub.php:55 
    1146 msgid "Show all subscribed emails" 
    1147 msgstr "" 
    1148  
    1149 #: ../admin/lst_affsub.php:60 
    1150 #, php-format 
    1151 msgid "From %s to %s sur %s" 
    1152 msgstr "" 
    1153  
    1154 #: ../admin/lst_affsub.php:211 
    1155 msgid "To access directly a page from a mail address:" 
    1156 msgstr "" 
    1157  
    1158 #: ../admin/lst_affsub.php:216 ../admin/lst_affsub.php:222 
    1159 msgid "From " 
    1160 msgstr "" 
    1161  
    1162 #: ../admin/lst_affsub.php:216 ../admin/lst_affsub.php:222 
    1163 msgid "to" 
    1164 msgstr "" 
    1165  
    1166 #: ../admin/lst_delown.php:43 
    1167 msgid "The owner(s) has been successfully deleted" 
    1168 msgstr "" 
    1169  
    1170 #: ../admin/lst_delsub.php:44 
    1171 msgid "The mail(s) has been successfully unsubscribed from the list" 
    1172 msgstr "" 
    1173  
    1174 #: ../admin/lst_delsub.php:57 ../admin/lst_doeditsub.php:52 
    1175 msgid "Back" 
    1176 msgstr "" 
    1177  
    1178 #: ../admin/lst_doedit.php:42 
    1179 msgid "The list parameters has been successfully changed" 
    1180 msgstr "" 
    1181  
    1182 #: ../admin/lst_doeditsub.php:39 
    1183 msgid "The user's parameters has been successfully changed" 
    1184 msgstr "" 
    1185  
    1186 #: ../admin/lst_doedittxt.php:37 
    1187 msgid "The message has been successfully edited" 
    1188 msgstr "" 
    1189  
    1190 #: ../admin/lst_owner.php:47 
    1191 msgid "Add an owner to the list" 
    1192 msgstr "" 
    1193  
    1194 #: ../admin/lst_owner.php:51 
    1195 msgid "Enter the new owner's email" 
    1196 msgstr "" 
    1197  
    1198 #: ../admin/lst_owner.php:54 
    1199 msgid "Add this owner to the list" 
    1200 msgstr "" 
    1201  
    1202 #: ../admin/lst_owner.php:56 
    1203 msgid "Note: an owner is also a moderator" 
    1204 msgstr "" 
    1205  
    1206 #: ../admin/lst_owner.php:66 
    1207 msgid "Delete one or more owners from the list" 
    1208 msgstr "" 
    1209  
    1210 #: ../admin/lst_owner.php:81 
    1211 msgid "Delete the checked owners" 
    1212 msgstr "" 
    1213  
    1214 #: ../admin/lst_owner.php:82 
    1215 msgid "Note: a list must have at least one owner" 
    1216 msgstr "" 
    1217  
    1218 #: ../admin/lst_subscribers.php:50 
    1219 #, php-format 
    1220 msgid "There is %s subscriber(s) in your list" 
    1221 msgstr "" 
    1222  
    1223 #: ../admin/lst_subscribers.php:51 
    1224 msgid "View, edit and delete subscribers" 
    1225 msgstr "" 
    1226  
    1227 #: ../admin/lst_subscribers.php:52 
    1228 msgid "Download the subscribers list" 
    1229 msgstr "" 
    1230  
    1231 #: ../admin/lst_subscribers.php:59 
    1232 msgid "Add a subscriber to the list" 
    1233 msgstr "" 
    1234  
    1235 #: ../admin/lst_subscribers.php:67 
    1236 msgid "User's name" 
    1237 msgstr "" 
    1238  
    1239 #: ../admin/lst_subscribers.php:71 
    1240 msgid "Subscribe this email to the list" 
    1241 msgstr "" 
    1242  
    1243 #: ../admin/lst_subscribers.php:80 
    1244 msgid "Subscribe many users to the list:" 
    1245 msgstr "" 
    1246  
    1247 #: ../admin/lst_subscribers.php:83 
    1248 msgid "Enter the user email list, one per line" 
    1249 msgstr "" 
    1250  
    1251 #: ../admin/lst_subscribers.php:89 
    1252 msgid "Subscribe those users to the list" 
    12531128msgstr "" 
    12541129 
     
    12821157msgstr "" 
    12831158 
     1159#: ../admin/mail_del.php:42 ../admin/mail_dodel.php:41 
     1160msgid "Deleting mail accounts" 
     1161msgstr "" 
     1162 
     1163#: ../admin/mail_del.php:43 
     1164msgid "Please confirm the deletion of the following mail accounts:" 
     1165msgstr "" 
     1166 
     1167#: ../admin/mail_del.php:57 ../admin/mail_list.php:107 
     1168msgid "Delete the selected mailboxes" 
     1169msgstr "" 
     1170 
     1171#: ../admin/mail_del.php:57 
     1172msgid "Don't delete accounts and go back to the mail list" 
     1173msgstr "" 
     1174 
    12841175#: ../admin/mail_doadd.php:44 
    12851176#, php-format 
     
    12871178msgstr "" 
    12881179 
    1289 #: ../admin/mail_dodel.php:39 
     1180#: ../admin/mail_dodel.php:48 
    12901181#, php-format 
    12911182msgid "The mailbox <b>%s</b> does not exist!" 
     1183msgstr "" 
     1184 
     1185#: ../admin/mail_dodel.php:51 
     1186#, php-format 
     1187msgid "The mailbox <b>%s</b> has been deleted!" 
     1188msgstr "" 
     1189 
     1190#: ../admin/mail_dodel.php:60 
     1191msgid "Back to the mail account list" 
    12921192msgstr "" 
    12931193 
     
    13371237#: ../admin/mail_list.php:88 ../admin/sql_list.php:53 
    13381238msgid "Size" 
    1339 msgstr "" 
    1340  
    1341 #: ../admin/mail_list.php:107 
    1342 msgid "Delete the selected mailboxes" 
    13431239msgstr "" 
    13441240 
     
    18741770msgstr "" 
    18751771 
     1772#: ../class/m_admin.php:53 
     1773msgid "This TLD is forbidden" 
     1774msgstr "" 
     1775 
     1776#: ../class/m_admin.php:54 
     1777msgid "primary DNS is checked in WHOIS db" 
     1778msgstr "" 
     1779 
     1780#: ../class/m_admin.php:55 
     1781msgid "primary & secondary DNS are checked in WHOIS db" 
     1782msgstr "" 
     1783 
     1784#: ../class/m_admin.php:56 
     1785msgid "Domain must exist, but don't do any DNS check" 
     1786msgstr "" 
     1787 
     1788#: ../class/m_admin.php:57 
     1789msgid "Domain can be installed, no check at all" 
     1790msgstr "" 
     1791 
     1792#: ../class/m_admin.php:58 
     1793msgid "Domain can be installed, force NO DNS hosting)" 
     1794msgstr "" 
     1795 
    18761796#: ../class/m_err.php:64 ../class/m_err.php:90 ../class/m_err.php:107 
    18771797#, php-format 
     
    18831803msgid "_" 
    18841804msgstr "_" 
     1805 
     1806#: ../class/mime.php:135 
     1807msgid "CSS Stylesheet" 
     1808msgstr "" 
     1809 
     1810#: ../class/mime.php:136 
     1811msgid "Comma Separated Values data" 
     1812msgstr "" 
     1813 
     1814#: ../class/mime.php:137 
     1815msgid "DIA Diagram" 
     1816msgstr "" 
     1817 
     1818#: ../class/mime.php:138 
     1819msgid "Word Document" 
     1820msgstr "" 
     1821 
     1822#: ../class/mime.php:139 
     1823msgid "Word Document Template" 
     1824msgstr "" 
     1825 
     1826#: ../class/mime.php:140 
     1827msgid "Encapsulated Postscript" 
     1828msgstr "" 
     1829 
     1830#: ../class/mime.php:141 
     1831msgid "GIF Image" 
     1832msgstr "" 
     1833 
     1834#: ../class/mime.php:142 
     1835msgid "Macintosh Executable" 
     1836msgstr "" 
     1837 
     1838#: ../class/mime.php:143 ../class/mime.php:144 
     1839msgid "HTML Document" 
     1840msgstr "" 
     1841 
     1842#: ../class/mime.php:145 ../class/mime.php:146 
     1843msgid "JPEG Image" 
     1844msgstr "" 
     1845 
     1846#: ../class/mime.php:147 
     1847msgid "Music Playlist" 
     1848msgstr "" 
     1849 
     1850#: ../class/mime.php:148 
     1851msgid "MP3 Music File" 
     1852msgstr "" 
     1853 
     1854#: ../class/mime.php:149 
     1855msgid "Ogg Music File" 
     1856msgstr "" 
     1857 
     1858#: ../class/mime.php:150 
     1859msgid "Acrobat PDF" 
     1860msgstr "" 
     1861 
     1862#: ../class/mime.php:151 
     1863msgid "PHP Source" 
     1864msgstr "" 
     1865 
     1866#: ../class/mime.php:152 
     1867msgid "PNG Image" 
     1868msgstr "" 
     1869 
     1870#: ../class/mime.php:153 ../class/mime.php:154 
     1871msgid "Powerpoint Slideshow" 
     1872msgstr "" 
     1873 
     1874#: ../class/mime.php:155 
     1875msgid "Postscript Document" 
     1876msgstr "" 
     1877 
     1878#: ../class/mime.php:156 
     1879msgid "Photoshop Image" 
     1880msgstr "" 
     1881 
     1882#: ../class/mime.php:157 
     1883msgid "Rar Compressed Files" 
     1884msgstr "" 
     1885 
     1886#: ../class/mime.php:158 
     1887msgid "Rich Text Document" 
     1888msgstr "" 
     1889 
     1890#: ../class/mime.php:159 
     1891msgid "OpenOffice Spreadsheet" 
     1892msgstr "" 
     1893 
     1894#: ../class/mime.php:160 
     1895msgid "OpenOffice Drawing" 
     1896msgstr "" 
     1897 
     1898#: ../class/mime.php:161 
     1899msgid "OpenOffice Presentation" 
     1900msgstr "" 
     1901 
     1902#: ../class/mime.php:162 
     1903msgid "OpenOffice Writer" 
     1904msgstr "" 
     1905 
     1906#: ../class/mime.php:163 ../class/mime.php:164 
     1907msgid "TIFF Image" 
     1908msgstr "" 
     1909 
     1910#: ../class/mime.php:165 
     1911msgid "Text Document" 
     1912msgstr "" 
     1913 
     1914#: ../class/mime.php:166 ../class/mime.php:167 
     1915msgid "Virtual Card" 
     1916msgstr "" 
     1917 
     1918#: ../class/mime.php:168 
     1919msgid "Gimp Image" 
     1920msgstr "" 
     1921 
     1922#: ../class/mime.php:169 
     1923msgid "Excel Spreadsheet" 
     1924msgstr "" 
     1925 
     1926#: ../class/mime.php:170 
     1927msgid "Zip Compressed Files" 
     1928msgstr "" 
     1929 
     1930#: ../class/mime.php:171 
     1931msgid "Flash Animation" 
     1932msgstr "" 
     1933 
     1934#: ../class/mime.php:172 ../class/mime.php:173 ../class/mime.php:174 
     1935msgid "Real Media File" 
     1936msgstr "" 
    18851937 
    18861938#: ../class/m_mem.php:474 
     
    18881940msgstr "Hilfe" 
    18891941 
    1890 #: ../admin/index.php:66 
    1891 #, fuzzy 
    1892 msgid "You can use a different language: " 
    1893 msgstr "Für eine andere Sprache, click über die Fahne" 
    1894  
    1895 #: ../class/mime.php:135 
    1896 msgid "CSS Stylesheet" 
    1897 msgstr "" 
    1898  
    1899 #: ../class/mime.php:136 
    1900 msgid "Comma Separated Values data" 
    1901 msgstr "" 
    1902  
    1903 #: ../class/mime.php:137 
    1904 msgid "DIA Diagram" 
    1905 msgstr "" 
    1906  
    1907 #: ../class/mime.php:138 
    1908 msgid "Word Document" 
    1909 msgstr "" 
    1910  
    1911 #: ../class/mime.php:139 
    1912 msgid "Word Document Template" 
    1913 msgstr "" 
    1914  
    1915 #: ../class/mime.php:140 
    1916 msgid "Encapsulated Postscript" 
    1917 msgstr "" 
    1918  
    1919 #: ../class/mime.php:141 
    1920 msgid "GIF Image" 
    1921 msgstr "" 
    1922  
    1923 #: ../class/mime.php:142 
    1924 msgid "Macintosh Executable" 
    1925 msgstr "" 
    1926  
    1927 #: ../class/mime.php:143 ../class/mime.php:144 
    1928 msgid "HTML Document" 
    1929 msgstr "" 
    1930  
    1931 #: ../class/mime.php:145 ../class/mime.php:146 
    1932 msgid "JPEG Image" 
    1933 msgstr "" 
    1934  
    1935 #: ../class/mime.php:147 
    1936 msgid "Music Playlist" 
    1937 msgstr "" 
    1938  
    1939 #: ../class/mime.php:148 
    1940 msgid "MP3 Music File" 
    1941 msgstr "" 
    1942  
    1943 #: ../class/mime.php:149 
    1944 msgid "Ogg Music File" 
    1945 msgstr "" 
    1946  
    1947 #: ../class/mime.php:150 
    1948 msgid "Acrobat PDF" 
    1949 msgstr "" 
    1950  
    1951 #: ../class/mime.php:151 
    1952 msgid "PHP Source" 
    1953 msgstr "" 
    1954  
    1955 #: ../class/mime.php:152 
    1956 msgid "PNG Image" 
    1957 msgstr "" 
    1958  
    1959 #: ../class/mime.php:153 ../class/mime.php:154 
    1960 msgid "Powerpoint Slideshow" 
    1961 msgstr "" 
    1962  
    1963 #: ../class/mime.php:155 
    1964 msgid "Postscript Document" 
    1965 msgstr "" 
    1966  
    1967 #: ../class/mime.php:156 
    1968 msgid "Photoshop Image" 
    1969 msgstr "" 
    1970  
    1971 #: ../class/mime.php:157 
    1972 msgid "Rar Compressed Files" 
    1973 msgstr "" 
    1974  
    1975 #: ../class/mime.php:158 
    1976 msgid "Rich Text Document" 
    1977 msgstr "" 
    1978  
    1979 #: ../class/mime.php:159 
    1980 msgid "OpenOffice Spreadsheet" 
    1981 msgstr "" 
    1982  
    1983 #: ../class/mime.php:160 
    1984 msgid "OpenOffice Drawing" 
    1985 msgstr "" 
    1986  
    1987 #: ../class/mime.php:161 
    1988 msgid "OpenOffice Presentation" 
    1989 msgstr "" 
    1990  
    1991 #: ../class/mime.php:162 
    1992 msgid "OpenOffice Writer" 
    1993 msgstr "" 
    1994  
    1995 #: ../class/mime.php:163 ../class/mime.php:164 
    1996 msgid "TIFF Image" 
    1997 msgstr "" 
    1998  
    1999 #: ../class/mime.php:165 
    2000 msgid "Text Document" 
    2001 msgstr "" 
    2002  
    2003 #: ../class/mime.php:166 ../class/mime.php:167 
    2004 msgid "Virtual Card" 
    2005 msgstr "" 
    2006  
    2007 #: ../class/mime.php:168 
    2008 msgid "Gimp Image" 
    2009 msgstr "" 
    2010  
    2011 #: ../class/mime.php:169 
    2012 msgid "Excel Spreadsheet" 
    2013 msgstr "" 
    2014  
    2015 #: ../class/mime.php:170 
    2016 msgid "Zip Compressed Files" 
    2017 msgstr "" 
    2018  
    2019 #: ../class/mime.php:171 
    2020 msgid "Flash Animation" 
    2021 msgstr "" 
    2022  
    2023 #: ../class/mime.php:172 ../class/mime.php:173 ../class/mime.php:174 
    2024 msgid "Real Media File" 
    2025 msgstr "" 
    2026  
    2027 #: ../class/m_admin.php:53 
    2028 msgid "This TLD is forbidden" 
    2029 msgstr "" 
    2030  
    2031 #: ../class/m_admin.php:54 
    2032 msgid "primary DNS is checked in WHOIS db" 
    2033 msgstr "" 
    2034  
    2035 #: ../class/m_admin.php:55 
    2036 msgid "primary & secondary DNS are checked in WHOIS db" 
    2037 msgstr "" 
    2038  
    2039 #: ../class/m_admin.php:56 
    2040 msgid "Domain must exist, but don't do any DNS check" 
    2041 msgstr "" 
    2042  
    2043 #: ../class/m_admin.php:57 
    2044 msgid "Domain can be installed, no check at all" 
    2045 msgstr "" 
    2046  
    2047 #: ../class/m_admin.php:58 
    2048 msgid "Domain can be installed, force NO DNS hosting)" 
    2049 msgstr "" 
     1942#~ msgid "If you want to use a different language, click on the flag below" 
     1943#~ msgstr "Für eine andere Sprache, click über die Fahne" 
    20501944 
    20511945#~ msgid "lang" 
  • alternc/trunk/bureau/locales/en_US/LC_MESSAGES/manual.po

    r1640 r1653  
    5555msgstr "The login is too long (16 chars max)" 
    5656 
    57 msgid "Description" 
    58 msgstr "Description" 
    59  
    60 msgid "Number of mailing-lists" 
    61 msgstr "Number of mailing-lists" 
    62  
    63 msgid "Number of domains" 
    64 msgstr "Number of domains" 
    65  
    66 msgid "Number of FTP accounts" 
    67 msgstr "Number of FTP accounts" 
    68  
    69 msgid "Number of web statistics" 
    70 msgstr "Number of web statistics" 
    71  
    7257msgid "quota_dom" 
    7358msgstr "Domain names" 
     
    504489msgstr "The chosen prefix is not allowed here" 
    505490 
     491#~ msgid "Description" 
     492#~ msgstr "Description" 
     493 
     494#~ msgid "Number of mailing-lists" 
     495#~ msgstr "Number of mailing-lists" 
     496 
     497#~ msgid "Number of domains" 
     498#~ msgstr "Number of domains" 
     499 
     500#~ msgid "Number of FTP accounts" 
     501#~ msgstr "Number of FTP accounts" 
     502 
     503#~ msgid "Number of web statistics" 
     504#~ msgstr "Number of web statistics" 
     505 
    506506#~ msgid "Number of email accounts" 
    507507#~ msgstr "Number of email accounts" 
  • alternc/trunk/bureau/locales/es_ES/LC_MESSAGES/messages.po

    r1640 r1653  
    2121#: ../admin/adm_edit.php:35 ../admin/adm_edit.php:39 ../admin/adm_list.php:36 
    2222#: ../admin/adm_login.php:33 ../admin/adm_login.php:40 
    23 #: ../admin/adm_panel.php:33 ../admin/adm_quotadoedit.php:33 
    24 #: ../admin/adm_quotaedit.php:33 ../admin/adm_slaveaccount.php:33 
    25 #: ../admin/adm_slaveip.php:33 ../admin/adm_tldadd.php:33 
    26 #: ../admin/adm_tlddoadd.php:33 ../admin/adm_tlddoedit.php:33 
    27 #: ../admin/adm_tldedit.php:33 ../admin/adm_tld.php:33 
    28 #: ../admin/adm_variables.php:33 ../class/reset_stats_conf.php:6 
     23#: ../admin/adm_mxaccount.php:33 ../admin/adm_panel.php:33 
     24#: ../admin/adm_quotadoedit.php:33 ../admin/adm_quotaedit.php:33 
     25#: ../admin/adm_slaveaccount.php:33 ../admin/adm_slaveip.php:33 
     26#: ../admin/adm_tldadd.php:33 ../admin/adm_tlddoadd.php:33 
     27#: ../admin/adm_tlddoedit.php:33 ../admin/adm_tldedit.php:33 
     28#: ../admin/adm_tld.php:33 ../admin/adm_variables.php:33 
     29#: ../class/reset_stats_conf.php:6 
    2930msgid "This page is restricted to authorized staff" 
    3031msgstr "Esta página está reservada para los administradores" 
     
    3435msgstr "Añadir nuevo miembro" 
    3536 
    36 #: ../admin/index.php:54 ../admin/adm_add.php:54 ../admin/adm_edit.php:61 
    37 #: ../admin/adm_list.php:78 ../admin/adm_list.php:122 
    38 #: ../admin/adm_list.php:123 ../admin/adm_list.php:124 
    39 #: ../admin/adm_quotaedit.php:60 ../admin/ftp_add.php:53 
    40 #: ../admin/ftp_edit.php:55 ../admin/ftp_list.php:60 
    41 #: ../admin/hta_adduser.php:48 ../admin/hta_edit.php:59 
     37#: ../admin/adm_add.php:54 ../admin/adm_edit.php:61 ../admin/adm_list.php:78 
     38#: ../admin/adm_list.php:131 ../admin/adm_list.php:132 
     39#: ../admin/adm_list.php:133 ../admin/adm_quotaedit.php:60 
     40#: ../admin/ftp_add.php:53 ../admin/ftp_edit.php:55 ../admin/ftp_list.php:60 
     41#: ../admin/hta_adduser.php:48 ../admin/hta_edit.php:59 ../admin/index.php:54 
    4242#: ../admin/sql_getparam.php:49 ../admin/sql_list.php:96 
    4343#: ../admin/sql_passchg.php:51 ../admin/sql_users_add.php:54 
     
    7070msgstr "Nombre" 
    7171 
    72 #: ../admin/adm_list.php:78 ../admin/adm_add.php:82 ../admin/adm_edit.php:102 
    73 #: ../admin/lst_affallsub.php:50 ../admin/lst_affsub.php:128 
    74 #: ../admin/lst_owner.php:69 ../admin/lst_subscribers.php:63 
     72#: ../admin/adm_add.php:82 ../admin/adm_edit.php:102 ../admin/adm_list.php:78 
    7573#: ../admin/mail_add.php:48 ../admin/mail_list.php:88 
    7674msgid "Email address" 
    7775msgstr "Dirección de correo" 
    7876 
    79 #: ../admin/adm_dodefquotas.php:43 ../admin/adm_dodefquotas.php:45 
    80 #: ../admin/adm_dodefquotas.php:51 ../admin/adm_dodefquotas.php:53 
    81 #: ../admin/adm_add.php:86 ../admin/adm_edit.php:106 ../admin/adm_list.php:78 
     77#: ../admin/adm_add.php:86 ../admin/adm_dodefquotas.php:43 
     78#: ../admin/adm_dodefquotas.php:45 ../admin/adm_dodefquotas.php:51 
     79#: ../admin/adm_dodefquotas.php:53 ../admin/adm_edit.php:106 
     80#: ../admin/adm_list.php:78 
    8281#, fuzzy 
    8382msgid "Account type" 
     
    8584 
    8685#: ../admin/adm_add.php:102 
    87 #, fuzzy 
    88 msgid "Create the domain username.
     86#, fuzzy, php-format 
     87msgid "Create the domain <b>username.%s</b>
    8988msgstr "Crear la cuenta FTP." 
    9089 
     
    117116msgstr "" 
    118117 
    119 #: ../admin/adm_defquotas.php:83 ../admin/adm_list.php:93 
     118#: ../admin/adm_defquotas.php:83 ../admin/adm_list.php:97 
    120119#: ../admin/quota_show_all.php:36 
    121120msgid "Quotas" 
     
    196195msgstr "" 
    197196 
    198 #: ../admin/adm_doms.php:56 ../admin/adm_slaveaccount.php:71 
    199