Changeset 1653
- Timestamp:
- 05/22/06 11:03:51 (2 years ago)
- Files:
-
- alternc/trunk/bureau/admin/adm_add.php (modified) (1 diff)
- alternc/trunk/bureau/admin/adm_mxaccount.php (added)
- alternc/trunk/bureau/admin/adm_panel.php (modified) (1 diff)
- alternc/trunk/bureau/admin/adm_tldadd.php (modified) (1 diff)
- alternc/trunk/bureau/admin/domlist.php (modified) (1 diff)
- alternc/trunk/bureau/admin/lst_addown.php (deleted)
- alternc/trunk/bureau/admin/lst_addsub.php (deleted)
- alternc/trunk/bureau/admin/lst_addsub1.php (deleted)
- alternc/trunk/bureau/admin/lst_affallsub.php (deleted)
- alternc/trunk/bureau/admin/lst_affsub.php (deleted)
- alternc/trunk/bureau/admin/lst_delown.php (deleted)
- alternc/trunk/bureau/admin/lst_delsub.php (deleted)
- alternc/trunk/bureau/admin/lst_doedit.php (deleted)
- alternc/trunk/bureau/admin/lst_doeditsub.php (deleted)
- alternc/trunk/bureau/admin/lst_doedittxt.php (deleted)
- alternc/trunk/bureau/admin/lst_downsub.php (deleted)
- alternc/trunk/bureau/admin/lst_owner.php (deleted)
- alternc/trunk/bureau/admin/lst_subscribers.php (deleted)
- alternc/trunk/bureau/admin/mxlist.php (added)
- alternc/trunk/bureau/class/m_mail.php (modified) (1 diff)
- alternc/trunk/bureau/locales/de_DE/LC_MESSAGES/messages.po (modified) (27 diffs)
- alternc/trunk/bureau/locales/en_US/LC_MESSAGES/manual.po (modified) (2 diffs)
- alternc/trunk/bureau/locales/es_ES/LC_MESSAGES/messages.po (modified) (27 diffs)
- alternc/trunk/bureau/locales/es_VE/LC_MESSAGES/manual.po (modified) (2 diffs)
- alternc/trunk/bureau/locales/es_VE/LC_MESSAGES/messages.po (modified) (28 diffs)
- alternc/trunk/bureau/locales/fr_FR/LC_MESSAGES/manual.po (modified) (3 diffs)
- alternc/trunk/bureau/locales/fr_FR/LC_MESSAGES/messages.po (modified) (37 diffs)
- alternc/trunk/bureau/locales/messages.pot (modified) (28 diffs)
- alternc/trunk/install/mysql.sql (modified) (1 diff)
- alternc/trunk/install/upgrades/0.9.6.sql (added)
- alternc/trunk/updatepot.sh (deleted)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
alternc/trunk/bureau/admin/adm_add.php
r1563 r1653 100 100 <tr> 101 101 <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> 103 103 </tr> 104 104 <tr> alternc/trunk/bureau/admin/adm_panel.php
r991 r1653 52 52 <tr class="lst2"><td><a href="adm_slaveip.php"><?php __("Manage allowed ip for slave zone transfers"); ?></a></td></tr> 53 53 <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> 54 55 <tr class="lst2"><td><a href="adm_variables.php"><?php __("Configure AlternC variables"); ?></a></td></tr> 55 56 <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 50 50 <p> 51 51 <?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_dom ains.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> 53 53 </p> 54 54 alternc/trunk/bureau/admin/domlist.php
r341 r1653 24 24 To read the license please visit http://www.gnu.org/copyleft/gpl.html 25 25 ---------------------------------------------------------------------- 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 28 28 ---------------------------------------------------------------------- 29 29 */ alternc/trunk/bureau/class/m_mail.php
r1652 r1653 438 438 } 439 439 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; 440 507 } 441 508 alternc/trunk/bureau/locales/de_DE/LC_MESSAGES/messages.po
r1640 r1653 26 26 #: ../admin/adm_edit.php:35 ../admin/adm_edit.php:39 ../admin/adm_list.php:36 27 27 #: ../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 34 35 msgid "This page is restricted to authorized staff" 35 36 msgstr "" … … 39 40 msgstr "Neuer Mitglied" 40 41 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 47 47 #: ../admin/sql_getparam.php:49 ../admin/sql_list.php:96 48 48 #: ../admin/sql_passchg.php:51 ../admin/sql_users_add.php:54 … … 74 74 msgstr "Vorname" 75 75 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 79 77 #: ../admin/mail_add.php:48 ../admin/mail_list.php:88 80 78 msgid "Email address" 81 79 msgstr "" 82 80 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 86 85 msgid "Account type" 87 86 msgstr "" 88 87 89 88 #: ../admin/adm_add.php:102 90 msgid "Create the domain username." 89 #, php-format 90 msgid "Create the domain <b>username.%s</b>" 91 91 msgstr "" 92 92 … … 117 117 msgstr "" 118 118 119 #: ../admin/adm_defquotas.php:83 ../admin/adm_list.php:9 3119 #: ../admin/adm_defquotas.php:83 ../admin/adm_list.php:97 120 120 #: ../admin/quota_show_all.php:36 121 121 msgid "Quotas" … … 191 191 msgstr "" 192 192 193 #: ../admin/adm_doms.php:56 ../admin/adm_ slaveaccount.php:71194 #: ../admin/adm_slave ip.php:73 ../admin/adm_tld.php:67195 #: ../admin/ mail_list.php:88193 #: ../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 196 196 msgid "Action" 197 197 msgstr "" … … 243 243 msgstr "Ja" 244 244 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 251 252 msgid "Password" 252 253 msgstr "Passwört" … … 335 336 msgstr "" 336 337 337 #: ../admin/ main.php:55 ../admin/adm_list.php:78338 #: ../admin/adm_list.php:78 ../admin/main.php:55 338 339 msgid "Expiry" 339 340 msgstr "" 340 341 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 345 345 msgid "Edit" 346 346 msgstr "" 347 347 348 #: ../admin/adm_list.php: 96 ../admin/adm_list.php:148349 #: ../admin/adm_list.php:1 69 ../admin/adm_list.php:194348 #: ../admin/adm_list.php:100 ../admin/adm_list.php:157 349 #: ../admin/adm_list.php:178 ../admin/adm_list.php:203 350 350 msgid "Locked Account" 351 351 msgstr "" 352 352 353 #: ../admin/adm_list.php:10 0353 #: ../admin/adm_list.php:103 354 354 msgid "Connect as" 355 355 msgstr "" 356 356 357 #: ../admin/adm_list.php:1 44 ../admin/adm_list.php:165358 #: ../admin/adm_list.php:19 0357 #: ../admin/adm_list.php:153 ../admin/adm_list.php:174 358 #: ../admin/adm_list.php:199 359 359 msgid "E" 360 360 msgstr "" 361 361 362 #: ../admin/adm_list.php:1 45 ../admin/adm_list.php:166363 #: ../admin/adm_list.php: 191362 #: ../admin/adm_list.php:154 ../admin/adm_list.php:175 363 #: ../admin/adm_list.php:200 364 364 msgid "Q" 365 365 msgstr "" 366 366 367 #: ../admin/adm_list.php:1 51 ../admin/adm_list.php:173368 #: ../admin/adm_list.php: 197367 #: ../admin/adm_list.php:160 ../admin/adm_list.php:182 368 #: ../admin/adm_list.php:206 369 369 msgid "C" 370 370 msgstr "" 371 371 372 #: ../admin/adm_list.php:2 09../admin/ftp_list.php:77372 #: ../admin/adm_list.php:218 ../admin/ftp_list.php:77 373 373 msgid "Delete checked accounts" 374 374 msgstr "" … … 380 380 #: ../admin/adm_login.php:82 381 381 msgid "Member login" 382 msgstr "" 383 384 #: ../admin/adm_mxaccount.php:40 ../admin/adm_slaveaccount.php:40 385 msgid "The requested account has been deleted. It is now denied." 386 msgstr "" 387 388 #: ../admin/adm_mxaccount.php:46 ../admin/adm_slaveaccount.php:46 389 msgid "The requested account address has been created. It is now allowed." 390 msgstr "" 391 392 #: ../admin/adm_mxaccount.php:55 ../admin/adm_panel.php:54 393 msgid "Manage allowed accounts for secondary mx" 394 msgstr "" 395 396 #: ../admin/adm_mxaccount.php:67 397 msgid "" 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. " 402 msgstr "" 403 404 #: ../admin/adm_mxaccount.php:71 ../admin/adm_mxaccount.php:91 405 #: ../admin/adm_slaveaccount.php:71 ../admin/adm_slaveaccount.php:91 406 msgid "Login" 407 msgstr "" 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 412 msgid "Delete" 413 msgstr "" 414 415 #: ../admin/adm_mxaccount.php:88 416 msgid "" 417 "If you want to allow a new server to access your mx-hosted domain list, give " 418 "him an account." 419 msgstr "" 420 421 #: ../admin/adm_mxaccount.php:97 ../admin/adm_slaveaccount.php:97 422 msgid "Add this account to the allowed list" 382 423 msgstr "" 383 424 … … 399 440 msgstr "" 400 441 401 #: ../admin/adm_panel.php:5 4../admin/adm_variables.php:48442 #: ../admin/adm_panel.php:55 ../admin/adm_variables.php:48 402 443 msgid "Configure AlternC variables" 403 444 msgstr "" 404 445 405 #: ../admin/adm_panel.php:5 5446 #: ../admin/adm_panel.php:56 406 447 msgid "Show all quotas" 407 448 msgstr "" … … 415 456 msgstr "" 416 457 417 #: ../admin/ quota_show.php:42 ../admin/adm_quotaedit.php:61458 #: ../admin/adm_quotaedit.php:61 ../admin/quota_show.php:42 418 459 msgid "Quota" 419 460 msgstr "" 420 461 421 #: ../admin/ quota_show.php:42 ../admin/adm_quotaedit.php:61462 #: ../admin/adm_quotaedit.php:61 ../admin/quota_show.php:42 422 463 msgid "Total" 423 464 msgstr "" 424 465 425 #: ../admin/ quota_show.php:42 ../admin/adm_quotaedit.php:61466 #: ../admin/adm_quotaedit.php:61 ../admin/quota_show.php:42 426 467 msgid "Used" 427 468 msgstr "Benützt" … … 436 477 msgstr "" 437 478 438 #: ../admin/adm_slaveaccount.php:40439 msgid "The requested account has been deleted. It is now denied."440 msgstr ""441 442 #: ../admin/adm_slaveaccount.php:46443 msgid "The requested account address has been created. It is now allowed."444 msgstr ""445 446 479 #: ../admin/adm_slaveaccount.php:67 447 480 msgid "" … … 451 484 msgstr "" 452 485 453 #: ../admin/adm_slaveaccount.php:71 ../admin/adm_slaveaccount.php:91454 msgid "Login"455 msgstr ""456 457 #: ../admin/adm_slaveaccount.php:79 ../admin/adm_slaveip.php:81458 #: ../admin/bro_main.php:138 ../admin/dom_edit.php:80459 #: ../admin/lst_affallsub.php:50 ../admin/lst_affsub.php:128460 #: ../admin/lst_owner.php:69 ../admin/mail_list.php:88461 msgid "Delete"462 msgstr ""463 464 486 #: ../admin/adm_slaveaccount.php:88 465 487 msgid "" 466 488 "If you want to allow a new server to access your domain list, give him an " 467 489 "account." 468 msgstr ""469 470 #: ../admin/adm_slaveaccount.php:97471 msgid "Add this account to the allowed list"472 490 msgstr "" 473 491 … … 524 542 msgid "" 525 543 "Warning : only some final tld are known in the whois function of AlternC, " 526 "please check m_dom ains.php accordingly."544 "please check m_dom.php accordingly." 527 545 msgstr "" 528 546 … … 604 622 msgstr "" 605 623 606 #: ../admin/bro_editor.php:6 9624 #: ../admin/bro_editor.php:67 607 625 msgid "Save" 608 626 msgstr "Speichern" 609 627 610 #: ../admin/bro_editor.php: 70628 #: ../admin/bro_editor.php:68 611 629 msgid "Save & Quit" 612 630 msgstr "" 613 631 614 #: ../admin/bro_editor.php: 71632 #: ../admin/bro_editor.php:69 615 633 msgid "Quit" 616 634 msgstr "" 617 635 618 #: ../admin/ hta_edit.php:50 ../admin/bro_main.php:89../admin/hta_edit.php:82636 #: ../admin/bro_main.php:89 ../admin/hta_edit.php:50 ../admin/hta_edit.php:82 619 637 #: ../admin/menu_brouteur.php:34 620 638 msgid "File browser" … … 625 643 msgstr "" 626 644 627 #: ../ class/m_bro.php:222 ../class/m_bro.php:231 ../admin/bro_main.php:97645 #: ../admin/bro_main.php:97 ../class/m_bro.php:222 ../class/m_bro.php:231 628 646 msgid "File" 629 647 msgstr "Datei" … … 651 669 652 670 #: ../admin/bro_main.php:177 ../admin/bro_main.php:348 653 #: ../admin/sta2_list.php: 71 ../admin/sta2_list.php:57671 #: ../admin/sta2_list.php:57 ../admin/sta2_list.php:71 654 672 msgid "View" 655 673 msgstr "" … … 828 846 msgstr "" 829 847 830 #: ../admin/ hta_doedituser.php:53 ../admin/dom_doadd.php:49831 #: ../admin/dom_ dodel.php:69 ../admin/dom_editdns.php:57848 #: ../admin/dom_doadd.php:49 ../admin/dom_dodel.php:69 849 #: ../admin/dom_editdns.php:57 ../admin/hta_doedituser.php:53 832 850 msgid "Click here to continue" 833 851 msgstr "" … … 893 911 msgstr "" 894 912 895 #: ../ class/m_dom.php:551 ../admin/dom_edit.php:122896 #: ../ admin/dom_subedit.php:83913 #: ../admin/dom_edit.php:122 ../admin/dom_subedit.php:83 914 #: ../class/m_dom.php:551 897 915 msgid "Webmail access" 898 916 msgstr "" … … 987 1005 msgstr "" 988 1006 989 #: ../admin/hta_ list.php:50 ../admin/hta_add.php:37../admin/hta_list.php:861007 #: ../admin/hta_add.php:37 ../admin/hta_list.php:50 ../admin/hta_list.php:86 990 1008 #: ../admin/web_list.php:3 991 1009 msgid "Protect a folder" … … 1055 1073 msgstr "" 1056 1074 1057 #: ../admin/ quota_show_all.php:50 ../admin/hta_edituser.php:481075 #: ../admin/hta_edituser.php:48 ../admin/quota_show_all.php:50 1058 1076 #: ../admin/sql_users_list.php:53 1059 1077 msgid "User" … … 1102 1120 1103 1121 #: ../admin/index.php:66 1104 msgid "If you want to use a different language, click on the flag below" 1122 #, fuzzy 1123 msgid "You can use a different language: " 1105 1124 msgstr "Für eine andere Sprache, click über die Fahne" 1106 1125 1107 #: ../admin/index.php:7 5 ../admin/index.php:741126 #: ../admin/index.php:74 1108 1127 msgid "AlternC, Opensource hosting control panel" 1109 msgstr ""1110 1111 #: ../admin/lst_addown.php:421112 msgid "The new owner has been successfully added"1113 msgstr ""1114 1115 #: ../admin/lst_addown.php:51 ../admin/lst_addsub1.php:511116 #: ../admin/lst_addsub.php:50 ../admin/lst_affallsub.php:421117 #: ../admin/lst_affsub.php:43 ../admin/lst_delown.php:521118 #: ../admin/lst_delsub.php:50 ../admin/lst_doedit.php:511119 #: ../admin/lst_doeditsub.php:46 ../admin/lst_owner.php:401120 #: ../admin/lst_subscribers.php:401121 #, php-format1122 msgid "Mailing list %s"1123 msgstr ""1124 1125 #: ../admin/lst_addsub1.php:421126 msgid "Subscription successfull"1127 msgstr ""1128 1129 #: ../admin/lst_addsub.php:411130 msgid "The new member has been successfully added"1131 msgstr ""1132 1133 #: ../admin/lst_affallsub.php:50 ../admin/lst_affsub.php:1281134 msgid "Name"1135 msgstr ""1136 1137 #: ../admin/lst_affallsub.php:65 ../admin/lst_affsub.php:1431138 msgid "Delete the checked subscribers"1139 msgstr ""1140 1141 #: ../admin/lst_affallsub.php:72 ../admin/lst_affsub.php:2281142 msgid "Back to the subscription page"1143 msgstr ""1144 1145 #: ../admin/lst_affsub.php:551146 msgid "Show all subscribed emails"1147 msgstr ""1148 1149 #: ../admin/lst_affsub.php:601150 #, php-format1151 msgid "From %s to %s sur %s"1152 msgstr ""1153 1154 #: ../admin/lst_affsub.php:2111155 msgid "To access directly a page from a mail address:"1156 msgstr ""1157 1158 #: ../admin/lst_affsub.php:216 ../admin/lst_affsub.php:2221159 msgid "From "1160 msgstr ""1161 1162 #: ../admin/lst_affsub.php:216 ../admin/lst_affsub.php:2221163 msgid "to"1164 msgstr ""1165 1166 #: ../admin/lst_delown.php:431167 msgid "The owner(s) has been successfully deleted"1168 msgstr ""1169 1170 #: ../admin/lst_delsub.php:441171 msgid "The mail(s) has been successfully unsubscribed from the list"1172 msgstr ""1173 1174 #: ../admin/lst_delsub.php:57 ../admin/lst_doeditsub.php:521175 msgid "Back"1176 msgstr ""1177 1178 #: ../admin/lst_doedit.php:421179 msgid "The list parameters has been successfully changed"1180 msgstr ""1181 1182 #: ../admin/lst_doeditsub.php:391183 msgid "The user's parameters has been successfully changed"1184 msgstr ""1185 1186 #: ../admin/lst_doedittxt.php:371187 msgid "The message has been successfully edited"1188 msgstr ""1189 1190 #: ../admin/lst_owner.php:471191 msgid "Add an owner to the list"1192 msgstr ""1193 1194 #: ../admin/lst_owner.php:511195 msgid "Enter the new owner's email"1196 msgstr ""1197 1198 #: ../admin/lst_owner.php:541199 msgid "Add this owner to the list"1200 msgstr ""1201 1202 #: ../admin/lst_owner.php:561203 msgid "Note: an owner is also a moderator"1204 msgstr ""1205 1206 #: ../admin/lst_owner.php:661207 msgid "Delete one or more owners from the list"1208 msgstr ""1209 1210 #: ../admin/lst_owner.php:811211 msgid "Delete the checked owners"1212 msgstr ""1213 1214 #: ../admin/lst_owner.php:821215 msgid "Note: a list must have at least one owner"1216 msgstr ""1217 1218 #: ../admin/lst_subscribers.php:501219 #, php-format1220 msgid "There is %s subscriber(s) in your list"1221 msgstr ""1222 1223 #: ../admin/lst_subscribers.php:511224 msgid "View, edit and delete subscribers"1225 msgstr ""1226 1227 #: ../admin/lst_subscribers.php:521228 msgid "Download the subscribers list"1229 msgstr ""1230 1231 #: ../admin/lst_subscribers.php:591232 msgid "Add a subscriber to the list"1233 msgstr ""1234 1235 #: ../admin/lst_subscribers.php:671236 msgid "User's name"1237 msgstr ""1238 1239 #: ../admin/lst_subscribers.php:711240 msgid "Subscribe this email to the list"1241 msgstr ""1242 1243 #: ../admin/lst_subscribers.php:801244 msgid "Subscribe many users to the list:"1245 msgstr ""1246 1247 #: ../admin/lst_subscribers.php:831248 msgid "Enter the user email list, one per line"1249 msgstr ""1250 1251 #: ../admin/lst_subscribers.php:891252 msgid "Subscribe those users to the list"1253 1128 msgstr "" 1254 1129 … … 1282 1157 msgstr "" 1283 1158 1159 #: ../admin/mail_del.php:42 ../admin/mail_dodel.php:41 1160 msgid "Deleting mail accounts" 1161 msgstr "" 1162 1163 #: ../admin/mail_del.php:43 1164 msgid "Please confirm the deletion of the following mail accounts:" 1165 msgstr "" 1166 1167 #: ../admin/mail_del.php:57 ../admin/mail_list.php:107 1168 msgid "Delete the selected mailboxes" 1169 msgstr "" 1170 1171 #: ../admin/mail_del.php:57 1172 msgid "Don't delete accounts and go back to the mail list" 1173 msgstr "" 1174 1284 1175 #: ../admin/mail_doadd.php:44 1285 1176 #, php-format … … 1287 1178 msgstr "" 1288 1179 1289 #: ../admin/mail_dodel.php: 391180 #: ../admin/mail_dodel.php:48 1290 1181 #, php-format 1291 1182 msgid "The mailbox <b>%s</b> does not exist!" 1183 msgstr "" 1184 1185 #: ../admin/mail_dodel.php:51 1186 #, php-format 1187 msgid "The mailbox <b>%s</b> has been deleted!" 1188 msgstr "" 1189 1190 #: ../admin/mail_dodel.php:60 1191 msgid "Back to the mail account list" 1292 1192 msgstr "" 1293 1193 … … 1337 1237 #: ../admin/mail_list.php:88 ../admin/sql_list.php:53 1338 1238 msgid "Size" 1339 msgstr ""1340 1341 #: ../admin/mail_list.php:1071342 msgid "Delete the selected mailboxes"1343 1239 msgstr "" 1344 1240 … … 1874 1770 msgstr "" 1875 1771 1772 #: ../class/m_admin.php:53 1773 msgid "This TLD is forbidden" 1774 msgstr "" 1775 1776 #: ../class/m_admin.php:54 1777 msgid "primary DNS is checked in WHOIS db" 1778 msgstr "" 1779 1780 #: ../class/m_admin.php:55 1781 msgid "primary & secondary DNS are checked in WHOIS db" 1782 msgstr "" 1783 1784 #: ../class/m_admin.php:56 1785 msgid "Domain must exist, but don't do any DNS check" 1786 msgstr "" 1787 1788 #: ../class/m_admin.php:57 1789 msgid "Domain can be installed, no check at all" 1790 msgstr "" 1791 1792 #: ../class/m_admin.php:58 1793 msgid "Domain can be installed, force NO DNS hosting)" 1794 msgstr "" 1795 1876 1796 #: ../class/m_err.php:64 ../class/m_err.php:90 ../class/m_err.php:107 1877 1797 #, php-format … … 1883 1803 msgid "_" 1884 1804 msgstr "_" 1805 1806 #: ../class/mime.php:135 1807 msgid "CSS Stylesheet" 1808 msgstr "" 1809 1810 #: ../class/mime.php:136 1811 msgid "Comma Separated Values data" 1812 msgstr "" 1813 1814 #: ../class/mime.php:137 1815 msgid "DIA Diagram" 1816 msgstr "" 1817 1818 #: ../class/mime.php:138 1819 msgid "Word Document" 1820 msgstr "" 1821 1822 #: ../class/mime.php:139 1823 msgid "Word Document Template" 1824 msgstr "" 1825 1826 #: ../class/mime.php:140 1827 msgid "Encapsulated Postscript" 1828 msgstr "" 1829 1830 #: ../class/mime.php:141 1831 msgid "GIF Image" 1832 msgstr "" 1833 1834 #: ../class/mime.php:142 1835 msgid "Macintosh Executable" 1836 msgstr "" 1837 1838 #: ../class/mime.php:143 ../class/mime.php:144 1839 msgid "HTML Document" 1840 msgstr "" 1841 1842 #: ../class/mime.php:145 ../class/mime.php:146 1843 msgid "JPEG Image" 1844 msgstr "" 1845 1846 #: ../class/mime.php:147 1847 msgid "Music Playlist" 1848 msgstr "" 1849 1850 #: ../class/mime.php:148 1851 msgid "MP3 Music File" 1852 msgstr "" 1853 1854 #: ../class/mime.php:149 1855 msgid "Ogg Music File" 1856 msgstr "" 1857 1858 #: ../class/mime.php:150 1859 msgid "Acrobat PDF" 1860 msgstr "" 1861 1862 #: ../class/mime.php:151 1863 msgid "PHP Source" 1864 msgstr "" 1865 1866 #: ../class/mime.php:152 1867 msgid "PNG Image" 1868 msgstr "" 1869 1870 #: ../class/mime.php:153 ../class/mime.php:154 1871 msgid "Powerpoint Slideshow" 1872 msgstr "" 1873 1874 #: ../class/mime.php:155 1875 msgid "Postscript Document" 1876 msgstr "" 1877 1878 #: ../class/mime.php:156 1879 msgid "Photoshop Image" 1880 msgstr "" 1881 1882 #: ../class/mime.php:157 1883 msgid "Rar Compressed Files" 1884 msgstr "" 1885 1886 #: ../class/mime.php:158 1887 msgid "Rich Text Document" 1888 msgstr "" 1889 1890 #: ../class/mime.php:159 1891 msgid "OpenOffice Spreadsheet" 1892 msgstr "" 1893 1894 #: ../class/mime.php:160 1895 msgid "OpenOffice Drawing" 1896 msgstr "" 1897 1898 #: ../class/mime.php:161 1899 msgid "OpenOffice Presentation" 1900 msgstr "" 1901 1902 #: ../class/mime.php:162 1903 msgid "OpenOffice Writer" 1904 msgstr "" 1905 1906 #: ../class/mime.php:163 ../class/mime.php:164 1907 msgid "TIFF Image" 1908 msgstr "" 1909 1910 #: ../class/mime.php:165 1911 msgid "Text Document" 1912 msgstr "" 1913 1914 #: ../class/mime.php:166 ../class/mime.php:167 1915 msgid "Virtual Card" 1916 msgstr "" 1917 1918 #: ../class/mime.php:168 1919 msgid "Gimp Image" 1920 msgstr "" 1921 1922 #: ../class/mime.php:169 1923 msgid "Excel Spreadsheet" 1924 msgstr "" 1925 1926 #: ../class/mime.php:170 1927 msgid "Zip Compressed Files" 1928 msgstr "" 1929 1930 #: ../class/mime.php:171 1931 msgid "Flash Animation" 1932 msgstr "" 1933 1934 #: ../class/mime.php:172 ../class/mime.php:173 ../class/mime.php:174 1935 msgid "Real Media File" 1936 msgstr "" 1885 1937 1886 1938 #: ../class/m_mem.php:474 … … 1888 1940 msgstr "Hilfe" 1889 1941 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" 2050 1944 2051 1945 #~ msgid "lang" alternc/trunk/bureau/locales/en_US/LC_MESSAGES/manual.po
r1640 r1653 55 55 msgstr "The login is too long (16 chars max)" 56 56 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 72 57 msgid "quota_dom" 73 58 msgstr "Domain names" … … 504 489 msgstr "The chosen prefix is not allowed here" 505 490 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 506 506 #~ msgid "Number of email accounts" 507 507 #~ msgstr "Number of email accounts" alternc/trunk/bureau/locales/es_ES/LC_MESSAGES/messages.po
r1640 r1653 21 21 #: ../admin/adm_edit.php:35 ../admin/adm_edit.php:39 ../admin/adm_list.php:36 22 22 #: ../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 29 30 msgid "This page is restricted to authorized staff" 30 31 msgstr "Esta página está reservada para los administradores" … … 34 35 msgstr "Añadir nuevo miembro" 35 36 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 42 42 #: ../admin/sql_getparam.php:49 ../admin/sql_list.php:96 43 43 #: ../admin/sql_passchg.php:51 ../admin/sql_users_add.php:54 … … 70 70 msgstr "Nombre" 71 71 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 75 73 #: ../admin/mail_add.php:48 ../admin/mail_list.php:88 76 74 msgid "Email address" 77 75 msgstr "Dirección de correo" 78 76 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 82 81 #, fuzzy 83 82 msgid "Account type" … … 85 84 86 85 #: ../admin/adm_add.php:102 87 #, fuzzy 88 msgid "Create the domain username."86 #, fuzzy, php-format 87 msgid "Create the domain <b>username.%s</b>" 89 88 msgstr "Crear la cuenta FTP." 90 89 … … 117 116 msgstr "" 118 117 119 #: ../admin/adm_defquotas.php:83 ../admin/adm_list.php:9 3118 #: ../admin/adm_defquotas.php:83 ../admin/adm_list.php:97 120 119 #: ../admin/quota_show_all.php:36 121 120 msgid "Quotas" … … 196 195 msgstr "" 197 196 198 #: ../admin/adm_doms.php:56 ../admin/adm_ slaveaccount.php:71199
