Changeset 2676
- Timestamp:
- 04/29/10 01:58:29 (3 years ago)
- Location:
- alternc/trunk/bureau
- Files:
-
- 15 edited
-
admin/bro_main.php (modified) (1 diff)
-
admin/dom_edit.php (modified) (2 diffs)
-
admin/dom_subedit.php (modified) (1 diff)
-
admin/ftp_add.php (modified) (2 diffs)
-
admin/ftp_doedit.php (modified) (1 diff)
-
admin/ftp_edit.php (modified) (1 diff)
-
admin/ftp_list.php (modified) (3 diffs)
-
admin/mail_add.php (modified) (3 diffs)
-
admin/mail_del.php (modified) (2 diffs)
-
admin/mail_doadd.php (modified) (1 diff)
-
admin/mail_doedit.php (modified) (1 diff)
-
admin/mail_edit.php (modified) (4 diffs)
-
admin/mail_list.php (modified) (3 diffs)
-
admin/styles/style.css (modified) (4 diffs)
-
locales/fr_FR/LC_MESSAGES/messages.po (modified) (14 diffs)
Legend:
- Unmodified
- Added
- Removed
-
alternc/trunk/bureau/admin/bro_main.php
r2670 r2676 552 552 553 553 if ($id=$ftp->is_ftp($R)) { 554 echo _("There is an ftp account in this folder")." <a href=\"ftp_edit.php?id=".urlencode($id)."\">"._("Click here to edit this ftp account.")."</a><br />"; 554 ?> 555 <span class="ina"> 556 <a href="ftp_edit.php?id=<?php ehe($id); ?>"><?php __("Edit the ftp account."); ?></a> 557 </span> <?php __("that exists in this folder"); ?> 558 <?php 555 559 } 556 560 else { 557 echo "<a href=\"ftp_add.php?dir=".urlencode($R)."\">"._("Click here to create an ftp account in this folder.")."</a><br />"; 561 ?> 562 <span class="ina"> 563 <a href="ftp_add.php?dir=<?php ehe($R); ?>"><?php __("Create an ftp account in this folder"); ?></a> 564 </span> 565 <?php 558 566 } 559 567 -
alternc/trunk/bureau/admin/dom_edit.php
r2670 r2676 129 129 <td> </td> 130 130 </tr> 131 <tr style="text-align: right">131 <tr class="trbtn"> 132 132 <td colspan="2"><input type="submit" class="inb" name="add" value="<?php __("Add this subdomain"); ?>" /></td> 133 133 </tr> … … 166 166 </td> 167 167 </tr> 168 <tr ><td colspan="2" align="center"><input type="submit" class="inb" name="submit" value="<?php __("Submit the changes"); ?>" /></td></tr>168 <tr class="trbtn"><td colspan="2"><input type="submit" class="inb" name="submit" value="<?php __("Submit the changes"); ?>" /></td></tr> 169 169 </table> 170 170 </form> -
alternc/trunk/bureau/admin/dom_subedit.php
r2665 r2676 89 89 <td> </td> 90 90 </tr> 91 <tr class="trbtn"> 92 <td colspan="2"> 93 <input type="submit" class="inb" name="submit" value="<?php __("Validate this change"); ?>" /> 94 <input type="button" class="inb" name="back" value="<?php __("Cancel"); ?>" onclick="history.back();" /> 95 </td> 96 </tr> 97 91 98 </table> 92 <br /> 93 <input type="submit" class="inb" name="submit" value="<?php __("Validate this change"); ?>" /> 94 <input type="button" class="inb" name="back" value="<?php __("Cancel"); ?>" onclick="history.back();" /> 99 95 100 </form> 96 101 <?php include_once("foot.php"); ?> -
alternc/trunk/bureau/admin/ftp_add.php
r2670 r2676 53 53 <select class="inl" name="prefixe"><?php $ftp->select_prefix_list($prefixe); ?></select> <b>_</b> <input type="text" class="int" name="login" id="login" value="<?php echo $login; ?>" size="20" maxlength="64" /> 54 54 </td></tr> 55 <tr><th><label for="pass"><?php __("Password"); ?></label></th><td><input type="password" class="int" name="pass" id="pass" value="<?php echo $pass; ?>" size="20" maxlength="64" /></td></tr>56 <tr><th><label for="passconf"><?php __("Confirm password"); ?></label></th><td><input type="password" class="int" name="passconf" id="passconf" value="<?php echo $passconf; ?>" size="20" maxlength="64" /></td></tr>57 55 <tr><th><label for="dir"><?php __("Folder"); ?></label></th><td><input type="text" class="int" name="dir" id="dir" value="<?php echo $dir; ?>" size="20" maxlength="255" /> 58 56 <script type="text/javascript"> 59 57 <!-- 60 document.write(" <input type=\"button\" name=\"bff\" onclick=\"browseforfolder('main.dir');\" value=\" ... \" class=\"inb\">");58 document.write(" <input type=\"button\" name=\"bff\" onclick=\"browseforfolder('main.dir');\" value=\" <?php __("Choose a folder..."); ?> \" class=\"bff\">"); 61 59 // --> 62 60 </script> 63 61 </td></tr> 64 <tr><td colspan="2"><input type="submit" class="inb" name="submit" value="<?php __("Create this new FTP account."); ?>" /></td></tr> 62 <tr><th><label for="pass"><?php __("Password"); ?></label></th><td><input type="password" class="int" name="pass" id="pass" value="<?php echo $pass; ?>" size="20" maxlength="64" /></td></tr> 63 <tr><th><label for="passconf"><?php __("Confirm password"); ?></label></th><td><input type="password" class="int" name="passconf" id="passconf" value="<?php echo $passconf; ?>" size="20" maxlength="64" /></td></tr> 64 <tr class="trbtn"><td colspan="2"> 65 <input type="submit" class="inb" name="submit" value="<?php __("Create this new FTP account."); ?>" /> 66 <input type="button" class="inb" name="cancel" value="<?php __("Cancel"); ?>" onclick="document.location='ftp_list.php'"/> 67 </td></tr> 65 68 </table> 66 69 </form> … … 68 71 <script type="text/javascript"> 69 72 document.forms['main'].login.focus(); 73 document.forms['main'].setAttribute('autocomplete', 'off'); 70 74 </script> 71 75 <?php include_once("foot.php"); ?> -
alternc/trunk/bureau/admin/ftp_doedit.php
r2559 r2676 39 39 } 40 40 41 $r=$ftp->put_ftp_details($id,$prefixe,$login,$pass,$ rep);41 $r=$ftp->put_ftp_details($id,$prefixe,$login,$pass,$dir); 42 42 if (!$r) { 43 43 $error=$err->errstr(); -
alternc/trunk/bureau/admin/ftp_edit.php
r2559 r2676 60 60 <select class="inl" name="prefixe"><?php $ftp->select_prefix_list($r["prefixe"]); ?></select> <b>_</b> <input type="text" class="int" name="login" id="login" value="<?php echo $r["login"]; ?>" size="20" maxlength="64" /> 61 61 </td></tr> 62 <tr><th><label for="pass"><?php __("Password"); ?></label></th><td><input type="password" class="int" name="pass" id="pass" size="20" maxlength="64" value="********"/></td></tr> 63 <tr><th><label for="passconf"><?php __("Confirm password"); ?></label></th><td><input type="password" class="int" name="passconf" id="passconf" size="20" maxlength="64" value="********"/></td></tr> 64 <tr><th><label for="rep"><?php __("Folder"); ?></label></th><td><input type="text" class="int" name="rep" id="rep" value="<?php echo $r["dir"]; ?>" size="20" maxlength="64" /> 62 <tr><th><label for="dir"><?php __("Folder"); ?></label></th><td><input type="text" class="int" name="dir" id="dir" value="<?php echo $r["dir"]; ?>" size="20" maxlength="64" /> 65 63 66 64 <script type="text/javascript"> 67 65 <!-- 68 document.write(" <input type=\"button\" name=\"bff\" onclick=\"browseforfolder('main. rep');\" value=\" ... \" class=\"inb\">");66 document.write(" <input type=\"button\" name=\"bff\" onclick=\"browseforfolder('main.dir');\" value=\" <?php __("Choose a folder..."); ?> \" class=\"bff\">"); 69 67 // --> 70 68 </script> 71 69 </td></tr> 70 <tr><th><label for="pass"><?php __("Password"); ?></label></th><td><input type="password" class="int" name="pass" id="pass" size="20" maxlength="64" value=""/></td></tr> 71 <tr><th><label for="passconf"><?php __("Confirm password"); ?></label></th><td><input type="password" class="int" name="passconf" id="passconf" size="20" maxlength="64" value=""/></td></tr> 72 72 73 <tr><td colspan="2"><input type="submit" class="inb" name="submit" value="<?php __("Change this FTP account"); ?>" /></td></tr> 73 <tr class="trbtn"><td colspan="2"> 74 <input type="submit" class="inb" name="submit" value="<?php __("Change this FTP account"); ?>" /> 75 <input type="button" class="inb" name="cancel" value="<?php __("Cancel"); ?>" onclick="document.location='ftp_list.php'"/> 76 </td></tr> 74 77 </table> 75 78 </form> 76 79 <script type="text/javascript"> 77 80 document.forms['main'].login.focus(); 81 document.forms['main'].setAttribute('autocomplete', 'off'); 78 82 </script> 79 83 <?php include_once("foot.php"); ?> -
alternc/trunk/bureau/admin/ftp_list.php
r2559 r2676 44 44 ?> 45 45 <h3><?php __("FTP accounts list"); ?></h3> 46 47 <?php 48 if ($error && !$noftp) { 49 ?> 50 <p class="error"><?php echo $error ?></p> 51 <?php } ?> 52 53 <?php if ($quota->cancreate("ftp")) { ?> 54 <p> 55 <span class="inb"><a href="ftp_add.php"><?php __("Create a new ftp account"); ?></a></span> 56 </p> 57 <?php } ?> 58 46 59 <?php 47 60 if ($noftp) { 48 61 ?> 49 <p class="error"><?php echo $error ?></p>50 <a href="ftp_add.php"><?php __("Create a new ftp account") ?></a><br />51 62 <?php $mem->show_help("ftp_list_no"); ?> 52 63 <?php 53 include_once("foot.php"); 54 exit(); 55 } 64 include_once("foot.php"); 65 } 66 ?> 56 67 57 if ($error) {58 ?>59 <p class="error"><?php echo $error ?></p>60 <?php } ?>61 68 <form method="post" action="ftp_del.php"> 62 <table c ellspacing="0" cellpadding="4">63 <tr><th colspan="2"> </th><th><?php __("Username"); ?></th><th><?php __("Folder"); ?></th></tr>69 <table class="tlist"> 70 <tr><th colspan="2"><?php __("Actions"); ?></th><th><?php __("Username"); ?></th><th><?php __("Folder"); ?></th></tr> 64 71 <?php 65 72 reset($r); … … 71 78 <tr class="lst<?php echo $col; ?>"> 72 79 <td align="center"><input type="checkbox" class="inc" id="del_<?php echo $val["id"]; ?>" name="del_<?php echo $val["id"]; ?>" value="<?php echo $val["id"]; ?>" /></td> 73 <td class="center"><a href="ftp_edit.php?id=<?php echo $val["id"] ?>"><img src="images/edit.png" alt="<?php __("Edit"); ?>" /></a></td> 80 <td><div class="ina"><a href="ftp_edit.php?id=<?php echo $val["id"] ?>"><img src="images/edit.png" alt="<?php __("Edit"); ?>" /><?php __("Edit"); ?></a></div></td> 81 74 82 <td><label for="del_<?php echo $val["id"]; ?>"><?php echo $val["login"] ?></label></td> 75 83 <td><code>/<?php echo $val["dir"] ?></code></td> … … 82 90 </form> 83 91 84 <?php if ($quota->cancreate("ftp")) { ?> 85 <p> 86 <a href="ftp_add.php"><?php __("Create a new ftp account"); ?></a> 87 </p> 88 <?php } 89 92 <?php 90 93 $mem->show_help("ftp_list"); 91 94 ?> -
alternc/trunk/bureau/admin/mail_add.php
r2670 r2676 35 35 "domain" => array ("request", "string", ""), 36 36 "many" => array ("request", "integer", 0), 37 "pop" => array ("request", "integer", 1), 37 38 ); 38 39 getFields($fields); 39 40 40 41 ?> 41 <h3><?php printf(_("Add a mail to the domain %s"), "http://$domain"); ?> : </h3>42 <h3><?php printf(_("Add a mail to the domain %s"),$domain); ?> : </h3> 42 43 <?php 43 44 if ($error) { … … 46 47 47 48 ?> 48 <form action="mail_doadd.php" name="main" id="main" method="post"> 49 <table border="1" cellspacing="0" cellpadding="4"> 50 <tr><td><input type="hidden" name="domain" value="<?php echo $domain ?>" /> 51 <label for="email"><?php __("Email address"); ?></label></td><td><input class="int" type="text" name="email" id="email" value="<?php echo $email ?>" size="20" maxlength="32" />@<?php echo $domain ?></td></tr> 52 <tr><td><label for="ispop"><?php __("Is it a POP/IMAP account?"); ?></label></td><td><input id="ispop" class="inc" type="checkbox" name="pop" value="1" <?php if ($pop=="1") echo "checked=\"checked\""; ?> /></td></tr> 53 <tr><td><label for="pass"><?php __("POP password"); ?></label></td><td><input class="int" type="password" name="pass" id="pass" value="<?php echo $pass; ?>" size="20" maxlength="32" /></td></tr> 54 <tr><td><label for="passconf"><?php __("Confirm password"); ?></label></td><td><input class="int" type="password" name="passconf" id="passconf" value="<?php echo $pass; ?>" size="20" maxlength="32" /></td></tr> 55 <tr><td><label for="alias"><?php __("Other recipients"); ?></label></td><td>(<?php __("One email per line"); ?>)<br /><textarea class="int" cols="32" rows="5" name="alias" id="alias"><?php echo $alias; ?></textarea></td></tr> 56 <tr><td colspan="2"><input type="hidden" name="many" value="<?php echo intval($many); ?>" /><input type="submit" class="inb" name="submit" value="<?php __("Create this mailbox"); ?>" /></td></tr> 49 50 <form action="mail_doadd.php" method="post" name="main" id="main"> 51 <input type="hidden" name="domain" value="<?php echo $domain; ?>" /> 52 <table class="tedit"> 53 <tr><td> 54 <label for="email"><?php __("Email address"); ?></label></td><td><input class="int" type="text" name="email" id="email" value="<?php ehe($email); ?>" size="20" maxlength="32" /><span class="int" id="emaildom">@ <?php echo $domain ?></span> 55 </td></tr> 56 <tr><td><label for="pop"><?php __("Is it a POP/IMAP account?"); ?></label></td> 57 <td> 58 <p> 59 <input type="radio" name="pop" id="pop0" class="inc" value="0"<?php checked($pop==0); ?> onclick="hide('poptbl');"><label for="pop0"><?php __("No"); ?></label> 60 <input type="radio" name="pop" id="pop1" class="inc" value="1"<?php checked($pop==1); ?> onclick="show('poptbl');"><label for="pop1"><?php __("Yes"); ?></label> 61 </p> 62 <div id="poptbl"> 63 <table class="tedit" > 64 <tr><td><label for="pass"><?php __("POP/IMAP password"); ?></label></td><td><input type="password" class="int" name="pass" id="pass" value="<?php ehe($pass); ?>" size="20" maxlength="32" /></td></tr> 65 <tr><td><label for="passconf"><?php __("Confirm password"); ?></label></td><td><input type="password" class="int" name="passconf" id="passconf" value="<?php echo $pass; ?>" size="20" maxlength="32" /></td></tr> 66 </table> 67 </div> 68 </td></tr> 69 70 <tr><td><label for="alias"><?php __("Redirections<br />Other recipients:"); ?></label></td><td>(<?php __("one email per line"); ?>)<br /><textarea class="int" cols="32" rows="5" name="alias" id="alias"><?php echo $alias; ?></textarea></td></tr> 71 <tr class="trbtn"><td colspan="2"> 72 <input type="hidden" name="many" value="<?php echo intval($many); ?>" /> 73 <input type="submit" class="inb" name="submit" value="<?php __("Create this email address"); ?>" /> 74 <input type="button" class="inb" name="cancel" value="<?php __("Cancel"); ?>" onclick="document.location='mail_list.php?domain=<?php echo urlencode($domain); ?>'"/> 75 </td></tr> 57 76 </table> 58 77 </form> 78 59 79 <p><small> 60 80 <?php __("help_mail_add"); ?> … … 62 82 <script type="text/javascript"> 63 83 document.forms['main'].email.focus(); 84 document.forms['main'].setAttribute('autocomplete', 'off'); 64 85 </script> 65 86 <?php include_once("foot.php"); -
alternc/trunk/bureau/admin/mail_del.php
r2675 r2676 49 49 while (list($key,$val)=each($d)) { 50 50 if (!$mail->del_mail($val)) { 51 $error.=sprintf(_("The mailbox<b>%s</b> does not exist!")."<br />",$val);51 $error.=sprintf(_("The email address <b>%s</b> does not exist!")."<br />",$val); 52 52 } else { 53 $error.=sprintf(_("The mailbox<b>%s</b> has been deleted!")."<br />",$val);53 $error.=sprintf(_("The email address <b>%s</b> has been deleted!")."<br />",$val); 54 54 } 55 55 } … … 77 77 ?> 78 78 </p> 79 <p><input type="submit" class="inb" name="submit" value="<?php __("Delete the selected mailboxes"); ?>" /> - <input type="button" name="cancel" id="cancel" onclick="window.history.go(-1);" class="inb" value="<?php __("Don't delete accounts and go back to the mail list"); ?>"/> 79 <p> 80 <input type="submit" class="inb" name="submit" value="<?php __("Confirm the deletion"); ?>" /> - <input type="button" name="cancel" id="cancel" onclick="window.history.go(-1);" class="inb" value="<?php __("Don't delete anything and go back to the email list"); ?>"/> 80 81 </p> 81 82 82 <p >83 <p class="warningmsg"> 83 84 <?php __("Warning: Deleting an email address will destroy all the messages it contains! You will <b>NOT</b> be able to get it back!"); ?> 84 85 </p> -
alternc/trunk/bureau/admin/mail_doadd.php
r2559 r2676 42 42 } else { 43 43 $addok=1; 44 $error=sprintf (_("The mailbox<b>%s</b> has been successfully created"),"$email@$domain");44 $error=sprintf (_("The email address <b>%s</b> has been successfully created"),"$email@$domain"); 45 45 if ($many) { 46 46 unset($email,$pass,$alias); -
alternc/trunk/bureau/admin/mail_doedit.php
r798 r2676 44 44 45 45 } else { 46 $ok=sprintf(_("The mailbox<b>%s</b> has been successfully changed"),$email)."<br />";46 $ok=sprintf(_("The email address <b>%s</b> has been successfully changed"),$email)."<br />"; 47 47 $addok=1; 48 48 $t=explode("@",$email); -
alternc/trunk/bureau/admin/mail_edit.php
r2675 r2676 46 46 47 47 ?> 48 <h3><?php printf(_("Edit an email address of the domain %s"), "http://$domain"); ?> : </h3>48 <h3><?php printf(_("Edit an email address of the domain %s"),$domain); ?> : </h3> 49 49 <?php 50 50 if ($error_edit) { … … 63 63 <input type="hidden" name="domain" value="<?php echo $domain; ?>" /> 64 64 <?php printf(_("Edit the email address <b>%s</b>"),$email); ?></th></tr> 65 <tr><td><label for=" ispop"><?php __("Is it a POP/IMAP account?"); ?></label></td>65 <tr><td><label for="pop"><?php __("Is it a POP/IMAP account?"); ?></label></td> 66 66 <td> 67 67 <p> 68 <input type="radio" name=" ispop" id="ispop0" class="inc" value="0"<?php checked($pop==0); ?> onclick="hide('ispoptbl');"><label for="ispop0"><?php __("No"); ?></label>69 <input type="radio" name=" ispop" id="ispop1" class="inc" value="1"<?php checked($pop==1); ?> onclick="show('ispoptbl');"><label for="ispop1"><?php __("Yes"); ?></label>68 <input type="radio" name="pop" id="pop0" class="inc" value="0"<?php checked($pop==0); ?> onclick="hide('poptbl');"><label for="pop0"><?php __("No"); ?></label> 69 <input type="radio" name="pop" id="pop1" class="inc" value="1"<?php checked($pop==1); ?> onclick="show('poptbl');"><label for="pop1"><?php __("Yes"); ?></label> 70 70 </p> 71 <div id=" ispoptbl">71 <div id="poptbl"> 72 72 <table class="tedit" > 73 73 <tr><td><label for="pass"><?php __("POP/IMAP password"); ?></label></td><td><input type="password" class="int" name="pass" id="pass" value="<?php ehe($pass); ?>" size="20" maxlength="32" /></td></tr> … … 75 75 </table> 76 76 </div> 77 <?php if ($pop) { echo "<br />"; __("WARNING: turning POP/IMAP off will DELETE the stored messages in this email address. This email address will become a simple redirection."); }?> 78 77 <br /> 78 <?php if ($pop==1) { 79 echo "<div class=\"warningmsg\">"._("WARNING: turning POP/IMAP off will DELETE the stored messages in this email address. This email address will become a simple redirection.")."</div>"; 80 } ?> 79 81 </td></tr> 80 82 81 83 <tr><td><label for="alias"><?php __("Redirections<br />Other recipients:"); ?></label></td><td>(<?php __("one email per line"); ?>)<br /><textarea class="int" cols="32" rows="5" name="alias" id="alias"><?php echo $alias; ?></textarea></td></tr> 84 <tr class="trbtn"><td colspan="2"> 85 <input type="submit" class="inb" name="submit" value="<?php __("Change this email address"); ?>" /> 86 <input type="button" class="inb" name="cancel" value="<?php __("Cancel"); ?>" onclick="document.location='mail_list.php?domain=<?php echo urlencode($domain); ?>'"/> 87 </td></tr> 82 88 </table> 83 <br />84 <input type="submit" class="inb" name="submit" value="<?php __("Change this mailbox"); ?>" />85 <input type="button" class="inb" name="cancel" value="<?php __("Cancel"); ?>" onclick="document.location='mail_list.php?domain=<?php echo urlencode($domain); ?>'"/>86 89 </form> 90 87 91 <p><small> 88 92 <?php __("help_mail_edit"); ?> … … 93 97 <script type="text/javascript"> 94 98 document.forms['main'].email.focus(); 99 <?php if ($pop==0) { ?> 100 hide('poptbl'); 101 <?php } ?> 102 document.forms['main'].setAttribute('autocomplete', 'off'); 95 103 </script> 96 104 <?php include_once("foot.php"); ?> -
alternc/trunk/bureau/admin/mail_list.php
r2670 r2676 47 47 $error=$err->errstr(); 48 48 ?> 49 <h3><?php printf(_(" Mailbox list of the domain %s"),"http://$domain"); ?> : </h3>49 <h3><?php printf(_("Email addresses of the domain %s"),$domain); ?> : </h3> 50 50 <?php 51 51 if ($error) { … … 63 63 64 64 ?> 65 <h3><?php printf(_(" Mailbox list of the domain %s"),"http://$domain"); ?> : </h3>65 <h3><?php printf(_("Email addresses of the domain %s"),$domain); ?> : </h3> 66 66 <?php 67 67 if ($error) { … … 120 120 </table> 121 121 <br /> 122 <input type="submit" class="inb" name="submit" value="<?php __("Delete the selected mailboxes"); ?>" />122 <input type="submit" class="inb" name="submit" value="<?php __("Delete the checked email addresses"); ?>" /> 123 123 </form> 124 124 -
alternc/trunk/bureau/admin/styles/style.css
r2670 r2676 57 57 } 58 58 59 .trbtn { 60 text-align: right; 61 } 62 59 63 h4 { 60 64 font-family: Verdana, Arial, Helvetica, sans-serif; … … 84 88 border-style: none; 85 89 color: black; 90 background: white; 86 91 } 87 92 … … 370 375 } 371 376 377 input#email { 378 border-right: 0; 379 padding-right: 0; 380 text-align: right; 381 } 382 span#emaildom { 383 border-left: 0; 384 padding-left: 2px; 385 } 386 372 387 .tedit { 373 388 border: 1px solid #aaa; … … 397 412 width: 200px; 398 413 } 414 415 .warningmsg { 416 width: 500px; 417 } -
alternc/trunk/bureau/locales/fr_FR/LC_MESSAGES/messages.po
r2675 r2676 1148 1148 msgstr "" 1149 1149 "Si vous voulez détruire le domaine %s, cliquez sur le bouton ci-dessous. " 1150 "Attention, cela supprime aussi tous les comptes ftp, email,listes de "1151 "diffusion s etc. associés à ce domaine et à tous ses sous-domaines !"1150 "Attention, cela supprime aussi tous les comptes ftp, les adresses email, les listes de " 1151 "diffusion etc... associés à ce domaine et à tous ses sous-domaines !" 1152 1152 1153 1153 #: ../admin/dom_edit.php:170 ../admin/dom_edit.php:172 … … 1372 1372 #: ../admin/mail_edit.php:68 1373 1373 msgid "one email per line" 1374 msgstr "un email par ligne"1374 msgstr "une adresse email par ligne" 1375 1375 1376 1376 #: ../admin/mail_add.php:53 ../admin/mail_add.php:56 1377 msgid "Create this mailbox"1378 msgstr "Ajouter cet email"1377 msgid "Create this email address" 1378 msgstr "Ajouter cette adresse email" 1379 1379 1380 1380 #: ../admin/mail_add.php:57 ../admin/mail_add.php:60 1381 1381 msgid "help_mail_add" 1382 1382 msgstr "" 1383 "- Pour créer cet email<br /> * Si vous voulez stocker les emails recus et y "1383 "- Pour créer cette adresse email<br /> * Si vous voulez stocker les messages reçus et y " 1384 1384 "accéder avec un logiciel de messagerie ou le webmail, cochez la case 'Compte " 1385 1385 "pop'. Dans ce cas, entrez un mot de passe pour le compte pop.<br /> * Si " … … 1396 1396 #: ../admin/mail_del.php:63 1397 1397 msgid "Deleting mail accounts" 1398 msgstr " Effacement des comptes email"1398 msgstr "Suppression des adresses email" 1399 1399 1400 1400 #: ../admin/mail_del.php:43 ../admin/mail_del.php:64 1401 1401 msgid "Please confirm the deletion of the following mail accounts:" 1402 msgstr "Confirmez la suppression des comptes emails suivants :"1402 msgstr "Confirmez la suppression des adresses email suivantes :" 1403 1403 1404 1404 #: ../admin/mail_del.php:57 ../admin/mail_list.php:107 1405 1405 #: ../admin/mail_del.php:79 1406 msgid "Delete the selected mailboxes" 1407 msgstr "Effacer les mails sélectionnés" 1406 msgid "Confirm the deletion" 1407 msgstr "Confirmer la suppression" 1408 1409 msgid "Delete the checked email addresses" 1410 msgstr "Supprimer les adresses email cochées" 1408 1411 1409 1412 #: ../admin/mail_del.php:57 ../admin/mail_del.php:79 1410 msgid "Don't delete a ccounts and go back to themail list"1411 msgstr "Ne rien effacer, retourner à la liste des emails"1413 msgid "Don't delete anything and go back to the email list" 1414 msgstr "Ne rien supprimer, revenir à la liste des adresses email" 1412 1415 1413 1416 #: ../admin/mail_doadd.php:44 1414 1417 #, php-format 1415 msgid "The mailbox<b>%s</b> has been successfully created"1416 msgstr "L email <b>%s</b> a été ajouté avec succès"1418 msgid "The email address <b>%s</b> has been successfully created" 1419 msgstr "L'adresse email <b>%s</b> a été ajouté avec succès" 1417 1420 1418 1421 #: ../admin/mail_dodel.php:48 ../admin/mail_del.php:51 1419 1422 #: ../admin/mail_dodel.php:40 1420 1423 #, php-format 1421 msgid "The mailbox<b>%s</b> does not exist!"1422 msgstr "L email <b>%s</b> n'existe pas"1424 msgid "The email address <b>%s</b> does not exist!" 1425 msgstr "L'adresse email <b>%s</b> n'existe pas" 1423 1426 1424 1427 #: ../admin/mail_dodel.php:51 ../admin/mail_del.php:53 1425 1428 #: ../admin/mail_dodel.php:43 1426 1429 #, php-format 1427 msgid "The mailbox<b>%s</b> has been deleted!"1428 msgstr "L a boîte aux lettres <b>%s</b> a été effacée !"1430 msgid "The email address <b>%s</b> has been deleted!" 1431 msgstr "L'adresse email <b>%s</b> a été supprimée !" 1429 1432 1430 1433 #: ../admin/mail_dodel.php:60 1431 msgid "Back to the mail accountlist"1432 msgstr "Retour à la liste des emails"1434 msgid "Back to the email address list" 1435 msgstr "Retour à la liste des adresses email" 1433 1436 1434 1437 #: ../admin/mail_doedit.php:46 1435 1438 #, php-format 1436 msgid "The mailbox<b>%s</b> has been successfully changed"1437 msgstr "L e mail <b>%s</b> a été modifiéavec succès"1439 msgid "The email address <b>%s</b> has been successfully changed" 1440 msgstr "L'adresse email <b>%s</b> a été modifiée avec succès" 1438 1441 1439 1442 #: ../admin/mail_edit.php:41 ../admin/mail_edit.php:48 … … 1478 1481 #, php-format 1479 1482 msgid "Add a mailbox on <b>%s</b>" 1480 msgstr "Ajouter un email sur <b>%s</b>"1483 msgstr "Ajouter une adresse email sur <b>%s</b>" 1481 1484 1482 1485 #: ../admin/mail_list.php:48 ../admin/mail_list.php:67 … … 1484 1487 #, php-format 1485 1488 msgid "Add many mailboxes on <b>%s</b>" 1486 msgstr "Ajouter plusieurs emailssur <b>%s</b>"1489 msgstr "Ajouter plusieurs adresses email sur <b>%s</b>" 1487 1490 1488 1491 #: ../admin/mail_list.php:76 ../admin/mail_list.php:78 … … 1536 1539 #: ../admin/mem_cm.php:46 ../admin/mem_param.php:74 1537 1540 msgid "Change the email of the account" 1538 msgstr "Changement d' Email du compte"1541 msgstr "Changement d'adresse email du compte AlternC" 1539 1542 1540 1543 #: ../admin/mem_chgmail.php:46 ../admin/mem_chgmail.php:51 … … 1542 1545 msgid "help_mem_chgmail %s" 1543 1546 msgstr "" 1544 "Un e maila été envoyé à l'adresse <big><code>%s</code></big> pour "1545 "confirmation.<br /> Ce t emailcontient un lien où vous devrez vous rendre "1547 "Un essage a été envoyé à l'adresse <big><code>%s</code></big> pour " 1548 "confirmation.<br /> Ce message contient un lien où vous devrez vous rendre " 1546 1549 "pour valider la modification.<br /> A cette adresse, la clé suivante vous " 1547 1550 "sera demandée : <br /> " … … 1557 1560 msgstr "" 1558 1561 "Entrez la clé qui vous a été donnée lors de la demande de changement " 1559 "d' email, puis cliquez sur OK"1562 "d'adresse email, puis cliquez sur OK" 1560 1563 1561 1564 #: ../admin/mem_cm.php:49 ../admin/mem_cm.php:48 … … 1619 1622 msgid "help_chg_mail" 1620 1623 msgstr "" 1621 "Vous pouvez modifier ici l' email d'inscription correspondant à votre compte."1622 "<br />Entrez ici l e nouvel email. Un message est envoyé sur cet emailpour "1624 "Vous pouvez modifier ici l'adresse email d'inscription correspondant à votre compte AlternC." 1625 "<br />Entrez ici la nouvelle adresse email. Un message est envoyé à cette adresse pour " 1623 1626 "confirmation." 1624 1627 … … 1626 1629 #: ../admin/mem_param.php:76 1627 1630 msgid "Current mailbox" 1628 msgstr " Email actuel"1631 msgstr "Adresse email actuelle" 1629 1632 1630 1633 #: ../admin/mem_param.php:78 ../admin/mem_param.php:75 1631 1634 #: ../admin/mem_param.php:77 1632 1635 msgid "New mailbox" 1633 msgstr "Nouvel Email"1636 msgstr "Nouvelle adresse email" 1634 1637 1635 1638 #: ../admin/mem_param.php:79 ../admin/mem_param.php:76 … … 2519 2522 #: ../admin/menu_adm.php:38 2520 2523 msgid "AlternC configuration" 2521 msgstr " "2524 msgstr "Configuration d'AlternC" 2522 2525 2523 2526 #: ../admin/menu_brouteur.php:33 … … 2613 2616 "will <b>NOT</b> be able to get it back!" 2614 2617 msgstr "" 2615 "Attention: L 'effacementd'une adresse email détruit tous ses messages ! "2618 "Attention: La suppression d'une adresse email détruit tous ses messages ! " 2616 2619 "Vous ne pourrez <b>PLUS</b> retrouver les messages ainsi effacés !" 2617 2620 … … 2788 2791 2789 2792 msgid "Show only mail starting by:" 2790 msgstr " N'afficher que les mails commençant par :"2793 msgstr "Afficher seulement les adresses mails commençant par :" 2791 2794 2792 2795 … … 2813 2816 msgstr "Redirections/Autres destinataires :" 2814 2817 2818 msgid "Path" 2819 msgstr "Répertoire courant" 2820
Note: See TracChangeset
for help on using the changeset viewer.
