Changeset 2676


Ignore:
Timestamp:
04/29/10 01:58:29 (3 years ago)
Author:
benjamin
Message:

suite ergo, ftp, dom, browser & co + traductions, stylisation propre, suite

Location:
alternc/trunk/bureau
Files:
15 edited

Legend:

Unmodified
Added
Removed
  • alternc/trunk/bureau/admin/bro_main.php

    r2670 r2676  
    552552 
    553553     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> &nbsp; <?php __("that exists in this folder"); ?> 
     558<?php 
    555559} 
    556560else { 
    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> &nbsp; 
     565<?php 
    558566} 
    559567 
  • alternc/trunk/bureau/admin/dom_edit.php

    r2670 r2676  
    129129                        <td>&nbsp;</td> 
    130130                </tr> 
    131                 <tr style="text-align: right"> 
     131                <tr class="trbtn"> 
    132132                        <td colspan="2"><input type="submit" class="inb" name="add" value="<?php __("Add this subdomain"); ?>" /></td> 
    133133                </tr> 
     
    166166        </td> 
    167167</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> 
    169169</table> 
    170170        </form> 
  • alternc/trunk/bureau/admin/dom_subedit.php

    r2665 r2676  
    8989                <td>&nbsp;</td> 
    9090        </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 
    9198        </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 
    95100</form> 
    96101<?php include_once("foot.php"); ?> 
  • alternc/trunk/bureau/admin/ftp_add.php

    r2670 r2676  
    5353        <select class="inl" name="prefixe"><?php $ftp->select_prefix_list($prefixe); ?></select>&nbsp;<b>_</b>&nbsp;<input type="text" class="int" name="login" id="login" value="<?php echo $login; ?>" size="20" maxlength="64" /> 
    5454</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> 
    5755<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" /> 
    5856<script type="text/javascript"> 
    5957<!-- 
    60   document.write("&nbsp;<input type=\"button\" name=\"bff\" onclick=\"browseforfolder('main.dir');\" value=\" ... \" class=\"inb\">"); 
     58  document.write("&nbsp;<input type=\"button\" name=\"bff\" onclick=\"browseforfolder('main.dir');\" value=\" <?php __("Choose a folder..."); ?> \" class=\"bff\">"); 
    6159//  --> 
    6260</script> 
    6361</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> 
    6568</table> 
    6669</form> 
     
    6871<script type="text/javascript"> 
    6972document.forms['main'].login.focus(); 
     73document.forms['main'].setAttribute('autocomplete', 'off'); 
    7074</script> 
    7175<?php include_once("foot.php"); ?> 
  • alternc/trunk/bureau/admin/ftp_doedit.php

    r2559 r2676  
    3939        } 
    4040 
    41         $r=$ftp->put_ftp_details($id,$prefixe,$login,$pass,$rep); 
     41        $r=$ftp->put_ftp_details($id,$prefixe,$login,$pass,$dir); 
    4242        if (!$r) { 
    4343                $error=$err->errstr(); 
  • alternc/trunk/bureau/admin/ftp_edit.php

    r2559 r2676  
    6060        <select class="inl" name="prefixe"><?php $ftp->select_prefix_list($r["prefixe"]); ?></select>&nbsp;<b>_</b>&nbsp;<input type="text" class="int" name="login" id="login" value="<?php echo $r["login"]; ?>" size="20" maxlength="64" /> 
    6161</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" /> 
    6563 
    6664<script type="text/javascript"> 
    6765<!-- 
    68   document.write("&nbsp;<input type=\"button\" name=\"bff\" onclick=\"browseforfolder('main.rep');\" value=\" ... \" class=\"inb\">"); 
     66  document.write("&nbsp;<input type=\"button\" name=\"bff\" onclick=\"browseforfolder('main.dir');\" value=\" <?php __("Choose a folder..."); ?> \" class=\"bff\">"); 
    6967//  --> 
    7068</script> 
    7169</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> 
    7272 
    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> 
    7477</table> 
    7578</form> 
    7679<script type="text/javascript"> 
    7780document.forms['main'].login.focus(); 
     81document.forms['main'].setAttribute('autocomplete', 'off');  
    7882</script> 
    7983<?php include_once("foot.php"); ?> 
  • alternc/trunk/bureau/admin/ftp_list.php

    r2559 r2676  
    4444?> 
    4545<h3><?php __("FTP accounts list"); ?></h3> 
     46  
     47<?php 
     48if ($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 
    4659<?php 
    4760        if ($noftp) { 
    4861?> 
    49         <p class="error"><?php echo $error ?></p> 
    50         <a href="ftp_add.php"><?php __("Create a new ftp account") ?></a><br /> 
    5162        <?php $mem->show_help("ftp_list_no"); ?> 
    5263<?php 
    53                 include_once("foot.php"); 
    54                 exit(); 
    55         } 
     64 include_once("foot.php");  
     65    }  
     66?> 
    5667 
    57 if ($error) { 
    58 ?> 
    59 <p class="error"><?php echo $error ?></p> 
    60 <?php } ?> 
    6168<form method="post" action="ftp_del.php"> 
    62 <table cellspacing="0" cellpadding="4"> 
    63 <tr><th colspan="2">&nbsp;</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> 
    6471<?php 
    6572reset($r); 
     
    7178        <tr class="lst<?php echo $col; ?>"> 
    7279                <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 
    7482                <td><label for="del_<?php echo $val["id"]; ?>"><?php echo $val["login"] ?></label></td> 
    7583                <td><code>/<?php echo $val["dir"] ?></code></td> 
     
    8290</form> 
    8391 
    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 
    9093$mem->show_help("ftp_list"); 
    9194?> 
  • alternc/trunk/bureau/admin/mail_add.php

    r2670 r2676  
    3535        "domain"    => array ("request", "string", ""), 
    3636        "many"      => array ("request", "integer", 0), 
     37        "pop"     => array ("request", "integer", 1), 
    3738); 
    3839getFields($fields); 
    3940 
    4041?> 
    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> 
    4243<?php 
    4344if ($error) { 
     
    4647 
    4748?> 
    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> 
    5776</table> 
    5877</form> 
     78 
    5979<p><small> 
    6080<?php __("help_mail_add"); ?> 
     
    6282<script type="text/javascript"> 
    6383document.forms['main'].email.focus(); 
     84document.forms['main'].setAttribute('autocomplete', 'off'); 
    6485</script> 
    6586<?php include_once("foot.php"); 
  • alternc/trunk/bureau/admin/mail_del.php

    r2675 r2676  
    4949while (list($key,$val)=each($d)) { 
    5050        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); 
    5252        } 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);  
    5454        } 
    5555} 
     
    7777?> 
    7878</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"); ?>"/> 
    8081</p> 
    8182 
    82 <p> 
     83<p class="warningmsg"> 
    8384<?php __("Warning: Deleting an email address will destroy all the messages it contains! You will <b>NOT</b> be able to get it back!"); ?> 
    8485</p> 
  • alternc/trunk/bureau/admin/mail_doadd.php

    r2559 r2676  
    4242} else { 
    4343        $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"); 
    4545        if ($many) { 
    4646                unset($email,$pass,$alias); 
  • alternc/trunk/bureau/admin/mail_doedit.php

    r798 r2676  
    4444 
    4545} 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 />"; 
    4747            $addok=1; 
    4848            $t=explode("@",$email); 
  • alternc/trunk/bureau/admin/mail_edit.php

    r2675 r2676  
    4646 
    4747?> 
    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> 
    4949<?php 
    5050if ($error_edit) { 
     
    6363<input type="hidden" name="domain" value="<?php echo $domain; ?>" /> 
    6464<?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> 
    6666<td> 
    6767<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> 
    7070</p> 
    71 <div id="ispoptbl"> 
     71<div id="poptbl"> 
    7272<table class="tedit" > 
    7373        <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> 
     
    7575</table> 
    7676</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) {  
     79echo "<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} ?> 
    7981</td></tr> 
    8082 
    8183    <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> 
    8288</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); ?>'"/> 
    8689</form> 
     90 
    8791<p><small> 
    8892<?php __("help_mail_edit"); ?> 
     
    9397<script type="text/javascript"> 
    9498document.forms['main'].email.focus(); 
     99<?php if ($pop==0) { ?> 
     100  hide('poptbl');  
     101  <?php } ?> 
     102document.forms['main'].setAttribute('autocomplete', 'off'); 
    95103</script> 
    96104<?php include_once("foot.php"); ?> 
  • alternc/trunk/bureau/admin/mail_list.php

    r2670 r2676  
    4747  $error=$err->errstr(); 
    4848?> 
    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> 
    5050<?php 
    5151if ($error) { 
     
    6363 
    6464?> 
    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> 
    6666<?php 
    6767if ($error) { 
     
    120120</table> 
    121121<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"); ?>" /> 
    123123</form> 
    124124 
  • alternc/trunk/bureau/admin/styles/style.css

    r2670 r2676  
    5757} 
    5858 
     59.trbtn { 
     60    text-align: right; 
     61} 
     62 
    5963h4 { 
    6064        font-family: Verdana, Arial, Helvetica, sans-serif; 
     
    8488        border-style: none; 
    8589        color: black; 
     90        background: white; 
    8691} 
    8792 
     
    370375} 
    371376 
     377input#email { 
     378    border-right: 0; 
     379    padding-right: 0; 
     380    text-align: right; 
     381} 
     382span#emaildom { 
     383    border-left: 0; 
     384    padding-left: 2px; 
     385} 
     386 
    372387.tedit {  
    373388         border: 1px solid #aaa; 
     
    397412       width: 200px; 
    398413 } 
     414 
     415.warningmsg { 
     416    width: 500px; 
     417} 
  • alternc/trunk/bureau/locales/fr_FR/LC_MESSAGES/messages.po

    r2675 r2676  
    11481148msgstr "" 
    11491149"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 "diffusions 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 !" 
    11521152 
    11531153#: ../admin/dom_edit.php:170 ../admin/dom_edit.php:172 
     
    13721372#: ../admin/mail_edit.php:68 
    13731373msgid "one email per line" 
    1374 msgstr "un email par ligne" 
     1374msgstr "une adresse email par ligne" 
    13751375 
    13761376#: ../admin/mail_add.php:53 ../admin/mail_add.php:56 
    1377 msgid "Create this mailbox" 
    1378 msgstr "Ajouter cet email" 
     1377msgid "Create this email address" 
     1378msgstr "Ajouter cette adresse email" 
    13791379 
    13801380#: ../admin/mail_add.php:57 ../admin/mail_add.php:60 
    13811381msgid "help_mail_add" 
    13821382msgstr "" 
    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 " 
    13841384"accéder avec un logiciel de messagerie ou le webmail, cochez la case 'Compte " 
    13851385"pop'. Dans ce cas, entrez un mot de passe pour le compte pop.<br /> * Si " 
     
    13961396#: ../admin/mail_del.php:63 
    13971397msgid "Deleting mail accounts" 
    1398 msgstr "Effacement des comptes email" 
     1398msgstr "Suppression des adresses email" 
    13991399 
    14001400#: ../admin/mail_del.php:43 ../admin/mail_del.php:64 
    14011401msgid "Please confirm the deletion of the following mail accounts:" 
    1402 msgstr "Confirmez la suppression des comptes emails suivants&nbsp;:" 
     1402msgstr "Confirmez la suppression des adresses email suivantes&nbsp;:" 
    14031403 
    14041404#: ../admin/mail_del.php:57 ../admin/mail_list.php:107 
    14051405#: ../admin/mail_del.php:79 
    1406 msgid "Delete the selected mailboxes" 
    1407 msgstr "Effacer les mails sélectionnés" 
     1406msgid "Confirm the deletion" 
     1407msgstr "Confirmer la suppression" 
     1408 
     1409msgid "Delete the checked email addresses" 
     1410msgstr "Supprimer les adresses email cochées" 
    14081411 
    14091412#: ../admin/mail_del.php:57 ../admin/mail_del.php:79 
    1410 msgid "Don't delete accounts and go back to the mail list" 
    1411 msgstr "Ne rien effacer, retourner à la liste des emails" 
     1413msgid "Don't delete anything and go back to the email list" 
     1414msgstr "Ne rien supprimer, revenir à la liste des adresses email" 
    14121415 
    14131416#: ../admin/mail_doadd.php:44 
    14141417#, php-format 
    1415 msgid "The mailbox <b>%s</b> has been successfully created" 
    1416 msgstr "Le mail <b>%s</b> a été ajouté avec succès" 
     1418msgid "The email address <b>%s</b> has been successfully created" 
     1419msgstr "L'adresse email <b>%s</b> a été ajouté avec succès" 
    14171420 
    14181421#: ../admin/mail_dodel.php:48 ../admin/mail_del.php:51 
    14191422#: ../admin/mail_dodel.php:40 
    14201423#, php-format 
    1421 msgid "The mailbox <b>%s</b> does not exist!" 
    1422 msgstr "Le mail <b>%s</b> n'existe pas" 
     1424msgid "The email address <b>%s</b> does not exist!" 
     1425msgstr "L'adresse email <b>%s</b> n'existe pas" 
    14231426 
    14241427#: ../admin/mail_dodel.php:51 ../admin/mail_del.php:53 
    14251428#: ../admin/mail_dodel.php:43 
    14261429#, php-format 
    1427 msgid "The mailbox <b>%s</b> has been deleted!" 
    1428 msgstr "La boîte aux lettres <b>%s</b> a été effacée&nbsp;!" 
     1430msgid "The email address <b>%s</b> has been deleted!" 
     1431msgstr "L'adresse email <b>%s</b> a été supprimée&nbsp;!" 
    14291432 
    14301433#: ../admin/mail_dodel.php:60 
    1431 msgid "Back to the mail account list" 
    1432 msgstr "Retour à la liste des emails" 
     1434msgid "Back to the email address list" 
     1435msgstr "Retour à la liste des adresses email" 
    14331436 
    14341437#: ../admin/mail_doedit.php:46 
    14351438#, php-format 
    1436 msgid "The mailbox <b>%s</b> has been successfully changed" 
    1437 msgstr "Le mail <b>%s</b> a été modifié avec succès" 
     1439msgid "The email address <b>%s</b> has been successfully changed" 
     1440msgstr "L'adresse email <b>%s</b> a été modifiée avec succès" 
    14381441 
    14391442#: ../admin/mail_edit.php:41 ../admin/mail_edit.php:48 
     
    14781481#, php-format 
    14791482msgid "Add a mailbox on <b>%s</b>" 
    1480 msgstr "Ajouter un email sur <b>%s</b>" 
     1483msgstr "Ajouter une adresse email sur <b>%s</b>" 
    14811484 
    14821485#: ../admin/mail_list.php:48 ../admin/mail_list.php:67 
     
    14841487#, php-format 
    14851488msgid "Add many mailboxes on <b>%s</b>" 
    1486 msgstr "Ajouter plusieurs emails sur <b>%s</b>" 
     1489msgstr "Ajouter plusieurs adresses email sur <b>%s</b>" 
    14871490 
    14881491#: ../admin/mail_list.php:76 ../admin/mail_list.php:78 
     
    15361539#: ../admin/mem_cm.php:46 ../admin/mem_param.php:74 
    15371540msgid "Change the email of the account" 
    1538 msgstr "Changement d'Email du compte" 
     1541msgstr "Changement d'adresse email du compte AlternC" 
    15391542 
    15401543#: ../admin/mem_chgmail.php:46 ../admin/mem_chgmail.php:51 
     
    15421545msgid "help_mem_chgmail %s" 
    15431546msgstr "" 
    1544 "Un email a été envoyé à l'adresse <big><code>%s</code></big> pour " 
    1545 "confirmation.<br /> Cet email contient 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 " 
    15461549"pour valider la modification.<br /> A cette adresse, la clé suivante vous " 
    15471550"sera demandée : <br /> " 
     
    15571560msgstr "" 
    15581561"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" 
    15601563 
    15611564#: ../admin/mem_cm.php:49 ../admin/mem_cm.php:48 
     
    16191622msgid "help_chg_mail" 
    16201623msgstr "" 
    1621 "Vous pouvez modifier ici l'email d'inscription correspondant à votre compte." 
    1622 "<br />Entrez ici le nouvel email. Un message est envoyé sur cet email pour " 
     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 " 
    16231626"confirmation." 
    16241627 
     
    16261629#: ../admin/mem_param.php:76 
    16271630msgid "Current mailbox" 
    1628 msgstr "Email actuel" 
     1631msgstr "Adresse email actuelle" 
    16291632 
    16301633#: ../admin/mem_param.php:78 ../admin/mem_param.php:75 
    16311634#: ../admin/mem_param.php:77 
    16321635msgid "New mailbox" 
    1633 msgstr "Nouvel Email" 
     1636msgstr "Nouvelle adresse email" 
    16341637 
    16351638#: ../admin/mem_param.php:79 ../admin/mem_param.php:76 
     
    25192522#: ../admin/menu_adm.php:38 
    25202523msgid "AlternC configuration" 
    2521 msgstr "" 
     2524msgstr "Configuration d'AlternC" 
    25222525 
    25232526#: ../admin/menu_brouteur.php:33 
     
    26132616"will <b>NOT</b> be able to get it back!" 
    26142617msgstr "" 
    2615 "Attention: L'effacement d'une adresse email détruit tous ses messages&nbsp;! " 
     2618"Attention: La suppression d'une adresse email détruit tous ses messages&nbsp;! " 
    26162619"Vous ne pourrez <b>PLUS</b> retrouver les messages ainsi effacés&nbsp;!" 
    26172620 
     
    27882791 
    27892792msgid "Show only mail starting by:" 
    2790 msgstr "N'afficher que les mails commençant par :" 
     2793msgstr "Afficher seulement les adresses mails commençant par :" 
    27912794 
    27922795 
     
    28132816msgstr "Redirections/Autres destinataires&nbsp;:" 
    28142817 
     2818msgid "Path"  
     2819msgstr "Répertoire courant" 
     2820 
Note: See TracChangeset for help on using the changeset viewer.