Changeset 2717
- Timestamp:
- 06/02/10 20:33:50 (3 years ago)
- Location:
- alternc-mailman/trunk/bureau
- Files:
-
- 5 edited
-
admin/mman_add.php (modified) (1 diff)
-
admin/mman_dodel.php (modified) (1 diff)
-
admin/mman_list.php (modified) (3 diffs)
-
locales/fr_FR/LC_MESSAGES/mailman.po (modified) (1 diff)
-
locales/fr_FR/LC_MESSAGES/mailman_manual.po (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
alternc-mailman/trunk/bureau/admin/mman_add.php
r2714 r2717 42 42 if ($error) { 43 43 echo "<p class=\"error\">$error</p>"; 44 include_once("foot.php");45 exit();46 44 } 47 45 ?> 48 46 <form method="post" action="mman_doadd.php" name="main" id="main" > 49 47 <input type="hidden" name="id" value="<?php echo $id ?>" /> 50 <table >51 <tr><th><label for="login"><?php __(" Email address"); ?></label></th><td>48 <table class="tedit"> 49 <tr><th><label for="login"><?php __("List's email address"); ?></label></th><td> 52 50 <input type="text" class="int" id="login" name="login" value="<?php ehe($login); ?>" size="20" maxlength="64" /><b> @ </b><select class="inl" name="domain"><?php $mailman->select_prefix_list($domain); ?></select> 53 51 </td></tr> 54 <tr><th><label for="owner"><?php __("Owner"); ?> *</label></th><td>55 Email :<input type="text" class="int" id="owner" name="owner" value="<?php ehe($owner); ?>" size="20" maxlength="64" />52 <tr><th><label for="owner"><?php __("Email of the list's administrator"); ?> </label></th><td> 53 <input type="text" class="int" id="owner" name="owner" value="<?php ehe($owner); ?>" size="20" maxlength="64" /> 56 54 </td></tr> 57 <tr><th><label for="pass"><?php __(" Initial list password"); ?> </label></th><td>55 <tr><th><label for="pass"><?php __("List password"); ?> </label></th><td> 58 56 <input type="password" class="int" id="pass" name="pass" value="<?php ehe($pass); ?>" size="20" maxlength="64" /> 59 57 </td></tr> 60 <tr><th><label for="pass"><?php __(" Initial list password (confirm)"); ?> </label></th><td>58 <tr><th><label for="pass"><?php __("List password (confirm)"); ?> </label></th><td> 61 59 <input type="password" class="int" id="pass2" name="pass2" value="<?php ehe($pass); ?>" size="20" maxlength="64" /> 62 60 </td></tr> 63 61 <tr><td colspan="2"> 64 62 <input type="submit" class="inb" name="submit" value="<?php __("Create the list."); ?>"/> 63 <input type="button" class="inb" name="cancel" value="<?php __("Cancel"); ?>" onclick="document.location='mman_list.php'"/> 65 64 </td></tr> 66 65 </table> -
alternc-mailman/trunk/bureau/admin/mman_dodel.php
r2714 r2717 31 31 32 32 $fields = array ( 33 "confirm" => array ("request", " integer", ""),34 "cancel" => array ("request", " integer", ""),35 "d" => array ("request", "array", ""),33 "confirm" => array ("request", "string", ""), 34 "cancel" => array ("request", "string", ""), 35 "d" => array ("request", "array", array()), 36 36 ); 37 37 getFields($fields); -
alternc-mailman/trunk/bureau/admin/mman_list.php
r2714 r2717 30 30 require_once("../class/config.php"); 31 31 include_once("head.php"); 32 ?> 33 <h3><?php __("Mailing lists"); ?></h3> 32 34 35 <?php 33 36 // If there is no installed domain, let's failed definitely ! 34 37 if (count($dom->enum_domains())==0) { 35 38 $error=_("No domain is installed on your account, you cannot create any mailing list!"); 36 39 ?> 37 <h3><?php __("Mailing lists"); ?></h3>38 40 <hr id="topbar"/> 39 41 <br /> 40 42 <?php echo "<p class=\"error\">$error</p>"; ?> 41 43 <?php include_once("foot.php"); 42 43 exit(); 44 exit(); 44 45 } 45 46 … … 47 48 $error.=$err->errstr(); 48 49 ?> 49 <h3><?php __("Mailing lists"); ?></h3>50 50 <hr id="topbar"/> 51 51 <br /> 52 52 <?php echo "<p class=\"error\">$error</p>"; ?> 53 <?php 54 if ($quota->cancreate("mailman")) { 55 ?> 56 <p> 57 <span class="inb"><a href="mman_add.php"><?php __("Create a list"); ?></a></span> 58 </p> 59 <?php 60 } 61 ?> 53 62 54 63 <?php 55 } 56 else { 64 } else { 57 65 ?> 58 <h3><?php __("Mailing lists"); ?></h3>59 66 <hr id="topbar"/> 60 67 <br /> 61 62 68 <?php if ($error) echo "<p class=\"error\">$error</p>"; ?> 63 69 70 <?php 71 if ($quota->cancreate("mailman")) { 72 ?> 73 <p> 74 <span class="inb"><a href="mman_add.php"><?php __("Create a list"); ?></a></span> 75 </p> 76 <?php 77 } 78 ?> 79 80 64 81 <form method="post" action="mman_del.php"> 65 <table c ellspacing="0" cellpadding="4" border="1">82 <table class="tlist"> 66 83 <tr><th><?php __("Delete"); ?></th><th><?php __("List name"); ?></th><th colspan="4"> </th></tr> 67 84 <?php … … 74 91 <td align="center"><input type="checkbox" class="inc" name="d[]" value="<?php echo $val["id"]; ?>" id="d_<?php echo $val["id"]; ?>" /></td> 75 92 <td><label for="d_<?php echo $val["id"]; ?>"><?php echo $val["list"]."@".$val["domain"] ?></label></td> 76 <td> <a href="https://<?php echo $val["domain"]; ?>/cgi-bin/mailman/listinfo/<?php echo $val["name"] ?>"><?php __("Public page"); ?></a> </td>77 <td> <a href="https://<?php echo $val["domain"]; ?>/cgi-bin/mailman/admin/<?php echo $val["name"] ?>"><?php __("List admin"); ?></a> </td>78 <td> <a href="https://<?php echo $val["domain"]; ?>/cgi-bin/mailman/admindb/<?php echo $val["name"] ?>"><?php __("Pending messages"); ?></a> </td>79 <td> <a href="mman_passwd.php?id=<?php echo $val["id"] ?>"><?php __("Change password"); ?></a> </td>80 <td> <a href="mman_members.php?id=<?php echo $val["id"] ?>"><?php __("List Members"); ?></a> </td>93 <td><div class="ina"><a href="https://<?php echo $val["domain"]; ?>/cgi-bin/mailman/listinfo/<?php echo $val["name"] ?>"><?php __("Public page"); ?></a></div></td> 94 <td><div class="ina"><a href="https://<?php echo $val["domain"]; ?>/cgi-bin/mailman/admin/<?php echo $val["name"] ?>"><?php __("List admin"); ?></a></div></td> 95 <td><div class="ina"><a href="https://<?php echo $val["domain"]; ?>/cgi-bin/mailman/admindb/<?php echo $val["name"] ?>"><?php __("Pending messages"); ?></a></div></td> 96 <td><div class="ina"><a href="mman_passwd.php?id=<?php echo $val["id"] ?>"><?php __("Change password"); ?></a></div></td> 97 <td><div class="ina"><a href="mman_members.php?id=<?php echo $val["id"] ?>"><?php __("List Members"); ?></a></div></td> 81 98 </tr> 82 99 <?php 83 100 } 84 101 ?> 85 <tr><td colspan="6" align="center"><input type="submit" class="inb" name="submit" value="<?php __("Delete the checked lists"); ?>" /></td></tr>86 102 </table> 87 </form> 103 <br /> 104 <input type="submit" class="inb" name="submit" value="<?php __("Delete the checked lists"); ?>" /> 105 </form> 88 106 89 107 <?php 90 }108 } 91 109 92 if ($quota->cancreate("mailman")) {93 ?>94 <span class="ina"><a href="mman_add.php"><?php __("Create a list"); ?></a></span><br />95 <?php96 }97 110 ?> 98 111 -
alternc-mailman/trunk/bureau/locales/fr_FR/LC_MESSAGES/mailman.po
r2714 r2717 25 25 26 26 #: admin/mman_add.php:49 27 msgid " Email address"28 msgstr "Adresse email "27 msgid "List's email address" 28 msgstr "Adresse email de la liste" 29 29 30 30 #: admin/mman_add.php:52 31 msgid " Owner"32 msgstr " Propriétaire"31 msgid "Email of the list's administrator" 32 msgstr "Adresse email de l'administrateur de la liste" 33 33 34 34 #: admin/mman_add.php:55 35 msgid " Initial list password"36 msgstr "Mot de passe initial"35 msgid "List password" 36 msgstr "Mot de passe de la liste" 37 37 38 38 #: admin/mman_add.php:55 39 msgid " Initial list password (confirm)"40 msgstr "Mot de passe initial(confirmation)"39 msgid "List password (confirm)" 40 msgstr "Mot de passe de la liste (confirmation)" 41 41 42 42 #: admin/mman_add.php:59 -
alternc-mailman/trunk/bureau/locales/fr_FR/LC_MESSAGES/mailman_manual.po
r2714 r2717 23 23 24 24 msgid "err_mailman_3" 25 msgstr "Le mail d u propriétaire,et le mot de passe de la liste sont obligatoires"25 msgstr "Le mail de l'administrateur de la liste et le mot de passe de la liste sont obligatoires" 26 26 27 27 msgid "err_mailman_4" … … 44 44 45 45 msgid "err_mailman_10" 46 msgstr "Une liste du même nom existe deja. Choisissezun autre nom."46 msgstr "Une liste du même nom (partie gauche de l'@) existe deja sur ce serveur. Vous devez choisir un autre nom." 47 47 48 48 msgid "err_mailman_11"
Note: See TracChangeset
for help on using the changeset viewer.
