new translations + secondarymx management

This commit is contained in:
Benjamin Sonntag 2006-05-22 09:03:51 +00:00
parent 8176f2a53e
commit d8da5e93ec
32 changed files with 1240 additions and 2573 deletions

17
.gitattributes vendored
View File

@ -26,6 +26,7 @@ bureau/admin/adm_dosu.php -text
bureau/admin/adm_edit.php -text bureau/admin/adm_edit.php -text
bureau/admin/adm_list.php -text bureau/admin/adm_list.php -text
bureau/admin/adm_login.php -text bureau/admin/adm_login.php -text
bureau/admin/adm_mxaccount.php -text
bureau/admin/adm_panel.php -text bureau/admin/adm_panel.php -text
bureau/admin/adm_quotadoedit.php -text bureau/admin/adm_quotadoedit.php -text
bureau/admin/adm_quotaedit.php -text bureau/admin/adm_quotaedit.php -text
@ -144,19 +145,6 @@ bureau/admin/index.php -text
bureau/admin/js/alternc.js -text bureau/admin/js/alternc.js -text
bureau/admin/js/wz_dragdrop.js -text bureau/admin/js/wz_dragdrop.js -text
bureau/admin/login.php -text bureau/admin/login.php -text
bureau/admin/lst_addown.php -text
bureau/admin/lst_addsub.php -text
bureau/admin/lst_addsub1.php -text
bureau/admin/lst_affallsub.php -text
bureau/admin/lst_affsub.php -text
bureau/admin/lst_delown.php -text
bureau/admin/lst_delsub.php -text
bureau/admin/lst_doedit.php -text
bureau/admin/lst_doeditsub.php -text
bureau/admin/lst_doedittxt.php -text
bureau/admin/lst_downsub.php -text
bureau/admin/lst_owner.php -text
bureau/admin/lst_subscribers.php -text
bureau/admin/mail_add.php -text bureau/admin/mail_add.php -text
bureau/admin/mail_del.php -text bureau/admin/mail_del.php -text
bureau/admin/mail_doadd.php -text bureau/admin/mail_doadd.php -text
@ -184,6 +172,7 @@ bureau/admin/menu_quota.php -text
bureau/admin/menu_sql.php -text bureau/admin/menu_sql.php -text
bureau/admin/menu_sta2.php -text bureau/admin/menu_sta2.php -text
bureau/admin/menu_web.php -text bureau/admin/menu_web.php -text
bureau/admin/mxlist.php -text
bureau/admin/quota_show.php -text bureau/admin/quota_show.php -text
bureau/admin/quota_show_all.php -text bureau/admin/quota_show_all.php -text
bureau/admin/sql_add.php -text bureau/admin/sql_add.php -text
@ -324,6 +313,7 @@ install/upgrades/0.9.3.sql -text
install/upgrades/0.9.4.sql -text install/upgrades/0.9.4.sql -text
install/upgrades/0.9.5.sh -text install/upgrades/0.9.5.sh -text
install/upgrades/0.9.5.sql -text install/upgrades/0.9.5.sql -text
install/upgrades/0.9.6.sql -text
install/upgrades/README -text install/upgrades/README -text
man/alternc-admintools.8 -text man/alternc-admintools.8 -text
man/alternc-admintools.fr.8 -text man/alternc-admintools.fr.8 -text
@ -366,4 +356,3 @@ tools/get_domains_by_account -text
tools/top_ftp_users -text tools/top_ftp_users -text
tools/top_http_users -text tools/top_http_users -text
tools/top_mysql_users -text tools/top_mysql_users -text
/updatepot.sh -text

View File

@ -99,7 +99,7 @@ if ($error) {
<? if (variable_get('hosting_tld')) { ?> <? if (variable_get('hosting_tld')) { ?>
<tr> <tr>
<th colspan="2"><label><input type="checkbox" name="create_dom" value="1" /> <th colspan="2"><label><input type="checkbox" name="create_dom" value="1" />
<?php print _("Create the domain username.").variable_get('hosting_tld'); ?></label></th> <?php printf(_("Create the domain <b>username.%s</b>"),variable_get('hosting_tld')); ?></label></th>
</tr> </tr>
<tr> <tr>
<? } ?> <? } ?>

View File

@ -0,0 +1,102 @@
<?php
/*
$Id: adm_mxacount.php,v 1.2 2006/02/17 18:57:02 olivier Exp $
----------------------------------------------------------------------
AlternC - Web Hosting System
Copyright (C) 2002 by the AlternC Development Team.
http://alternc.org/
----------------------------------------------------------------------
Based on:
Valentin Lacambre's web hosting softwares: http://altern.org/
----------------------------------------------------------------------
LICENSE
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License (GPL)
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
To read the license please visit http://www.gnu.org/copyleft/gpl.html
----------------------------------------------------------------------
Original Author of file: Benjamin Sonntag
Purpose of file: Manage list of allowed accounts for secondary mx
----------------------------------------------------------------------
*/
require_once("../class/config.php");
if (!$admin->enabled) {
__("This page is restricted to authorized staff");
exit();
}
if ($delaccount) {
// Delete an account
if ($mail->del_slave_account($delaccount)) {
$error=_("The requested account has been deleted. It is now denied.");
}
}
if ($newlogin) {
// Add an account
if ($mail->add_slave_account($newlogin,$newpass)) {
$error=_("The requested account address has been created. It is now allowed.");
unset($newlogin); unset($newpass);
}
}
include("head.php");
?>
</head>
<body>
<h3><?php __("Manage allowed accounts for secondary mx"); ?></h3>
<?php
if ($error) {
echo "<p class=\"error\">$error</p>";
}
$c=$mail->enum_slave_account();
if (is_array($c)) {
?>
<p>
<?php __("Here is the list of the allowed accounts for secondary mx management. You can configure the alternc-secondarymx package on your secondary mx server and give him the login/pass that will grant him access to your server's mx-hosted domain list. "); ?>
</p>
<table border="0" cellpadding="4" cellspacing="0">
<tr><th><?php __("Action"); ?></th><th><?php __("Login"); ?></th><th><?php __("Password"); ?></th></tr>
<?php
$col=1;
for($i=0;$i<count($c);$i++) {
$col=3-$col;
?>
<tr class="lst<?php echo $col; ?>">
<td><a href="adm_mxaccount.php?delaccount=<?php echo urlencode($c[$i]["login"]); ?>"><?php __("Delete"); ?></a></td>
<td><?php echo $c[$i]["login"]; ?></td>
<td><?php echo $c[$i]["pass"]; ?></td>
</tr>
<?php
}
?>
</table>
<?php } ?>
<p><?php __("If you want to allow a new server to access your mx-hosted domain list, give him an account."); ?></p>
<form method="post" action="adm_mxaccount.php">
<table border="0" cellpadding="4" cellspacing="0">
<tr><th><label for="newlogin"><?php __("Login"); ?></label></th><th><label for="newpass"><?php __("Password"); ?></label></th></tr>
<tr>
<td><input type="text" class="int" value="<?php echo urlencode($newlogin); ?>" id="newlogin" name="newlogin" maxlength="64" size="32" /> / </td>
<td><input type="password" class="int" value="<?php echo urlencode($newpass); ?>" id="newpass" name="newpass" maxlength="64" size="32" /></td>
</tr>
<tr><td colspan="2">
<input type="submit" value="<?php __("Add this account to the allowed list"); ?>" class="inb" />
</table>
</form>
</body>
</html>

View File

@ -51,6 +51,7 @@ include("head.php");
<tr class="lst1"><td><a href="adm_doms.php"><?php __("Manage installed domains"); ?></a></td></tr> <tr class="lst1"><td><a href="adm_doms.php"><?php __("Manage installed domains"); ?></a></td></tr>
<tr class="lst2"><td><a href="adm_slaveip.php"><?php __("Manage allowed ip for slave zone transfers"); ?></a></td></tr> <tr class="lst2"><td><a href="adm_slaveip.php"><?php __("Manage allowed ip for slave zone transfers"); ?></a></td></tr>
<tr class="lst1"><td><a href="adm_slaveaccount.php"><?php __("Manage allowed accounts for slave zone transfers"); ?></a></td></tr> <tr class="lst1"><td><a href="adm_slaveaccount.php"><?php __("Manage allowed accounts for slave zone transfers"); ?></a></td></tr>
<tr class="lst1"><td><a href="adm_mxaccount.php"><?php __("Manage allowed accounts for secondary mx"); ?></a></td></tr>
<tr class="lst2"><td><a href="adm_variables.php"><?php __("Configure AlternC variables"); ?></a></td></tr> <tr class="lst2"><td><a href="adm_variables.php"><?php __("Configure AlternC variables"); ?></a></td></tr>
<tr class="lst1"><td><a href="quota_show_all.php"><?php __("Show all quotas"); ?></a></td></tr> <tr class="lst1"><td><a href="quota_show_all.php"><?php __("Show all quotas"); ?></a></td></tr>
<?php <?php

View File

@ -49,7 +49,7 @@ include("head.php");
<h3><?php __("Add a new TLD"); ?></h3> <h3><?php __("Add a new TLD"); ?></h3>
<p> <p>
<?php __("Enter the new TLD (without the first dot) and choose what check should be done."); ?><br /> <?php __("Enter the new TLD (without the first dot) and choose what check should be done."); ?><br />
<small><?php __("Warning : only some final tld are known in the whois function of AlternC, please check m_domains.php accordingly."); ?></small> <small><?php __("Warning : only some final tld are known in the whois function of AlternC, please check m_dom.php accordingly."); ?></small>
</p> </p>
<form method="post" action="adm_tlddoadd.php"> <form method="post" action="adm_tlddoadd.php">

View File

@ -23,8 +23,8 @@
To read the license please visit http://www.gnu.org/copyleft/gpl.html To read the license please visit http://www.gnu.org/copyleft/gpl.html
---------------------------------------------------------------------- ----------------------------------------------------------------------
Original Author of file: Original Author of file: Benjamin Sonntag
Purpose of file: Purpose of file: Return the list of hosted domains to a slave dns server
---------------------------------------------------------------------- ----------------------------------------------------------------------
*/ */
require_once("../class/config_nochk.php"); require_once("../class/config_nochk.php");

View File

@ -1,57 +0,0 @@
<?php
/*
$Id: lst_addown.php,v 1.1.1.1 2003/03/26 17:41:29 root Exp $
----------------------------------------------------------------------
AlternC - Web Hosting System
Copyright (C) 2002 by the AlternC Development Team.
http://alternc.org/
----------------------------------------------------------------------
Based on:
Valentin Lacambre's web hosting softwares: http://altern.org/
----------------------------------------------------------------------
LICENSE
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License (GPL)
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
To read the license please visit http://www.gnu.org/copyleft/gpl.html
----------------------------------------------------------------------
Original Author of file: Sylvain Louis.
Purpose of file: Add an owner in the mailing-list parameters.
----------------------------------------------------------------------
*/
require_once("../class/config.php");
if(!$r=$sympa->get_ml($id)) {
$error=$err->errstr();
}
$a=$sympa->add_owner($owner,$id);
if (!$a) {
$error=$err->errstr();
include("lst_owner.php");
exit();
} else {
$error=_("The new owner has been successfully added");
include("lst_owner.php");
exit();
}
include("head.php");
?>
</head>
<body>
<div align="center"><h3><?php printf(_("Mailing list %s"),$r["list"]); ?></h3></div>
<?php
if ($error)
echo "<br><font color=red>$error</font><br>";
?>
</body>
</html>

View File

@ -1,56 +0,0 @@
<?php
/*
$Id: lst_addsub.php,v 1.1.1.1 2003/03/26 17:41:29 root Exp $
----------------------------------------------------------------------
AlternC - Web Hosting System
Copyright (C) 2002 by the AlternC Development Team.
http://alternc.org/
----------------------------------------------------------------------
Based on:
Valentin Lacambre's web hosting softwares: http://altern.org/
----------------------------------------------------------------------
LICENSE
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License (GPL)
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
To read the license please visit http://www.gnu.org/copyleft/gpl.html
----------------------------------------------------------------------
Original Author of file: Sylvain Louis.
Purpose of file: Add a subscriber in the mailing-list.
----------------------------------------------------------------------
*/
require_once("../class/config.php");
if(!$r=$sympa->get_ml($id)) {
$error=$err->errstr();
}
if (!$sympa->add_user($id,$user,$nom_user)) {
$error=$err->errstr();
include("lst_subscribers.php");
exit();
} else {
$error=_("The new member has been successfully added");
include("lst_subscribers.php");
exit();
}
include("head.php");
?>
</head>
<body>
<div align="center"><h3><?php printf(_("Mailing list %s"),$r["list"]); ?></h3></div>
<?php
if ($error)
echo "<br><font color=red>$error</font><br>";
?>
</body>
</html>

View File

@ -1,57 +0,0 @@
<?php
/*
$Id: lst_addsub1.php,v 1.1.1.1 2003/03/26 17:41:29 root Exp $
----------------------------------------------------------------------
AlternC - Web Hosting System
Copyright (C) 2002 by the AlternC Development Team.
http://alternc.org/
----------------------------------------------------------------------
Based on:
Valentin Lacambre's web hosting softwares: http://altern.org/
----------------------------------------------------------------------
LICENSE
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License (GPL)
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
To read the license please visit http://www.gnu.org/copyleft/gpl.html
----------------------------------------------------------------------
Original Author of file: Sylvain Louis.
Purpose of file: Add a list of subscribers in the mailing-list subscribers table.
----------------------------------------------------------------------
*/
require_once("../class/config.php");
if(!$r=$sympa->get_ml($id)) {
$error=$err->errstr();
}
if (!$sympa->add_user_multiple($id,$inscrire)) {
$error=$err->errstr();
include("lst_subscribers.php");
exit();
} else {
//$error=$err->errstr();
$error.=_("Subscription successfull"); ;
include("lst_subscribers.php");
exit();
}
include("head.php");
?>
</head>
<body>
<div align="center"><h3><?php printf(_("Mailing list %s"),$r["list"]); ?></h3></div>
<?php
if ($error)
echo "<br><font color=red>$error</font><br>";
?>
</body>
</html>

View File

@ -1,74 +0,0 @@
<?php
/*
$Id: lst_affallsub.php,v 1.1.1.1 2003/03/26 17:41:29 root Exp $
----------------------------------------------------------------------
AlternC - Web Hosting System
Copyright (C) 2002 by the AlternC Development Team.
http://alternc.org/
----------------------------------------------------------------------
Based on:
Valentin Lacambre's web hosting softwares: http://altern.org/
----------------------------------------------------------------------
LICENSE
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License (GPL)
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
To read the license please visit http://www.gnu.org/copyleft/gpl.html
----------------------------------------------------------------------
Original Author of file: Louis Sylvain
Purpose of file: show and delete all subscribers in the mailing-list
----------------------------------------------------------------------
*/
require_once("../class/config.php");
include("head.php");
$r=$sympa->get_ml($id);
$u=$sympa->get_ml_all_users($id);
?>
</head>
<body>
<div align="center"><h3><?php printf(_("Mailing list %s"),$r["list"]); ?></h3></div>
<hr>
<!-- Tableau affichant la liste des mails inscrits -->
<table cellspacing="0" cellpadding="4" border="0" cols="4">
<tr>
<form method="post" action="lst_delsub.php?id=<?php echo $id ?>&offset=<?php echo $offset ?>">
<th width="35"><?php __("Delete"); ?></th><th><?php __("Email address"); ?></th><th><?php __("Name"); ?></th><th>&nbsp;</th></tr>
<?php
$col=1;
for($i=0;$i<count($u["mail"]);$i++) {
$c=$u["mail"][$i];
$d=$u["nom"][$i];
$col=3-$col;
echo "<tr class=\"lst$col\"><td align=\"center\"><input type=\"checkbox\" class=\"inc\" name=\"del_".$i."\" value=\"".$c."\"></td>";
echo "<td>".$c."</td>";
echo "<td>".$d."</td>";
echo "<td align=\"center\"><a href='lst_editsub.php?id=".$id."&mail=".$c."&name=".$d."&offset=".$offset."'>"._("Edit")."</a></td></tr>";
} // fin for
?>
<tr valign="top">
<td align="left" colspan="4">
<input type="submit" class="inb" name="submit" value="<?php __("Delete the checked subscribers"); ?>">
</form></td>
</tr>
</table>
<br>
<hr>
<a href="lst_subscribers.php?id=<?php echo $id; ?>"><?php __("Back to the subscription page"); ?></a>
</body>
</html>

View File

@ -1,230 +0,0 @@
<?php
/*
$Id: lst_affsub.php,v 1.1.1.1 2003/03/26 17:41:29 root Exp $
----------------------------------------------------------------------
AlternC - Web Hosting System
Copyright (C) 2002 by the AlternC Development Team.
http://alternc.org/
----------------------------------------------------------------------
Based on:
Valentin Lacambre's web hosting softwares: http://altern.org/
----------------------------------------------------------------------
LICENSE
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License (GPL)
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
To read the license please visit http://www.gnu.org/copyleft/gpl.html
----------------------------------------------------------------------
Original Author of file: Louis Sylvain
Purpose of file: show and delete subscribers in the mailing-list
----------------------------------------------------------------------
*/
require_once("../class/config.php");
include("head.php");
$r=$sympa->get_ml($id);
$u=$sympa->get_ml_users($id,$offset);
$count=$u["affiche"]; // nombre de mail à afficher
?>
</head>
<body>
<div align="center"><h3><?php printf(_("Mailing list %s"),$r["list"]); ?></h3></div>
<hr>
<?php
// test pour que l'affichage du nombre de mail, ne dépasse le total des inscrits
if ($offset+$count>$u["count"])
$top=$u["count"];
else
$top=$offset+$count;
// test pour afficher un lien pour afficher tous les inscrits s'il sont supérieurs au nombre affiché
if ($u["count"]>$count)
$lien="<a href='lst_affallsub.php?id=".$id."'>"._("Show all subscribed emails")."</a>";
else
$lien="";
// affichage de la position où l'on se trouve dans le tableau
printf(_("From %s to %s sur %s"),($offset+1),$top,$u["count"]);
echo "&nbsp;&nbsp;".$lien;
?>
<br>
<!-- Affichage des boutons de navigation dans un tableau (en haut de page)-->
<table cellspacing="0" cellpadding="4" border="0" cols="4" width="140">
<tr valign="top">
<td align="center" width="35">
<?php
if ($offset>0) { // Bouton Début si il y a besoin
?>
<form method="post" action="lst_affsub.php?id=<?php echo $id ?>&offset=0">
<input type="submit" class="inb" name="precedent" value="<< ">
</form>
<?php
} else {
echo "&nbsp;";
}
?>
</td>
<td width="35" align="center">
<?php
if ($offset>0) { // Bouton précedent si il y a besoin
?>
<form method="post" action="lst_affsub.php?id=<?php echo $id ?>&offset=<?php echo $offset-$count; ?>">
<input type="submit" class="inb" name="precedent" value=" < ">
</form>
<?php
} else {
echo "&nbsp;";
}
?>
</td><td width="35" align="center">
<?php
if ($offset+$count<$u["count"]) { // Bouton suivant si il y a besoin
?>
<form method="post" action="lst_affsub.php?id=<?php echo $id ?>&offset=<?php echo $offset+$count; ?>">
<input type="submit" class="inb" name="precedent" value=" > ">
</form>
<?php
} else {
echo "&nbsp;";
}
?>
</td>
<td align="center" width="30">
<?php
if ($offset+$count<$u["count"]) { // Bouton Fin si il y a besoin
// Calcul de $fin argh, la boucle for !
for ($i=0;$i<$u["count"];$i+=$count){
$fin=$i;
}
?>
<form method="post" action="lst_affsub.php?id=<?php echo $id ?>&offset=<?php echo $fin; ?>">
<input type="submit" class="inb" name="precedent" value=" >>">
</form>
<?php
} else {
echo "&nbsp;";
}
?>
</td></tr>
</table>
<!-- Tableau affichant la liste des mails inscrits -->
<table cellspacing="0" cellpadding="4" border="0" cols="4">
<tr>
<form method="post" action="lst_delsub.php?id=<?php echo $id ?>&offset=<?php echo $offset ?>">
<th width="35"><?php __("Delete"); ?></th><th><?php __("Email address"); ?></th><th><?php __("Name"); ?></th><th>&nbsp;</th></tr>
<?php
$col=1;
for($i=0;$i<count($u["mail"]);$i++) {
$c=$u["mail"][$i];
$d=$u["nom"][$i];
$col=3-$col;
echo "<tr class=\"lst$col\"><td align=\"center\"><input type=\"checkbox\" class=\"inc\" name=\"del_".$i."\" value=\"".$c."\"></td>";
echo "<td>".$c."</td>";
echo "<td>".$d."</td>";
echo "<td align=\"center\"><a href='lst_editsub.php?id=".$id."&mail=".$c."&name=".$d."&offset=".$offset."'>"._("Edit")."</a></td></tr>";
} // fin for
?>
<tr valign="top">
<td align="left" colspan="4">
<input type="submit" class="inb" name="submit" value="<?php __("Delete the checked subscribers"); ?>">
</form></td>
</tr>
</table>
<!-- Affichage des boutons de navigation dans un tableau (en bas de page)-->
<table cellspacing="0" cellpadding="4" border="0" cols="4" width="140">
<td valign="top">
<?php
if ($offset>0) { // Bouton Début si il y a besoin
?>
<form method="post" action="lst_affsub.php?id=<?php echo $id ?>&offset=0">
<input type="submit" class="inb" name="precedent" value="<< ">
</form>
<?php
} else {
echo "&nbsp;";
}
?>
</td>
<td width="35" align="center">
<?php
if ($offset>0) { // Bouton précedent si il y a besoin
?>
<form method="post" action="lst_affsub.php?id=<?php echo $id ?>&offset=<?php echo $offset-$count; ?>">
<input type="submit" class="inb" name="precedent" value=" < ">
</form>
<?php
} else {
echo "&nbsp;";
}
?>
</td><td width="35" align="center">
<?php
if ($offset+$count<$u["count"]) { // Bouton suivant si il y a besoin
?>
<form method="post" action="lst_affsub.php?id=<?php echo $id ?>&offset=<?php echo $offset+$count; ?>">
<input type="submit" class="inb" name="precedent" value=" > ">
</form>
<?php
} else {
echo "&nbsp;";
}
?>
</td>
<td align="center" width="30">
<?php
if ($offset+$count<$u["count"]) { // Bouton Fin si il y a besoin
// Calcul de $fin argh, la boucle for ! on teste ca pour voir...
$fin=($count*intval($u["count"]/$count))+1;
?>
<form method="post" action="lst_affsub.php?id=<?php echo $id ?>&offset=<?php echo $fin; ?>">
<input type="submit" class="inb" name="precedent" value=" >>">
</form>
<?php
} else {
echo "&nbsp;";
}
?>
</td></tr>
</table>
<br>
<!-- Liens pour passer d'une table à l'autre en se basant sur le nom -->
<?php
// Condition pour savoir s'il y a plus d'une page à afficher
$u=$sympa->get_ml_all_users($id);
if ($u["count"]>$count) {
echo "<p>"._("To access directly a page from a mail address:")."<br>";
for ($i=0;$i<$u["count"];$i+=$count){
if ($i+$count<$u["count"]) {
// $requete="SELECT mail FROM subscribers LIMIT $j,1";
$j=$i+$count-1;
echo _("From ")."<a href='lst_affsub.php?id=".$id."&offset=".$i."'>".$u["mail"][$i]."</a> "._("to")." <a href='lst_affsub.php?id=".$id."&offset=".$i."'>".$u["mail"][$j]."</a><br>";
}
else { // dernier liens à la fin
// $j=$total-1;
// $requete="SELECT mail FROM subscribers LIMIT $j,1";
$j=$u["count"]-1;
echo _("From ")."<a href='lst_affsub.php?id=".$id."&offset=".$i."'>".$u["mail"][$i]."</a> "._("to")." <a href='lst_affsub.php?id=".$id."&offset=".$i."'>".$u["mail"][$j]."</a><br>";
}
} // fin for
} // fin if
?>
<hr>
<a href="lst_subscribers.php?id=<?php echo $id; ?>"><?php __("Back to the subscription page"); ?></a>
</body>
</html>

View File

@ -1,60 +0,0 @@
<?php
/*
$Id: lst_delown.php,v 1.1.1.1 2003/03/26 17:41:29 root Exp $
----------------------------------------------------------------------
AlternC - Web Hosting System
Copyright (C) 2002 by the AlternC Development Team.
http://alternc.org/
----------------------------------------------------------------------
Based on:
Valentin Lacambre's web hosting softwares: http://altern.org/
----------------------------------------------------------------------
LICENSE
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License (GPL)
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
To read the license please visit http://www.gnu.org/copyleft/gpl.html
----------------------------------------------------------------------
Original Author of file: Sylvain Louis.
Purpose of file: Delete one or several owners of the mailing-list
----------------------------------------------------------------------
*/
require_once("../class/config.php");
if(!$r=$sympa->get_ml($id)) {
$error=$err->errstr();
}
$a=$sympa->del_owner($del,$id);
if (!$a) {
$error=$err->errstr();
include("lst_owner.php");
exit();
} else {
$error=_("The owner(s) has been successfully deleted");
include("lst_owner.php");
exit();
}
include("head.php");
?>
</head>
<body>
<div align="center"><h3><?php printf(_("Mailing list %s"),$r["list"]); ?></h3></div>
<?php
if ($error) {
echo "<br><font color=red>$error</font><br>";
echo $count;
}
?>
</body>
</html>

View File

@ -1,59 +0,0 @@
<?php
/*
$Id: lst_delsub.php,v 1.1.1.1 2003/03/26 17:41:29 root Exp $
----------------------------------------------------------------------
AlternC - Web Hosting System
Copyright (C) 2002 by the AlternC Development Team.
http://alternc.org/
----------------------------------------------------------------------
Based on:
Valentin Lacambre's web hosting softwares: http://altern.org/
----------------------------------------------------------------------
LICENSE
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License (GPL)
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
To read the license please visit http://www.gnu.org/copyleft/gpl.html
----------------------------------------------------------------------
Original Author of file: Louis Sylvain
Purpose of file: Delete subscribers in the mailing list
----------------------------------------------------------------------
*/
require_once("../class/config.php");
if(!$r=$sympa->get_ml($id)) {
$error=$err->errstr();
}
// On parcours les POST_VARS et on repere les del_.
reset($_POST);
while (list($key,$val)=each($_POST)) {
if (substr($key,0,4)=="del_") {
// Effacement des mails de la liste
$d=$sympa->del_user($id,$val);
}
}
$error=_("The mail(s) has been successfully unsubscribed from the list");
include("head.php");
?>
</head>
<body>
<div align="center"><h3><?php printf(_("Mailing list %s"),$r["list"]); ?></h3></div>
<?php
if ($error) {
echo "<font color=red>$error</font></body></html>";
}
?>
<br><br>
<a href="lst_affsub.php?id=<?php echo $id; ?>&offset=<?php echo $offset; ?>"><?php __("Back"); ?></a>
</body>
</html>

View File

@ -1,57 +0,0 @@
<?php
/*
$Id: lst_doedit.php,v 1.1.1.1 2003/03/26 17:41:29 root Exp $
----------------------------------------------------------------------
AlternC - Web Hosting System
Copyright (C) 2002 by the AlternC Development Team.
http://alternc.org/
----------------------------------------------------------------------
Based on:
Valentin Lacambre's web hosting softwares: http://altern.org/
----------------------------------------------------------------------
LICENSE
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License (GPL)
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
To read the license please visit http://www.gnu.org/copyleft/gpl.html
----------------------------------------------------------------------
Original Author of file: Sylvain Louis.
Purpose of file: Edit the config file of the mailing-list parameters.
----------------------------------------------------------------------
*/
require_once("../class/config.php");
if(!$r=$sympa->get_ml($id)) {
$error=$err->errstr();
}
$a=$sympa->edit_ml($id,$subscribe_mode,$unsubscribe_mode,$send_mode,$reply_to,$reply_to_email,$addsubject,$max_size,$review_mode);
if (!$a) {
$error=$err->errstr();
include("lst_edit.php");
exit();
} else {
$error=_("The list parameters has been successfully changed");
include("lst_edit.php");
exit();
}
include("head.php");
?>
</head>
<body>
<div align="center"><h3><?php printf(_("Mailing list %s"),$r["list"]); ?></h3></div>
<?php
if ($error)
echo "<br><font color=red>$error</font><br>";
?>
</body>
</html>

View File

@ -1,54 +0,0 @@
<?php
/*
$Id: lst_doeditsub.php,v 1.1.1.1 2003/03/26 17:41:29 root Exp $
----------------------------------------------------------------------
AlternC - Web Hosting System
Copyright (C) 2002 by the AlternC Development Team.
http://alternc.org/
----------------------------------------------------------------------
Based on:
Valentin Lacambre's web hosting softwares: http://altern.org/
----------------------------------------------------------------------
LICENSE
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License (GPL)
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
To read the license please visit http://www.gnu.org/copyleft/gpl.html
----------------------------------------------------------------------
Original Author of file: Sylvain Louis.
Purpose of file: change subscriber's name our email in the mailing-list.
----------------------------------------------------------------------
*/
require_once("../class/config.php");
$r=$sympa->get_ml($id);
$a=$sympa->edit_user($id,$name,$email,$old_mail);
if (!$a) {
$error=$err->errstr();
} else {
$error=_("The user's parameters has been successfully changed");
}
include("head.php");
?>
</head>
<body>
<div align="center"><h3><?php printf(_("Mailing list %s"),$r["list"]); ?></h3></div>
<?php
if ($error)
echo "<br><font color=red>$error</font><br>";
?>
<br><br>
<a href="lst_affsub.php?id=<?php echo $id; ?>&offset=<?php echo $offset; ?>"><?php __("Back"); ?></a>
</body>
</html>

View File

@ -1,53 +0,0 @@
<?php
/*
$Id: lst_downsub.php,v 1.1.1.1 2003/03/26 17:41:29 root Exp $
----------------------------------------------------------------------
AlternC - Web Hosting System
Copyright (C) 2002 by the AlternC Development Team.
http://alternc.org/
----------------------------------------------------------------------
Based on:
Valentin Lacambre's web hosting softwares: http://altern.org/
----------------------------------------------------------------------
LICENSE
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License (GPL)
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
To read the license please visit http://www.gnu.org/copyleft/gpl.html
----------------------------------------------------------------------
Original Author of file: Louis Sylvain
Purpose of file: download the subscribers list of a mailing-list
----------------------------------------------------------------------
*/
require_once("../class/config.php");
// on récupère le nom de la liste et on la met au format qui est utilisée dans la table
$r=$sympa->get_ml($id);
if ($r["premier"]==1) {
$temp=explode("@", $r["list"]);
$liste=$temp[0];
} else {
$liste=str_replace("@","_",$r["list"]);
}
header("Content-Type: text/plain");
// header("Content-Type: text/html");
header("Content-disposition: Attachment;filename=\"liste_".$liste.".txt\"");
/*
header("Pragma: no-cache");
header("Expires: 0"); */
$db->query("SELECT user_subscriber from subscriber_table where list_subscriber='$liste';");
while ($db->next_record()) {
echo $db->Record["user_subscriber"]."\r\n";
}
?>

View File

@ -1,88 +0,0 @@
<?php
/*
$Id: lst_owner.php,v 1.1.1.1 2003/03/26 17:41:29 root Exp $
----------------------------------------------------------------------
AlternC - Web Hosting System
Copyright (C) 2002 by the AlternC Development Team.
http://alternc.org/
----------------------------------------------------------------------
Based on:
Valentin Lacambre's web hosting softwares: http://altern.org/
----------------------------------------------------------------------
LICENSE
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License (GPL)
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
To read the license please visit http://www.gnu.org/copyleft/gpl.html
----------------------------------------------------------------------
Original Author of file: Benjamin Sonntag, Franck Missoum, Louis Sylvain
Purpose of file: Add or delete owners and moderators in the list
----------------------------------------------------------------------
*/
require_once("../class/config.php");
include("head.php");
if(!$r=$sympa->get_ml($id)) {
$error=$err->errstr();
}
?>
</head>
<body>
<div align="center"><h3><?php printf(_("Mailing list %s"),$r["list"]); ?></h3></div>
<?php echo "<br><font color=red>$error</font><br>";?>
<hr>
<!-- Modification des propriétaires de la liste -->
<form method="post" action="lst_addown.php?id=<?php echo $id ?>">
<P><b><?php __("Add an owner to the list"); ?></b></P>
<br>
<table cellspacing="0" cellpadding="4">
<tr>
<th><?php __("Enter the new owner's email"); ?> : </th>
<td><input type="text" class="int" name="owner" value="" size="20"></td>
</tr><tr>
<td colspan="2" align="center"><input type="submit" class="inb" name="submit" value="<?php __("Add this owner to the list"); ?>"></td>
</tr><tr>
<td colspan="2"><font color="#007799"><?php __("Note: an owner is also a moderator"); ?></font></td>
</tr>
</table>
<br><br>
</form>
<hr>
<!-- Suppression d'un ou plusieurs propriétaires de la liste -->
<form method="post" action="lst_delown.php?id=<?php echo $id ?>">
<P><b><?php __("Delete one or more owners from the list"); ?></b></P>
<br>
<table cellspacing="0" cellpadding="4">
<tr><th><?php __("Delete"); ?></th><th><?php __("Email address"); ?></th></tr>
<?php
$col=1;
for($i=0;$i<$r["owner"]["count"];$i++) {
$c=$r["owner"][$i];
$col=3-$col;
echo "<tr class=\"lst$col\"><td align=\"center\"><input type=\"checkbox\" class=\"inc\" name=\"del[".$i."]\" value=\"".$c."\"></td>";
echo "<td>".$c."</td></tr>";
}
echo "<tr><td colspan=\"2\"><input type=\"hidden\" name=\"count\" value=\"".$r["owner"]["count"]."\"></td></tr>";
?>
<tr><td align="center" colspan="2"><input type="submit" class="inb" name="submit" value="<?php __("Delete the checked owners"); ?>"></td></tr>
<tr><td colspan="2"><font color="#007799"><?php __("Note: a list must have at least one owner"); ?></font></td></tr>
</table>
</form>
<hr>
</body>
</html>

View File

@ -1,95 +0,0 @@
<?php
/*
$Id: lst_subscribers.php,v 1.1.1.1 2003/03/26 17:41:29 root Exp $
----------------------------------------------------------------------
AlternC - Web Hosting System
Copyright (C) 2002 by the AlternC Development Team.
http://alternc.org/
----------------------------------------------------------------------
Based on:
Valentin Lacambre's web hosting softwares: http://altern.org/
----------------------------------------------------------------------
LICENSE
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License (GPL)
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
To read the license please visit http://www.gnu.org/copyleft/gpl.html
----------------------------------------------------------------------
Original Author of file: Louis Sylvain
Purpose of file: Add or delete subscribers in the mailing-list
----------------------------------------------------------------------
*/
require_once("../class/config.php");
include("head.php");
$r=$sympa->get_ml($id);
$total=$sympa->get_ml_users($id,0);
?>
</head>
<body>
<div align="center"><h3><?php printf(_("Mailing list %s"),$r["list"]); ?></h3></div>
<?php
// Affichage des liens pour vpir ou récupérer la liste des inscrits si il y en a
if ($total==0) {
$error=$err->errstr();
echo "<font color=\"#FF0000\">".$error."</font>";
} else {
?>
<p><?php printf(_("There is %s subscriber(s) in your list"),$total["count"]); ?></p>
<p><a href="lst_affsub.php?id=<?php echo $id ?>&offset=0"><?php __("View, edit and delete subscribers"); ?></a></p>
<p><a href="lst_downsub.php?id=<?php echo $id ?>"><?php __("Download the subscribers list"); ?></a></p>
<?php } // fin if
?>
<hr>
<!-- champ de saisie permettant de saisir un email -->
<form method="post" action="lst_addsub.php?id=<?php echo $id ?>">
<P><b><?php __("Add a subscriber to the list"); ?></b></P>
<br>
<table cellspacing="0" cellpadding="4">
<tr>
<th align="left"><?php __("Email address"); ?></th>
<td><input type="text" class="int" name="user" value="" size="20"></td>
</tr>
<tr>
<th align="left"><?php __("User's name"); ?></th>
<td><input type="text" class="int" name="nom_user" value="" size="20"></td>
</tr>
<tr>
<td colspan="2" align="center"><input type="submit" class="inb" name="submit" value="<?php __("Subscribe this email to the list"); ?>"></td>
</tr>
</table>
</form>
<hr>
<!-- Textearea permettant de saisir directement plusieurs emails -->
<form method="post" action="lst_addsub1.php?id=<?php echo $id ?>">
<P><b><?php __("Subscribe many users to the list:"); ?></b></P>
<table cellspacing="0" cellpadding="4">
<tr>
<th valign="top"><?php __("Enter the user email list, one per line"); ?></th>
</tr>
<tr>
<td align="center"><textarea cols="30" rows="15" class="int" name="inscrire"></textarea></td>
</tr>
<tr>
<td align="center"><input type="submit" class="inb" name="submit" value="<?php __("Subscribe those users to the list"); ?>"></td>
</tr>
</table>
</form>
<hr>
</body>
</html>

View File

@ -1,6 +1,6 @@
<?php <?php
/* /*
$Id: lst_doedittxt.php,v 1.1.1.1 2003/03/26 17:41:29 root Exp $ $Id: mxlist.php,v 1.1 2004/06/02 13:23:45 anonymous Exp $
---------------------------------------------------------------------- ----------------------------------------------------------------------
AlternC - Web Hosting System AlternC - Web Hosting System
Copyright (C) 2002 by the AlternC Development Team. Copyright (C) 2002 by the AlternC Development Team.
@ -24,18 +24,24 @@
To read the license please visit http://www.gnu.org/copyleft/gpl.html To read the license please visit http://www.gnu.org/copyleft/gpl.html
---------------------------------------------------------------------- ----------------------------------------------------------------------
Original Author of file: Benjamin Sonntag Original Author of file: Benjamin Sonntag
Purpose of file: DO Edit a mailing-list template file Purpose of file: Returns the list of mx-hosted domains to a secondary mx
---------------------------------------------------------------------- ----------------------------------------------------------------------
*/ */
require_once("../class/config.php"); require_once("../class/config_nochk.php");
// Check for the http authentication
if (!isset($_SERVER['PHP_AUTH_USER'])) {
header('WWW-Authenticate: Basic realm="MX List Authentication"');
header('HTTP/1.0 401 Unauthorized');
exit;
} else {
if ($mail->check_slave_account($_SERVER['PHP_AUTH_USER'],$_SERVER['PHP_AUTH_PW'])) {
$mail->echo_domain_list();
} else {
header('WWW-Authenticate: Basic realm="MX List Authentication"');
header('HTTP/1.0 401 Unauthorized');
exit;
}
}
if(!$r=$sympa->set_template($id,$txt,$message)) {
$error=$err->errstr();
include("lst_edittxt.php");
exit();
} else {
$error=_("The message has been successfully edited");
include("lst_edit.php");
exit();
}
?> ?>

View File

@ -439,6 +439,73 @@ class m_mail {
return true; return true;
} }
/* ----------------------------------------------------------------- */
/**
* Check for a slave account (secondary mx)
*/
function check_slave_account($login,$pass) {
global $db,$err;
$db->query("SELECT * FROM mxaccount WHERE login='$login' AND pass='$pass';");
if ($db->next_record()) {
return true;
}
return false;
}
/* ----------------------------------------------------------------- */
/**
* Out (echo) the complete mx-hosted domain list :
*/
function echo_domain_list() {
global $db,$err;
$db->query("SELECT domaine FROM domaines WHERE gesmx=1 ORDER BY domaine");
while ($db->next_record()) {
echo $db->f("domaine")."\n";
}
return true;
}
/* ----------------------------------------------------------------- */
/**
* Return the list of allowed slave accounts (secondary-mx)
*/
function enum_slave_account() {
global $db,$err;
$db->query("SELECT * FROM mxaccount;");
$res=array();
while ($db->next_record()) {
$res[]=$db->Record;
}
if (!count($res)) return false;
return $res;
}
/* ----------------------------------------------------------------- */
/**
* Add a slave account that will be allowed to access the mxdomain list
*/
function add_slave_account($login,$pass) {
global $db,$err;
$db->query("SELECT * FROM mxaccount WHERE login='$login'");
if ($db->next_record()) {
$err->raise("err",23); // FIXME
return false;
}
$db->query("INSERT INTO mxaccount (login,pass) VALUES ('$login','$pass')");
return true;
}
/* ----------------------------------------------------------------- */
/**
* Remove a slave account
*/
function del_slave_account($login) {
global $db,$err;
$db->query("DELETE FROM mxaccount WHERE login='$login'");
return true;
}
/* ----------------------------------------------------------------- */ /* ----------------------------------------------------------------- */
/** Crée le compte pop $mail@$dom, avec pour mot de passe $pass /** Crée le compte pop $mail@$dom, avec pour mot de passe $pass
* @param string $mail Compte email à créer en pop * @param string $mail Compte email à créer en pop

View File

@ -25,12 +25,13 @@ msgstr ""
#: ../admin/adm_dorenew.php:38 ../admin/adm_dosu.php:33 #: ../admin/adm_dorenew.php:38 ../admin/adm_dosu.php:33
#: ../admin/adm_edit.php:35 ../admin/adm_edit.php:39 ../admin/adm_list.php:36 #: ../admin/adm_edit.php:35 ../admin/adm_edit.php:39 ../admin/adm_list.php:36
#: ../admin/adm_login.php:33 ../admin/adm_login.php:40 #: ../admin/adm_login.php:33 ../admin/adm_login.php:40
#: ../admin/adm_panel.php:33 ../admin/adm_quotadoedit.php:33 #: ../admin/adm_mxaccount.php:33 ../admin/adm_panel.php:33
#: ../admin/adm_quotaedit.php:33 ../admin/adm_slaveaccount.php:33 #: ../admin/adm_quotadoedit.php:33 ../admin/adm_quotaedit.php:33
#: ../admin/adm_slaveip.php:33 ../admin/adm_tldadd.php:33 #: ../admin/adm_slaveaccount.php:33 ../admin/adm_slaveip.php:33
#: ../admin/adm_tlddoadd.php:33 ../admin/adm_tlddoedit.php:33 #: ../admin/adm_tldadd.php:33 ../admin/adm_tlddoadd.php:33
#: ../admin/adm_tldedit.php:33 ../admin/adm_tld.php:33 #: ../admin/adm_tlddoedit.php:33 ../admin/adm_tldedit.php:33
#: ../admin/adm_variables.php:33 ../class/reset_stats_conf.php:6 #: ../admin/adm_tld.php:33 ../admin/adm_variables.php:33
#: ../class/reset_stats_conf.php:6
msgid "This page is restricted to authorized staff" msgid "This page is restricted to authorized staff"
msgstr "" msgstr ""
@ -38,12 +39,11 @@ msgstr ""
msgid "New member" msgid "New member"
msgstr "Neuer Mitglied" msgstr "Neuer Mitglied"
#: ../admin/index.php:54 ../admin/adm_add.php:54 ../admin/adm_edit.php:61 #: ../admin/adm_add.php:54 ../admin/adm_edit.php:61 ../admin/adm_list.php:78
#: ../admin/adm_list.php:78 ../admin/adm_list.php:122 #: ../admin/adm_list.php:131 ../admin/adm_list.php:132
#: ../admin/adm_list.php:123 ../admin/adm_list.php:124 #: ../admin/adm_list.php:133 ../admin/adm_quotaedit.php:60
#: ../admin/adm_quotaedit.php:60 ../admin/ftp_add.php:53 #: ../admin/ftp_add.php:53 ../admin/ftp_edit.php:55 ../admin/ftp_list.php:60
#: ../admin/ftp_edit.php:55 ../admin/ftp_list.php:60 #: ../admin/hta_adduser.php:48 ../admin/hta_edit.php:59 ../admin/index.php:54
#: ../admin/hta_adduser.php:48 ../admin/hta_edit.php:59
#: ../admin/sql_getparam.php:49 ../admin/sql_list.php:96 #: ../admin/sql_getparam.php:49 ../admin/sql_list.php:96
#: ../admin/sql_passchg.php:51 ../admin/sql_users_add.php:54 #: ../admin/sql_passchg.php:51 ../admin/sql_users_add.php:54
#: ../admin/sql_users_list.php:95 #: ../admin/sql_users_list.php:95
@ -73,21 +73,21 @@ msgstr "Name"
msgid "First Name" msgid "First Name"
msgstr "Vorname" msgstr "Vorname"
#: ../admin/adm_list.php:78 ../admin/adm_add.php:82 ../admin/adm_edit.php:102 #: ../admin/adm_add.php:82 ../admin/adm_edit.php:102 ../admin/adm_list.php:78
#: ../admin/lst_affallsub.php:50 ../admin/lst_affsub.php:128
#: ../admin/lst_owner.php:69 ../admin/lst_subscribers.php:63
#: ../admin/mail_add.php:48 ../admin/mail_list.php:88 #: ../admin/mail_add.php:48 ../admin/mail_list.php:88
msgid "Email address" msgid "Email address"
msgstr "" msgstr ""
#: ../admin/adm_dodefquotas.php:43 ../admin/adm_dodefquotas.php:45 #: ../admin/adm_add.php:86 ../admin/adm_dodefquotas.php:43
#: ../admin/adm_dodefquotas.php:51 ../admin/adm_dodefquotas.php:53 #: ../admin/adm_dodefquotas.php:45 ../admin/adm_dodefquotas.php:51
#: ../admin/adm_add.php:86 ../admin/adm_edit.php:106 ../admin/adm_list.php:78 #: ../admin/adm_dodefquotas.php:53 ../admin/adm_edit.php:106
#: ../admin/adm_list.php:78
msgid "Account type" msgid "Account type"
msgstr "" msgstr ""
#: ../admin/adm_add.php:102 #: ../admin/adm_add.php:102
msgid "Create the domain username." #, php-format
msgid "Create the domain <b>username.%s</b>"
msgstr "" msgstr ""
#: ../admin/adm_add.php:106 ../admin/adm_list.php:62 #: ../admin/adm_add.php:106 ../admin/adm_list.php:62
@ -116,7 +116,7 @@ msgstr ""
msgid "Accounts of type" msgid "Accounts of type"
msgstr "" msgstr ""
#: ../admin/adm_defquotas.php:83 ../admin/adm_list.php:93 #: ../admin/adm_defquotas.php:83 ../admin/adm_list.php:97
#: ../admin/quota_show_all.php:36 #: ../admin/quota_show_all.php:36
msgid "Quotas" msgid "Quotas"
msgstr "Quotas" msgstr "Quotas"
@ -190,9 +190,9 @@ msgid ""
"change any DNS parameter or delete this domain from his account." "change any DNS parameter or delete this domain from his account."
msgstr "" msgstr ""
#: ../admin/adm_doms.php:56 ../admin/adm_slaveaccount.php:71 #: ../admin/adm_doms.php:56 ../admin/adm_mxaccount.php:71
#: ../admin/adm_slaveip.php:73 ../admin/adm_tld.php:67 #: ../admin/adm_slaveaccount.php:71 ../admin/adm_slaveip.php:73
#: ../admin/mail_list.php:88 #: ../admin/adm_tld.php:67 ../admin/mail_list.php:88
msgid "Action" msgid "Action"
msgstr "" msgstr ""
@ -242,12 +242,13 @@ msgstr "Nein"
msgid "Yes" msgid "Yes"
msgstr "Ja" msgstr "Ja"
#: ../admin/index.php:55 ../admin/adm_edit.php:78 #: ../admin/adm_edit.php:78 ../admin/adm_mxaccount.php:71
#: ../admin/adm_slaveaccount.php:71 ../admin/adm_slaveaccount.php:91 #: ../admin/adm_mxaccount.php:91 ../admin/adm_slaveaccount.php:71
#: ../admin/ftp_add.php:56 ../admin/ftp_edit.php:58 #: ../admin/adm_slaveaccount.php:91 ../admin/ftp_add.php:56
#: ../admin/hta_adduser.php:49 ../admin/sql_getparam.php:50 #: ../admin/ftp_edit.php:58 ../admin/hta_adduser.php:49 ../admin/index.php:55
#: ../admin/sql_list.php:97 ../admin/sql_passchg.php:52 #: ../admin/sql_getparam.php:50 ../admin/sql_list.php:97
#: ../admin/sql_users_add.php:58 ../admin/sql_users_list.php:96 #: ../admin/sql_passchg.php:52 ../admin/sql_users_add.php:58
#: ../admin/sql_users_list.php:96
msgid "Password" msgid "Password"
msgstr "Passwört" msgstr "Passwört"
@ -334,42 +335,41 @@ msgstr ""
msgid "Last ip" msgid "Last ip"
msgstr "" msgstr ""
#: ../admin/main.php:55 ../admin/adm_list.php:78 #: ../admin/adm_list.php:78 ../admin/main.php:55
msgid "Expiry" msgid "Expiry"
msgstr "" msgstr ""
#: ../admin/lst_affallsub.php:60 ../admin/lst_affsub.php:138 #: ../admin/adm_list.php:96 ../admin/adm_tld.php:75 ../admin/dom_edit.php:77
#: ../admin/mail_list.php:97 ../admin/adm_list.php:92 ../admin/adm_tld.php:75 #: ../admin/ftp_list.php:70 ../admin/hta_edit.php:68 ../admin/hta_list.php:76
#: ../admin/dom_edit.php:77 ../admin/ftp_list.php:70 ../admin/hta_edit.php:68 #: ../admin/mail_list.php:97 ../admin/sta2_list.php:67
#: ../admin/hta_list.php:76 ../admin/sta2_list.php:67
msgid "Edit" msgid "Edit"
msgstr "" msgstr ""
#: ../admin/adm_list.php:96 ../admin/adm_list.php:148 #: ../admin/adm_list.php:100 ../admin/adm_list.php:157
#: ../admin/adm_list.php:169 ../admin/adm_list.php:194 #: ../admin/adm_list.php:178 ../admin/adm_list.php:203
msgid "Locked Account" msgid "Locked Account"
msgstr "" msgstr ""
#: ../admin/adm_list.php:100 #: ../admin/adm_list.php:103
msgid "Connect as" msgid "Connect as"
msgstr "" msgstr ""
#: ../admin/adm_list.php:144 ../admin/adm_list.php:165 #: ../admin/adm_list.php:153 ../admin/adm_list.php:174
#: ../admin/adm_list.php:190 #: ../admin/adm_list.php:199
msgid "E" msgid "E"
msgstr "" msgstr ""
#: ../admin/adm_list.php:145 ../admin/adm_list.php:166 #: ../admin/adm_list.php:154 ../admin/adm_list.php:175
#: ../admin/adm_list.php:191 #: ../admin/adm_list.php:200
msgid "Q" msgid "Q"
msgstr "" msgstr ""
#: ../admin/adm_list.php:151 ../admin/adm_list.php:173 #: ../admin/adm_list.php:160 ../admin/adm_list.php:182
#: ../admin/adm_list.php:197 #: ../admin/adm_list.php:206
msgid "C" msgid "C"
msgstr "" msgstr ""
#: ../admin/adm_list.php:209 ../admin/ftp_list.php:77 #: ../admin/adm_list.php:218 ../admin/ftp_list.php:77
msgid "Delete checked accounts" msgid "Delete checked accounts"
msgstr "" msgstr ""
@ -381,6 +381,47 @@ msgstr ""
msgid "Member login" msgid "Member login"
msgstr "" msgstr ""
#: ../admin/adm_mxaccount.php:40 ../admin/adm_slaveaccount.php:40
msgid "The requested account has been deleted. It is now denied."
msgstr ""
#: ../admin/adm_mxaccount.php:46 ../admin/adm_slaveaccount.php:46
msgid "The requested account address has been created. It is now allowed."
msgstr ""
#: ../admin/adm_mxaccount.php:55 ../admin/adm_panel.php:54
msgid "Manage allowed accounts for secondary mx"
msgstr ""
#: ../admin/adm_mxaccount.php:67
msgid ""
"Here is the list of the allowed accounts for secondary mx management. You "
"can configure the alternc-secondarymx package on your secondary mx server "
"and give him the login/pass that will grant him access to your server's mx-"
"hosted domain list. "
msgstr ""
#: ../admin/adm_mxaccount.php:71 ../admin/adm_mxaccount.php:91
#: ../admin/adm_slaveaccount.php:71 ../admin/adm_slaveaccount.php:91
msgid "Login"
msgstr ""
#: ../admin/adm_mxaccount.php:79 ../admin/adm_slaveaccount.php:79
#: ../admin/adm_slaveip.php:81 ../admin/bro_main.php:138
#: ../admin/dom_edit.php:80 ../admin/mail_list.php:88
msgid "Delete"
msgstr ""
#: ../admin/adm_mxaccount.php:88
msgid ""
"If you want to allow a new server to access your mx-hosted domain list, give "
"him an account."
msgstr ""
#: ../admin/adm_mxaccount.php:97 ../admin/adm_slaveaccount.php:97
msgid "Add this account to the allowed list"
msgstr ""
#: ../admin/adm_panel.php:41 ../admin/menu_adm.php:40 #: ../admin/adm_panel.php:41 ../admin/menu_adm.php:40
msgid "Admin Control Panel" msgid "Admin Control Panel"
msgstr "" msgstr ""
@ -398,11 +439,11 @@ msgstr ""
msgid "Manage allowed accounts for slave zone transfers" msgid "Manage allowed accounts for slave zone transfers"
msgstr "" msgstr ""
#: ../admin/adm_panel.php:54 ../admin/adm_variables.php:48 #: ../admin/adm_panel.php:55 ../admin/adm_variables.php:48
msgid "Configure AlternC variables" msgid "Configure AlternC variables"
msgstr "" msgstr ""
#: ../admin/adm_panel.php:55 #: ../admin/adm_panel.php:56
msgid "Show all quotas" msgid "Show all quotas"
msgstr "" msgstr ""
@ -414,15 +455,15 @@ msgstr ""
msgid "Editing the quotas of a member" msgid "Editing the quotas of a member"
msgstr "" msgstr ""
#: ../admin/quota_show.php:42 ../admin/adm_quotaedit.php:61 #: ../admin/adm_quotaedit.php:61 ../admin/quota_show.php:42
msgid "Quota" msgid "Quota"
msgstr "" msgstr ""
#: ../admin/quota_show.php:42 ../admin/adm_quotaedit.php:61 #: ../admin/adm_quotaedit.php:61 ../admin/quota_show.php:42
msgid "Total" msgid "Total"
msgstr "" msgstr ""
#: ../admin/quota_show.php:42 ../admin/adm_quotaedit.php:61 #: ../admin/adm_quotaedit.php:61 ../admin/quota_show.php:42
msgid "Used" msgid "Used"
msgstr "Benützt" msgstr "Benützt"
@ -435,14 +476,6 @@ msgstr "quota_"
msgid "Edit the quotas" msgid "Edit the quotas"
msgstr "" msgstr ""
#: ../admin/adm_slaveaccount.php:40
msgid "The requested account has been deleted. It is now denied."
msgstr ""
#: ../admin/adm_slaveaccount.php:46
msgid "The requested account address has been created. It is now allowed."
msgstr ""
#: ../admin/adm_slaveaccount.php:67 #: ../admin/adm_slaveaccount.php:67
msgid "" msgid ""
"Here is the list of the allowed accounts for slave dns synchronization. You " "Here is the list of the allowed accounts for slave dns synchronization. You "
@ -450,27 +483,12 @@ msgid ""
"the login/pass that will grant him access to your server's domain list. " "the login/pass that will grant him access to your server's domain list. "
msgstr "" msgstr ""
#: ../admin/adm_slaveaccount.php:71 ../admin/adm_slaveaccount.php:91
msgid "Login"
msgstr ""
#: ../admin/adm_slaveaccount.php:79 ../admin/adm_slaveip.php:81
#: ../admin/bro_main.php:138 ../admin/dom_edit.php:80
#: ../admin/lst_affallsub.php:50 ../admin/lst_affsub.php:128
#: ../admin/lst_owner.php:69 ../admin/mail_list.php:88
msgid "Delete"
msgstr ""
#: ../admin/adm_slaveaccount.php:88 #: ../admin/adm_slaveaccount.php:88
msgid "" msgid ""
"If you want to allow a new server to access your domain list, give him an " "If you want to allow a new server to access your domain list, give him an "
"account." "account."
msgstr "" msgstr ""
#: ../admin/adm_slaveaccount.php:97
msgid "Add this account to the allowed list"
msgstr ""
#: ../admin/adm_slaveip.php:40 #: ../admin/adm_slaveip.php:40
msgid "" msgid ""
"The requested ip address has been deleted. It will be denied in one hour." "The requested ip address has been deleted. It will be denied in one hour."
@ -523,7 +541,7 @@ msgstr ""
#: ../admin/adm_tldadd.php:52 #: ../admin/adm_tldadd.php:52
msgid "" msgid ""
"Warning : only some final tld are known in the whois function of AlternC, " "Warning : only some final tld are known in the whois function of AlternC, "
"please check m_domains.php accordingly." "please check m_dom.php accordingly."
msgstr "" msgstr ""
#: ../admin/adm_tldadd.php:58 ../admin/adm_tldedit.php:58 #: ../admin/adm_tldadd.php:58 ../admin/adm_tldedit.php:58
@ -603,19 +621,19 @@ msgstr ""
msgid "File editing" msgid "File editing"
msgstr "" msgstr ""
#: ../admin/bro_editor.php:69 #: ../admin/bro_editor.php:67
msgid "Save" msgid "Save"
msgstr "Speichern" msgstr "Speichern"
#: ../admin/bro_editor.php:70 #: ../admin/bro_editor.php:68
msgid "Save &amp; Quit" msgid "Save &amp; Quit"
msgstr "" msgstr ""
#: ../admin/bro_editor.php:71 #: ../admin/bro_editor.php:69
msgid "Quit" msgid "Quit"
msgstr "" msgstr ""
#: ../admin/hta_edit.php:50 ../admin/bro_main.php:89 ../admin/hta_edit.php:82 #: ../admin/bro_main.php:89 ../admin/hta_edit.php:50 ../admin/hta_edit.php:82
#: ../admin/menu_brouteur.php:34 #: ../admin/menu_brouteur.php:34
msgid "File browser" msgid "File browser"
msgstr "Dateimanager" msgstr "Dateimanager"
@ -624,7 +642,7 @@ msgstr "Dateimanager"
msgid "Create" msgid "Create"
msgstr "" msgstr ""
#: ../class/m_bro.php:222 ../class/m_bro.php:231 ../admin/bro_main.php:97 #: ../admin/bro_main.php:97 ../class/m_bro.php:222 ../class/m_bro.php:231
msgid "File" msgid "File"
msgstr "Datei" msgstr "Datei"
@ -650,7 +668,7 @@ msgid "Move"
msgstr "" msgstr ""
#: ../admin/bro_main.php:177 ../admin/bro_main.php:348 #: ../admin/bro_main.php:177 ../admin/bro_main.php:348
#: ../admin/sta2_list.php:71 ../admin/sta2_list.php:57 #: ../admin/sta2_list.php:57 ../admin/sta2_list.php:71
msgid "View" msgid "View"
msgstr "" msgstr ""
@ -827,8 +845,8 @@ msgstr ""
msgid "Your new domain %s has been successfully installed" msgid "Your new domain %s has been successfully installed"
msgstr "" msgstr ""
#: ../admin/hta_doedituser.php:53 ../admin/dom_doadd.php:49 #: ../admin/dom_doadd.php:49 ../admin/dom_dodel.php:69
#: ../admin/dom_dodel.php:69 ../admin/dom_editdns.php:57 #: ../admin/dom_editdns.php:57 ../admin/hta_doedituser.php:53
msgid "Click here to continue" msgid "Click here to continue"
msgstr "" msgstr ""
@ -892,8 +910,8 @@ msgstr ""
msgid "IP redirection" msgid "IP redirection"
msgstr "" msgstr ""
#: ../class/m_dom.php:551 ../admin/dom_edit.php:122 #: ../admin/dom_edit.php:122 ../admin/dom_subedit.php:83
#: ../admin/dom_subedit.php:83 #: ../class/m_dom.php:551
msgid "Webmail access" msgid "Webmail access"
msgstr "" msgstr ""
@ -986,7 +1004,7 @@ msgstr ""
msgid "FTP accounts list" msgid "FTP accounts list"
msgstr "" msgstr ""
#: ../admin/hta_list.php:50 ../admin/hta_add.php:37 ../admin/hta_list.php:86 #: ../admin/hta_add.php:37 ../admin/hta_list.php:50 ../admin/hta_list.php:86
#: ../admin/web_list.php:3 #: ../admin/web_list.php:3
msgid "Protect a folder" msgid "Protect a folder"
msgstr "" msgstr ""
@ -1054,7 +1072,7 @@ msgstr ""
msgid "Editing user %s in the protected folder %s" msgid "Editing user %s in the protected folder %s"
msgstr "" msgstr ""
#: ../admin/quota_show_all.php:50 ../admin/hta_edituser.php:48 #: ../admin/hta_edituser.php:48 ../admin/quota_show_all.php:50
#: ../admin/sql_users_list.php:53 #: ../admin/sql_users_list.php:53
msgid "User" msgid "User"
msgstr "" msgstr ""
@ -1101,157 +1119,14 @@ msgid "You must accept the session cookie to log-in"
msgstr "" msgstr ""
#: ../admin/index.php:66 #: ../admin/index.php:66
msgid "If you want to use a different language, click on the flag below" #, fuzzy
msgid "You can use a different language: "
msgstr "Für eine andere Sprache, click über die Fahne" msgstr "Für eine andere Sprache, click über die Fahne"
#: ../admin/index.php:75 ../admin/index.php:74 #: ../admin/index.php:74
msgid "AlternC, Opensource hosting control panel" msgid "AlternC, Opensource hosting control panel"
msgstr "" msgstr ""
#: ../admin/lst_addown.php:42
msgid "The new owner has been successfully added"
msgstr ""
#: ../admin/lst_addown.php:51 ../admin/lst_addsub1.php:51
#: ../admin/lst_addsub.php:50 ../admin/lst_affallsub.php:42
#: ../admin/lst_affsub.php:43 ../admin/lst_delown.php:52
#: ../admin/lst_delsub.php:50 ../admin/lst_doedit.php:51
#: ../admin/lst_doeditsub.php:46 ../admin/lst_owner.php:40
#: ../admin/lst_subscribers.php:40
#, php-format
msgid "Mailing list %s"
msgstr ""
#: ../admin/lst_addsub1.php:42
msgid "Subscription successfull"
msgstr ""
#: ../admin/lst_addsub.php:41
msgid "The new member has been successfully added"
msgstr ""
#: ../admin/lst_affallsub.php:50 ../admin/lst_affsub.php:128
msgid "Name"
msgstr ""
#: ../admin/lst_affallsub.php:65 ../admin/lst_affsub.php:143
msgid "Delete the checked subscribers"
msgstr ""
#: ../admin/lst_affallsub.php:72 ../admin/lst_affsub.php:228
msgid "Back to the subscription page"
msgstr ""
#: ../admin/lst_affsub.php:55
msgid "Show all subscribed emails"
msgstr ""
#: ../admin/lst_affsub.php:60
#, php-format
msgid "From %s to %s sur %s"
msgstr ""
#: ../admin/lst_affsub.php:211
msgid "To access directly a page from a mail address:"
msgstr ""
#: ../admin/lst_affsub.php:216 ../admin/lst_affsub.php:222
msgid "From "
msgstr ""
#: ../admin/lst_affsub.php:216 ../admin/lst_affsub.php:222
msgid "to"
msgstr ""
#: ../admin/lst_delown.php:43
msgid "The owner(s) has been successfully deleted"
msgstr ""
#: ../admin/lst_delsub.php:44
msgid "The mail(s) has been successfully unsubscribed from the list"
msgstr ""
#: ../admin/lst_delsub.php:57 ../admin/lst_doeditsub.php:52
msgid "Back"
msgstr ""
#: ../admin/lst_doedit.php:42
msgid "The list parameters has been successfully changed"
msgstr ""
#: ../admin/lst_doeditsub.php:39
msgid "The user's parameters has been successfully changed"
msgstr ""
#: ../admin/lst_doedittxt.php:37
msgid "The message has been successfully edited"
msgstr ""
#: ../admin/lst_owner.php:47
msgid "Add an owner to the list"
msgstr ""
#: ../admin/lst_owner.php:51
msgid "Enter the new owner's email"
msgstr ""
#: ../admin/lst_owner.php:54
msgid "Add this owner to the list"
msgstr ""
#: ../admin/lst_owner.php:56
msgid "Note: an owner is also a moderator"
msgstr ""
#: ../admin/lst_owner.php:66
msgid "Delete one or more owners from the list"
msgstr ""
#: ../admin/lst_owner.php:81
msgid "Delete the checked owners"
msgstr ""
#: ../admin/lst_owner.php:82
msgid "Note: a list must have at least one owner"
msgstr ""
#: ../admin/lst_subscribers.php:50
#, php-format
msgid "There is %s subscriber(s) in your list"
msgstr ""
#: ../admin/lst_subscribers.php:51
msgid "View, edit and delete subscribers"
msgstr ""
#: ../admin/lst_subscribers.php:52
msgid "Download the subscribers list"
msgstr ""
#: ../admin/lst_subscribers.php:59
msgid "Add a subscriber to the list"
msgstr ""
#: ../admin/lst_subscribers.php:67
msgid "User's name"
msgstr ""
#: ../admin/lst_subscribers.php:71
msgid "Subscribe this email to the list"
msgstr ""
#: ../admin/lst_subscribers.php:80
msgid "Subscribe many users to the list:"
msgstr ""
#: ../admin/lst_subscribers.php:83
msgid "Enter the user email list, one per line"
msgstr ""
#: ../admin/lst_subscribers.php:89
msgid "Subscribe those users to the list"
msgstr ""
#: ../admin/mail_add.php:37 #: ../admin/mail_add.php:37
#, php-format #, php-format
msgid "Add a mail to the domain %s" msgid "Add a mail to the domain %s"
@ -1281,16 +1156,41 @@ msgstr ""
msgid "help_mail_add" msgid "help_mail_add"
msgstr "" msgstr ""
#: ../admin/mail_del.php:42 ../admin/mail_dodel.php:41
msgid "Deleting mail accounts"
msgstr ""
#: ../admin/mail_del.php:43
msgid "Please confirm the deletion of the following mail accounts:"
msgstr ""
#: ../admin/mail_del.php:57 ../admin/mail_list.php:107
msgid "Delete the selected mailboxes"
msgstr ""
#: ../admin/mail_del.php:57
msgid "Don't delete accounts and go back to the mail list"
msgstr ""
#: ../admin/mail_doadd.php:44 #: ../admin/mail_doadd.php:44
#, php-format #, php-format
msgid "The mailbox <b>%s</b> has been successfully created" msgid "The mailbox <b>%s</b> has been successfully created"
msgstr "" msgstr ""
#: ../admin/mail_dodel.php:39 #: ../admin/mail_dodel.php:48
#, php-format #, php-format
msgid "The mailbox <b>%s</b> does not exist!" msgid "The mailbox <b>%s</b> does not exist!"
msgstr "" msgstr ""
#: ../admin/mail_dodel.php:51
#, php-format
msgid "The mailbox <b>%s</b> has been deleted!"
msgstr ""
#: ../admin/mail_dodel.php:60
msgid "Back to the mail account list"
msgstr ""
#: ../admin/mail_doedit.php:46 #: ../admin/mail_doedit.php:46
#, php-format #, php-format
msgid "The mailbox <b>%s</b> has been successfully changed" msgid "The mailbox <b>%s</b> has been successfully changed"
@ -1338,10 +1238,6 @@ msgstr ""
msgid "Size" msgid "Size"
msgstr "" msgstr ""
#: ../admin/mail_list.php:107
msgid "Delete the selected mailboxes"
msgstr ""
#: ../admin/main.php:38 #: ../admin/main.php:38
msgid "Last Login: " msgid "Last Login: "
msgstr "" msgstr ""
@ -1873,6 +1769,30 @@ msgstr ""
msgid "Not managed" msgid "Not managed"
msgstr "" msgstr ""
#: ../class/m_admin.php:53
msgid "This TLD is forbidden"
msgstr ""
#: ../class/m_admin.php:54
msgid "primary DNS is checked in WHOIS db"
msgstr ""
#: ../class/m_admin.php:55
msgid "primary & secondary DNS are checked in WHOIS db"
msgstr ""
#: ../class/m_admin.php:56
msgid "Domain must exist, but don't do any DNS check"
msgstr ""
#: ../class/m_admin.php:57
msgid "Domain can be installed, no check at all"
msgstr ""
#: ../class/m_admin.php:58
msgid "Domain can be installed, force NO DNS hosting)"
msgstr ""
#: ../class/m_err.php:64 ../class/m_err.php:90 ../class/m_err.php:107 #: ../class/m_err.php:64 ../class/m_err.php:90 ../class/m_err.php:107
#, php-format #, php-format
msgid "err_" msgid "err_"
@ -1883,15 +1803,6 @@ msgstr "err_"
msgid "_" msgid "_"
msgstr "_" msgstr "_"
#: ../class/m_mem.php:474
msgid "Help"
msgstr "Hilfe"
#: ../admin/index.php:66
#, fuzzy
msgid "You can use a different language: "
msgstr "Für eine andere Sprache, click über die Fahne"
#: ../class/mime.php:135 #: ../class/mime.php:135
msgid "CSS Stylesheet" msgid "CSS Stylesheet"
msgstr "" msgstr ""
@ -2024,29 +1935,12 @@ msgstr ""
msgid "Real Media File" msgid "Real Media File"
msgstr "" msgstr ""
#: ../class/m_admin.php:53 #: ../class/m_mem.php:474
msgid "This TLD is forbidden" msgid "Help"
msgstr "" msgstr "Hilfe"
#: ../class/m_admin.php:54 #~ msgid "If you want to use a different language, click on the flag below"
msgid "primary DNS is checked in WHOIS db" #~ msgstr "Für eine andere Sprache, click über die Fahne"
msgstr ""
#: ../class/m_admin.php:55
msgid "primary & secondary DNS are checked in WHOIS db"
msgstr ""
#: ../class/m_admin.php:56
msgid "Domain must exist, but don't do any DNS check"
msgstr ""
#: ../class/m_admin.php:57
msgid "Domain can be installed, no check at all"
msgstr ""
#: ../class/m_admin.php:58
msgid "Domain can be installed, force NO DNS hosting)"
msgstr ""
#~ msgid "lang" #~ msgid "lang"
#~ msgstr "lang" #~ msgstr "lang"

View File

@ -54,21 +54,6 @@ msgstr "This TLD already exists"
msgid "err_admin_13" msgid "err_admin_13"
msgstr "The login is too long (16 chars max)" msgstr "The login is too long (16 chars max)"
msgid "Description"
msgstr "Description"
msgid "Number of mailing-lists"
msgstr "Number of mailing-lists"
msgid "Number of domains"
msgstr "Number of domains"
msgid "Number of FTP accounts"
msgstr "Number of FTP accounts"
msgid "Number of web statistics"
msgstr "Number of web statistics"
msgid "quota_dom" msgid "quota_dom"
msgstr "Domain names" msgstr "Domain names"
@ -503,6 +488,21 @@ msgstr "This statistic set does not exist."
msgid "err_sta2_3" msgid "err_sta2_3"
msgstr "The chosen prefix is not allowed here" msgstr "The chosen prefix is not allowed here"
#~ msgid "Description"
#~ msgstr "Description"
#~ msgid "Number of mailing-lists"
#~ msgstr "Number of mailing-lists"
#~ msgid "Number of domains"
#~ msgstr "Number of domains"
#~ msgid "Number of FTP accounts"
#~ msgstr "Number of FTP accounts"
#~ msgid "Number of web statistics"
#~ msgstr "Number of web statistics"
#~ msgid "Number of email accounts" #~ msgid "Number of email accounts"
#~ msgstr "Number of email accounts" #~ msgstr "Number of email accounts"

View File

@ -20,12 +20,13 @@ msgstr ""
#: ../admin/adm_dorenew.php:38 ../admin/adm_dosu.php:33 #: ../admin/adm_dorenew.php:38 ../admin/adm_dosu.php:33
#: ../admin/adm_edit.php:35 ../admin/adm_edit.php:39 ../admin/adm_list.php:36 #: ../admin/adm_edit.php:35 ../admin/adm_edit.php:39 ../admin/adm_list.php:36
#: ../admin/adm_login.php:33 ../admin/adm_login.php:40 #: ../admin/adm_login.php:33 ../admin/adm_login.php:40
#: ../admin/adm_panel.php:33 ../admin/adm_quotadoedit.php:33 #: ../admin/adm_mxaccount.php:33 ../admin/adm_panel.php:33
#: ../admin/adm_quotaedit.php:33 ../admin/adm_slaveaccount.php:33 #: ../admin/adm_quotadoedit.php:33 ../admin/adm_quotaedit.php:33
#: ../admin/adm_slaveip.php:33 ../admin/adm_tldadd.php:33 #: ../admin/adm_slaveaccount.php:33 ../admin/adm_slaveip.php:33
#: ../admin/adm_tlddoadd.php:33 ../admin/adm_tlddoedit.php:33 #: ../admin/adm_tldadd.php:33 ../admin/adm_tlddoadd.php:33
#: ../admin/adm_tldedit.php:33 ../admin/adm_tld.php:33 #: ../admin/adm_tlddoedit.php:33 ../admin/adm_tldedit.php:33
#: ../admin/adm_variables.php:33 ../class/reset_stats_conf.php:6 #: ../admin/adm_tld.php:33 ../admin/adm_variables.php:33
#: ../class/reset_stats_conf.php:6
msgid "This page is restricted to authorized staff" msgid "This page is restricted to authorized staff"
msgstr "Esta página está reservada para los administradores" msgstr "Esta página está reservada para los administradores"
@ -33,12 +34,11 @@ msgstr "Esta p
msgid "New member" msgid "New member"
msgstr "Añadir nuevo miembro" msgstr "Añadir nuevo miembro"
#: ../admin/index.php:54 ../admin/adm_add.php:54 ../admin/adm_edit.php:61 #: ../admin/adm_add.php:54 ../admin/adm_edit.php:61 ../admin/adm_list.php:78
#: ../admin/adm_list.php:78 ../admin/adm_list.php:122 #: ../admin/adm_list.php:131 ../admin/adm_list.php:132
#: ../admin/adm_list.php:123 ../admin/adm_list.php:124 #: ../admin/adm_list.php:133 ../admin/adm_quotaedit.php:60
#: ../admin/adm_quotaedit.php:60 ../admin/ftp_add.php:53 #: ../admin/ftp_add.php:53 ../admin/ftp_edit.php:55 ../admin/ftp_list.php:60
#: ../admin/ftp_edit.php:55 ../admin/ftp_list.php:60 #: ../admin/hta_adduser.php:48 ../admin/hta_edit.php:59 ../admin/index.php:54
#: ../admin/hta_adduser.php:48 ../admin/hta_edit.php:59
#: ../admin/sql_getparam.php:49 ../admin/sql_list.php:96 #: ../admin/sql_getparam.php:49 ../admin/sql_list.php:96
#: ../admin/sql_passchg.php:51 ../admin/sql_users_add.php:54 #: ../admin/sql_passchg.php:51 ../admin/sql_users_add.php:54
#: ../admin/sql_users_list.php:95 #: ../admin/sql_users_list.php:95
@ -69,23 +69,22 @@ msgstr "Apellido"
msgid "First Name" msgid "First Name"
msgstr "Nombre" msgstr "Nombre"
#: ../admin/adm_list.php:78 ../admin/adm_add.php:82 ../admin/adm_edit.php:102 #: ../admin/adm_add.php:82 ../admin/adm_edit.php:102 ../admin/adm_list.php:78
#: ../admin/lst_affallsub.php:50 ../admin/lst_affsub.php:128
#: ../admin/lst_owner.php:69 ../admin/lst_subscribers.php:63
#: ../admin/mail_add.php:48 ../admin/mail_list.php:88 #: ../admin/mail_add.php:48 ../admin/mail_list.php:88
msgid "Email address" msgid "Email address"
msgstr "Dirección de correo" msgstr "Dirección de correo"
#: ../admin/adm_dodefquotas.php:43 ../admin/adm_dodefquotas.php:45 #: ../admin/adm_add.php:86 ../admin/adm_dodefquotas.php:43
#: ../admin/adm_dodefquotas.php:51 ../admin/adm_dodefquotas.php:53 #: ../admin/adm_dodefquotas.php:45 ../admin/adm_dodefquotas.php:51
#: ../admin/adm_add.php:86 ../admin/adm_edit.php:106 ../admin/adm_list.php:78 #: ../admin/adm_dodefquotas.php:53 ../admin/adm_edit.php:106
#: ../admin/adm_list.php:78
#, fuzzy #, fuzzy
msgid "Account type" msgid "Account type"
msgstr "¿Cuenta activa?" msgstr "¿Cuenta activa?"
#: ../admin/adm_add.php:102 #: ../admin/adm_add.php:102
#, fuzzy #, fuzzy, php-format
msgid "Create the domain username." msgid "Create the domain <b>username.%s</b>"
msgstr "Crear la cuenta FTP." msgstr "Crear la cuenta FTP."
#: ../admin/adm_add.php:106 ../admin/adm_list.php:62 #: ../admin/adm_add.php:106 ../admin/adm_list.php:62
@ -116,7 +115,7 @@ msgstr ""
msgid "Accounts of type" msgid "Accounts of type"
msgstr "" msgstr ""
#: ../admin/adm_defquotas.php:83 ../admin/adm_list.php:93 #: ../admin/adm_defquotas.php:83 ../admin/adm_list.php:97
#: ../admin/quota_show_all.php:36 #: ../admin/quota_show_all.php:36
msgid "Quotas" msgid "Quotas"
msgstr "Cuotas" msgstr "Cuotas"
@ -195,9 +194,9 @@ msgid ""
"change any DNS parameter or delete this domain from his account." "change any DNS parameter or delete this domain from his account."
msgstr "" msgstr ""
#: ../admin/adm_doms.php:56 ../admin/adm_slaveaccount.php:71 #: ../admin/adm_doms.php:56 ../admin/adm_mxaccount.php:71
#: ../admin/adm_slaveip.php:73 ../admin/adm_tld.php:67 #: ../admin/adm_slaveaccount.php:71 ../admin/adm_slaveip.php:73
#: ../admin/mail_list.php:88 #: ../admin/adm_tld.php:67 ../admin/mail_list.php:88
msgid "Action" msgid "Action"
msgstr "Acción" msgstr "Acción"
@ -251,12 +250,13 @@ msgstr "No"
msgid "Yes" msgid "Yes"
msgstr "Si" msgstr "Si"
#: ../admin/index.php:55 ../admin/adm_edit.php:78 #: ../admin/adm_edit.php:78 ../admin/adm_mxaccount.php:71
#: ../admin/adm_slaveaccount.php:71 ../admin/adm_slaveaccount.php:91 #: ../admin/adm_mxaccount.php:91 ../admin/adm_slaveaccount.php:71
#: ../admin/ftp_add.php:56 ../admin/ftp_edit.php:58 #: ../admin/adm_slaveaccount.php:91 ../admin/ftp_add.php:56
#: ../admin/hta_adduser.php:49 ../admin/sql_getparam.php:50 #: ../admin/ftp_edit.php:58 ../admin/hta_adduser.php:49 ../admin/index.php:55
#: ../admin/sql_list.php:97 ../admin/sql_passchg.php:52 #: ../admin/sql_getparam.php:50 ../admin/sql_list.php:97
#: ../admin/sql_users_add.php:58 ../admin/sql_users_list.php:96 #: ../admin/sql_passchg.php:52 ../admin/sql_users_add.php:58
#: ../admin/sql_users_list.php:96
msgid "Password" msgid "Password"
msgstr "Contraseña" msgstr "Contraseña"
@ -352,42 +352,41 @@ msgstr ""
msgid "Last ip" msgid "Last ip"
msgstr "Última conexión: " msgstr "Última conexión: "
#: ../admin/main.php:55 ../admin/adm_list.php:78 #: ../admin/adm_list.php:78 ../admin/main.php:55
msgid "Expiry" msgid "Expiry"
msgstr "" msgstr ""
#: ../admin/lst_affallsub.php:60 ../admin/lst_affsub.php:138 #: ../admin/adm_list.php:96 ../admin/adm_tld.php:75 ../admin/dom_edit.php:77
#: ../admin/mail_list.php:97 ../admin/adm_list.php:92 ../admin/adm_tld.php:75 #: ../admin/ftp_list.php:70 ../admin/hta_edit.php:68 ../admin/hta_list.php:76
#: ../admin/dom_edit.php:77 ../admin/ftp_list.php:70 ../admin/hta_edit.php:68 #: ../admin/mail_list.php:97 ../admin/sta2_list.php:67
#: ../admin/hta_list.php:76 ../admin/sta2_list.php:67
msgid "Edit" msgid "Edit"
msgstr "Modificar" msgstr "Modificar"
#: ../admin/adm_list.php:96 ../admin/adm_list.php:148 #: ../admin/adm_list.php:100 ../admin/adm_list.php:157
#: ../admin/adm_list.php:169 ../admin/adm_list.php:194 #: ../admin/adm_list.php:178 ../admin/adm_list.php:203
msgid "Locked Account" msgid "Locked Account"
msgstr "Cuenta bloqueada" msgstr "Cuenta bloqueada"
#: ../admin/adm_list.php:100 #: ../admin/adm_list.php:103
msgid "Connect as" msgid "Connect as"
msgstr "Conectarse como" msgstr "Conectarse como"
#: ../admin/adm_list.php:144 ../admin/adm_list.php:165 #: ../admin/adm_list.php:153 ../admin/adm_list.php:174
#: ../admin/adm_list.php:190 #: ../admin/adm_list.php:199
msgid "E" msgid "E"
msgstr "" msgstr ""
#: ../admin/adm_list.php:145 ../admin/adm_list.php:166 #: ../admin/adm_list.php:154 ../admin/adm_list.php:175
#: ../admin/adm_list.php:191 #: ../admin/adm_list.php:200
msgid "Q" msgid "Q"
msgstr "" msgstr ""
#: ../admin/adm_list.php:151 ../admin/adm_list.php:173 #: ../admin/adm_list.php:160 ../admin/adm_list.php:182
#: ../admin/adm_list.php:197 #: ../admin/adm_list.php:206
msgid "C" msgid "C"
msgstr "" msgstr ""
#: ../admin/adm_list.php:209 ../admin/ftp_list.php:77 #: ../admin/adm_list.php:218 ../admin/ftp_list.php:77
msgid "Delete checked accounts" msgid "Delete checked accounts"
msgstr "Suprimir las cuentas marcadas" msgstr "Suprimir las cuentas marcadas"
@ -400,6 +399,48 @@ msgstr "AlternC Desktop"
msgid "Member login" msgid "Member login"
msgstr "Lista de miembros" msgstr "Lista de miembros"
#: ../admin/adm_mxaccount.php:40 ../admin/adm_slaveaccount.php:40
#, fuzzy
msgid "The requested account has been deleted. It is now denied."
msgstr "El dominio marcado ha sido borrado"
#: ../admin/adm_mxaccount.php:46 ../admin/adm_slaveaccount.php:46
msgid "The requested account address has been created. It is now allowed."
msgstr ""
#: ../admin/adm_mxaccount.php:55 ../admin/adm_panel.php:54
msgid "Manage allowed accounts for secondary mx"
msgstr ""
#: ../admin/adm_mxaccount.php:67
msgid ""
"Here is the list of the allowed accounts for secondary mx management. You "
"can configure the alternc-secondarymx package on your secondary mx server "
"and give him the login/pass that will grant him access to your server's mx-"
"hosted domain list. "
msgstr ""
#: ../admin/adm_mxaccount.php:71 ../admin/adm_mxaccount.php:91
#: ../admin/adm_slaveaccount.php:71 ../admin/adm_slaveaccount.php:91
msgid "Login"
msgstr ""
#: ../admin/adm_mxaccount.php:79 ../admin/adm_slaveaccount.php:79
#: ../admin/adm_slaveip.php:81 ../admin/bro_main.php:138
#: ../admin/dom_edit.php:80 ../admin/mail_list.php:88
msgid "Delete"
msgstr "Borrar"
#: ../admin/adm_mxaccount.php:88
msgid ""
"If you want to allow a new server to access your mx-hosted domain list, give "
"him an account."
msgstr ""
#: ../admin/adm_mxaccount.php:97 ../admin/adm_slaveaccount.php:97
msgid "Add this account to the allowed list"
msgstr ""
#: ../admin/adm_panel.php:41 ../admin/menu_adm.php:40 #: ../admin/adm_panel.php:41 ../admin/menu_adm.php:40
msgid "Admin Control Panel" msgid "Admin Control Panel"
msgstr "Admin Control Panel" msgstr "Admin Control Panel"
@ -417,12 +458,12 @@ msgstr ""
msgid "Manage allowed accounts for slave zone transfers" msgid "Manage allowed accounts for slave zone transfers"
msgstr "" msgstr ""
#: ../admin/adm_panel.php:54 ../admin/adm_variables.php:48 #: ../admin/adm_panel.php:55 ../admin/adm_variables.php:48
#, fuzzy #, fuzzy
msgid "Configure AlternC variables" msgid "Configure AlternC variables"
msgstr "Configurar el manejador de archivos" msgstr "Configurar el manejador de archivos"
#: ../admin/adm_panel.php:55 #: ../admin/adm_panel.php:56
msgid "Show all quotas" msgid "Show all quotas"
msgstr "" msgstr ""
@ -434,15 +475,15 @@ msgstr "Cuotas modificadas con
msgid "Editing the quotas of a member" msgid "Editing the quotas of a member"
msgstr "Modificar cuotas del miembro" msgstr "Modificar cuotas del miembro"
#: ../admin/quota_show.php:42 ../admin/adm_quotaedit.php:61 #: ../admin/adm_quotaedit.php:61 ../admin/quota_show.php:42
msgid "Quota" msgid "Quota"
msgstr "Cuota" msgstr "Cuota"
#: ../admin/quota_show.php:42 ../admin/adm_quotaedit.php:61 #: ../admin/adm_quotaedit.php:61 ../admin/quota_show.php:42
msgid "Total" msgid "Total"
msgstr "Total" msgstr "Total"
#: ../admin/quota_show.php:42 ../admin/adm_quotaedit.php:61 #: ../admin/adm_quotaedit.php:61 ../admin/quota_show.php:42
msgid "Used" msgid "Used"
msgstr "Usado" msgstr "Usado"
@ -456,15 +497,6 @@ msgstr "Domain names"
msgid "Edit the quotas" msgid "Edit the quotas"
msgstr "Modificar cuotas" msgstr "Modificar cuotas"
#: ../admin/adm_slaveaccount.php:40
#, fuzzy
msgid "The requested account has been deleted. It is now denied."
msgstr "El dominio marcado ha sido borrado"
#: ../admin/adm_slaveaccount.php:46
msgid "The requested account address has been created. It is now allowed."
msgstr ""
#: ../admin/adm_slaveaccount.php:67 #: ../admin/adm_slaveaccount.php:67
msgid "" msgid ""
"Here is the list of the allowed accounts for slave dns synchronization. You " "Here is the list of the allowed accounts for slave dns synchronization. You "
@ -472,27 +504,12 @@ msgid ""
"the login/pass that will grant him access to your server's domain list. " "the login/pass that will grant him access to your server's domain list. "
msgstr "" msgstr ""
#: ../admin/adm_slaveaccount.php:71 ../admin/adm_slaveaccount.php:91
msgid "Login"
msgstr ""
#: ../admin/adm_slaveaccount.php:79 ../admin/adm_slaveip.php:81
#: ../admin/bro_main.php:138 ../admin/dom_edit.php:80
#: ../admin/lst_affallsub.php:50 ../admin/lst_affsub.php:128
#: ../admin/lst_owner.php:69 ../admin/mail_list.php:88
msgid "Delete"
msgstr "Borrar"
#: ../admin/adm_slaveaccount.php:88 #: ../admin/adm_slaveaccount.php:88
msgid "" msgid ""
"If you want to allow a new server to access your domain list, give him an " "If you want to allow a new server to access your domain list, give him an "
"account." "account."
msgstr "" msgstr ""
#: ../admin/adm_slaveaccount.php:97
msgid "Add this account to the allowed list"
msgstr ""
#: ../admin/adm_slaveip.php:40 #: ../admin/adm_slaveip.php:40
msgid "" msgid ""
"The requested ip address has been deleted. It will be denied in one hour." "The requested ip address has been deleted. It will be denied in one hour."
@ -547,9 +564,10 @@ msgstr ""
"done." "done."
#: ../admin/adm_tldadd.php:52 #: ../admin/adm_tldadd.php:52
#, fuzzy
msgid "" msgid ""
"Warning : only some final tld are known in the whois function of AlternC, " "Warning : only some final tld are known in the whois function of AlternC, "
"please check m_domains.php accordingly." "please check m_dom.php accordingly."
msgstr "" msgstr ""
"Warning : only some final tld are known in the whois function of AlternC, " "Warning : only some final tld are known in the whois function of AlternC, "
"please check m_domains.php accordingly." "please check m_domains.php accordingly."
@ -634,20 +652,20 @@ msgstr "Su archivo %s a sido guardado"
msgid "File editing" msgid "File editing"
msgstr "Editar archivo" msgstr "Editar archivo"
#: ../admin/bro_editor.php:69 #: ../admin/bro_editor.php:67
msgid "Save" msgid "Save"
msgstr "Save" msgstr "Save"
#: ../admin/bro_editor.php:70 #: ../admin/bro_editor.php:68
msgid "Save &amp; Quit" msgid "Save &amp; Quit"
msgstr "Save &amp; Quit" msgstr "Save &amp; Quit"
#: ../admin/bro_editor.php:71 #: ../admin/bro_editor.php:69
#, fuzzy #, fuzzy
msgid "Quit" msgid "Quit"
msgstr "Cuota" msgstr "Cuota"
#: ../admin/hta_edit.php:50 ../admin/bro_main.php:89 ../admin/hta_edit.php:82 #: ../admin/bro_main.php:89 ../admin/hta_edit.php:50 ../admin/hta_edit.php:82
#: ../admin/menu_brouteur.php:34 #: ../admin/menu_brouteur.php:34
msgid "File browser" msgid "File browser"
msgstr "Manejador de archivos" msgstr "Manejador de archivos"
@ -656,7 +674,7 @@ msgstr "Manejador de archivos"
msgid "Create" msgid "Create"
msgstr "Crear" msgstr "Crear"
#: ../class/m_bro.php:222 ../class/m_bro.php:231 ../admin/bro_main.php:97 #: ../admin/bro_main.php:97 ../class/m_bro.php:222 ../class/m_bro.php:231
msgid "File" msgid "File"
msgstr "Archivo" msgstr "Archivo"
@ -682,7 +700,7 @@ msgid "Move"
msgstr "Move" msgstr "Move"
#: ../admin/bro_main.php:177 ../admin/bro_main.php:348 #: ../admin/bro_main.php:177 ../admin/bro_main.php:348
#: ../admin/sta2_list.php:71 ../admin/sta2_list.php:57 #: ../admin/sta2_list.php:57 ../admin/sta2_list.php:71
msgid "View" msgid "View"
msgstr "Ver" msgstr "Ver"
@ -868,8 +886,8 @@ msgstr "Hospedar un dominio"
msgid "Your new domain %s has been successfully installed" msgid "Your new domain %s has been successfully installed"
msgstr "Su nuevo dominio %s ha sido instalado con éxito" msgstr "Su nuevo dominio %s ha sido instalado con éxito"
#: ../admin/hta_doedituser.php:53 ../admin/dom_doadd.php:49 #: ../admin/dom_doadd.php:49 ../admin/dom_dodel.php:69
#: ../admin/dom_dodel.php:69 ../admin/dom_editdns.php:57 #: ../admin/dom_editdns.php:57 ../admin/hta_doedituser.php:53
msgid "Click here to continue" msgid "Click here to continue"
msgstr "Haga clic aquí para seguir" msgstr "Haga clic aquí para seguir"
@ -937,8 +955,8 @@ msgstr "Dirigir hac
msgid "IP redirection" msgid "IP redirection"
msgstr "Dirigir hacía una dirección IP" msgstr "Dirigir hacía una dirección IP"
#: ../class/m_dom.php:551 ../admin/dom_edit.php:122 #: ../admin/dom_edit.php:122 ../admin/dom_subedit.php:83
#: ../admin/dom_subedit.php:83 #: ../class/m_dom.php:551
msgid "Webmail access" msgid "Webmail access"
msgstr "Acceso al webmail" msgstr "Acceso al webmail"
@ -1039,7 +1057,7 @@ msgstr "Modificar cuenta FTP."
msgid "FTP accounts list" msgid "FTP accounts list"
msgstr "Lista de las cuentas ftp" msgstr "Lista de las cuentas ftp"
#: ../admin/hta_list.php:50 ../admin/hta_add.php:37 ../admin/hta_list.php:86 #: ../admin/hta_add.php:37 ../admin/hta_list.php:50 ../admin/hta_list.php:86
#: ../admin/web_list.php:3 #: ../admin/web_list.php:3
msgid "Protect a folder" msgid "Protect a folder"
msgstr "Proteger una carpeta" msgstr "Proteger una carpeta"
@ -1107,7 +1125,7 @@ msgstr "Suprimir los usuarios marcados"
msgid "Editing user %s in the protected folder %s" msgid "Editing user %s in the protected folder %s"
msgstr "Modificar usuario %s en la carpeta protegida %s" msgstr "Modificar usuario %s en la carpeta protegida %s"
#: ../admin/quota_show_all.php:50 ../admin/hta_edituser.php:48 #: ../admin/hta_edituser.php:48 ../admin/quota_show_all.php:50
#: ../admin/sql_users_list.php:53 #: ../admin/sql_users_list.php:53
#, fuzzy #, fuzzy
msgid "User" msgid "User"
@ -1158,172 +1176,14 @@ msgid "You must accept the session cookie to log-in"
msgstr "Debe aceptar el cookie de sesión para poder conectarse" msgstr "Debe aceptar el cookie de sesión para poder conectarse"
#: ../admin/index.php:66 #: ../admin/index.php:66
msgid "If you want to use a different language, click on the flag below" #, fuzzy
msgid "You can use a different language: "
msgstr "Si desea cambiar de idioma, haga clic sobre una de las banderas" msgstr "Si desea cambiar de idioma, haga clic sobre una de las banderas"
#: ../admin/index.php:75 ../admin/index.php:74 #: ../admin/index.php:74
msgid "AlternC, Opensource hosting control panel" msgid "AlternC, Opensource hosting control panel"
msgstr "" msgstr ""
#: ../admin/lst_addown.php:42
#, fuzzy
msgid "The new owner has been successfully added"
msgstr "El nuevo miembro a sido creado con éxito"
#: ../admin/lst_addown.php:51 ../admin/lst_addsub1.php:51
#: ../admin/lst_addsub.php:50 ../admin/lst_affallsub.php:42
#: ../admin/lst_affsub.php:43 ../admin/lst_delown.php:52
#: ../admin/lst_delsub.php:50 ../admin/lst_doedit.php:51
#: ../admin/lst_doeditsub.php:46 ../admin/lst_owner.php:40
#: ../admin/lst_subscribers.php:40
#, php-format
msgid "Mailing list %s"
msgstr ""
#: ../admin/lst_addsub1.php:42
msgid "Subscription successfull"
msgstr ""
#: ../admin/lst_addsub.php:41
#, fuzzy
msgid "The new member has been successfully added"
msgstr "El nuevo miembro a sido creado con éxito"
#: ../admin/lst_affallsub.php:50 ../admin/lst_affsub.php:128
#, fuzzy
msgid "Name"
msgstr "Cambiar nombre"
#: ../admin/lst_affallsub.php:65 ../admin/lst_affsub.php:143
#, fuzzy
msgid "Delete the checked subscribers"
msgstr "Suprimir los usuarios marcados"
#: ../admin/lst_affallsub.php:72 ../admin/lst_affsub.php:228
#, fuzzy
msgid "Back to the subscription page"
msgstr "Regresar al manejador de archivos"
#: ../admin/lst_affsub.php:55
msgid "Show all subscribed emails"
msgstr ""
#: ../admin/lst_affsub.php:60
#, php-format
msgid "From %s to %s sur %s"
msgstr ""
#: ../admin/lst_affsub.php:211
msgid "To access directly a page from a mail address:"
msgstr ""
#: ../admin/lst_affsub.php:216 ../admin/lst_affsub.php:222
msgid "From "
msgstr ""
#: ../admin/lst_affsub.php:216 ../admin/lst_affsub.php:222
msgid "to"
msgstr ""
#: ../admin/lst_delown.php:43
#, fuzzy
msgid "The owner(s) has been successfully deleted"
msgstr "El dominio %s ha sido borrado."
#: ../admin/lst_delsub.php:44
#, fuzzy
msgid "The mail(s) has been successfully unsubscribed from the list"
msgstr "El dominio %s ha sido borrado."
#: ../admin/lst_delsub.php:57 ../admin/lst_doeditsub.php:52
#, fuzzy
msgid "Back"
msgstr "Regresar"
#: ../admin/lst_doedit.php:42
#, fuzzy
msgid "The list parameters has been successfully changed"
msgstr "Sus parámetros de copia de seguridad han sido cambiados."
#: ../admin/lst_doeditsub.php:39
#, fuzzy
msgid "The user's parameters has been successfully changed"
msgstr "Sus parámetros de copia de seguridad han sido cambiados."
#: ../admin/lst_doedittxt.php:37
#, fuzzy
msgid "The message has been successfully edited"
msgstr "La cuenta ha sido modificada con éxito"
#: ../admin/lst_owner.php:47
#, fuzzy
msgid "Add an owner to the list"
msgstr "Añadir una cuenta de correo para el dominio %s"
#: ../admin/lst_owner.php:51
msgid "Enter the new owner's email"
msgstr ""
#: ../admin/lst_owner.php:54
msgid "Add this owner to the list"
msgstr ""
#: ../admin/lst_owner.php:56
msgid "Note: an owner is also a moderator"
msgstr ""
#: ../admin/lst_owner.php:66
msgid "Delete one or more owners from the list"
msgstr ""
#: ../admin/lst_owner.php:81
#, fuzzy
msgid "Delete the checked owners"
msgstr "Suprimir los usuarios marcados"
#: ../admin/lst_owner.php:82
msgid "Note: a list must have at least one owner"
msgstr ""
#: ../admin/lst_subscribers.php:50
#, php-format
msgid "There is %s subscriber(s) in your list"
msgstr ""
#: ../admin/lst_subscribers.php:51
msgid "View, edit and delete subscribers"
msgstr ""
#: ../admin/lst_subscribers.php:52
msgid "Download the subscribers list"
msgstr ""
#: ../admin/lst_subscribers.php:59
#, fuzzy
msgid "Add a subscriber to the list"
msgstr "Añadir una cuenta de correo para el dominio %s"
#: ../admin/lst_subscribers.php:67
#, fuzzy
msgid "User's name"
msgstr "Nombre de usuario"
#: ../admin/lst_subscribers.php:71
msgid "Subscribe this email to the list"
msgstr ""
#: ../admin/lst_subscribers.php:80
msgid "Subscribe many users to the list:"
msgstr ""
#: ../admin/lst_subscribers.php:83
msgid "Enter the user email list, one per line"
msgstr ""
#: ../admin/lst_subscribers.php:89
msgid "Subscribe those users to the list"
msgstr ""
#: ../admin/mail_add.php:37 #: ../admin/mail_add.php:37
#, php-format #, php-format
msgid "Add a mail to the domain %s" msgid "Add a mail to the domain %s"
@ -1363,16 +1223,44 @@ msgstr ""
"<code>login_sudominio</code> y la clave, aquella que acaba de entrar en este " "<code>login_sudominio</code> y la clave, aquella que acaba de entrar en este "
"formulario." "formulario."
#: ../admin/mail_del.php:42 ../admin/mail_dodel.php:41
#, fuzzy
msgid "Deleting mail accounts"
msgstr "Suprimir las cuentas marcadas"
#: ../admin/mail_del.php:43
#, fuzzy
msgid "Please confirm the deletion of the following mail accounts:"
msgstr "Confirmar la supresión de su base de datos SQL"
#: ../admin/mail_del.php:57 ../admin/mail_list.php:107
msgid "Delete the selected mailboxes"
msgstr "Borrar las cuentas de correo marcadas"
#: ../admin/mail_del.php:57
msgid "Don't delete accounts and go back to the mail list"
msgstr ""
#: ../admin/mail_doadd.php:44 #: ../admin/mail_doadd.php:44
#, php-format #, php-format
msgid "The mailbox <b>%s</b> has been successfully created" msgid "The mailbox <b>%s</b> has been successfully created"
msgstr "El buzón <b>%s</b> ha sido creado con éxito" msgstr "El buzón <b>%s</b> ha sido creado con éxito"
#: ../admin/mail_dodel.php:39 #: ../admin/mail_dodel.php:48
#, php-format #, php-format
msgid "The mailbox <b>%s</b> does not exist!" msgid "The mailbox <b>%s</b> does not exist!"
msgstr "¡El buzón <b>%s</b> no existe!" msgstr "¡El buzón <b>%s</b> no existe!"
#: ../admin/mail_dodel.php:51
#, fuzzy, php-format
msgid "The mailbox <b>%s</b> has been deleted!"
msgstr "El buzón <b>%s</b> ha sido creado con éxito"
#: ../admin/mail_dodel.php:60
#, fuzzy
msgid "Back to the mail account list"
msgstr "Lista de las cuentas ftp"
#: ../admin/mail_doedit.php:46 #: ../admin/mail_doedit.php:46
#, php-format #, php-format
msgid "The mailbox <b>%s</b> has been successfully changed" msgid "The mailbox <b>%s</b> has been successfully changed"
@ -1430,10 +1318,6 @@ msgstr ""
msgid "Size" msgid "Size"
msgstr "Tamaño" msgstr "Tamaño"
#: ../admin/mail_list.php:107
msgid "Delete the selected mailboxes"
msgstr "Borrar las cuentas de correo marcadas"
#: ../admin/main.php:38 #: ../admin/main.php:38
msgid "Last Login: " msgid "Last Login: "
msgstr "Última conexión: " msgstr "Última conexión: "
@ -2034,6 +1918,31 @@ msgstr ""
msgid "Not managed" msgid "Not managed"
msgstr "Administrar localmente" msgstr "Administrar localmente"
#: ../class/m_admin.php:53
msgid "This TLD is forbidden"
msgstr "This TLD is forbidden"
#: ../class/m_admin.php:54
msgid "primary DNS is checked in WHOIS db"
msgstr "primary DNS is checked in WHOIS db"
#: ../class/m_admin.php:55
msgid "primary & secondary DNS are checked in WHOIS db"
msgstr "primary & secondary DNS are checked in WHOIS db"
#: ../class/m_admin.php:56
msgid "Domain must exist, but don't do any DNS check"
msgstr "Domain must exist, but don't do any DNS check"
#: ../class/m_admin.php:57
msgid "Domain can be installed, no check at all"
msgstr "Domain can be installed, no check at all"
#: ../class/m_admin.php:58
#, fuzzy
msgid "Domain can be installed, force NO DNS hosting)"
msgstr "Domain can be installed, force NO DNS hosting"
#: ../class/m_err.php:64 ../class/m_err.php:90 ../class/m_err.php:107 #: ../class/m_err.php:64 ../class/m_err.php:90 ../class/m_err.php:107
#, fuzzy, php-format #, fuzzy, php-format
msgid "err_" msgid "err_"
@ -2044,15 +1953,6 @@ msgstr "El mensaje de error no existe (%s)"
msgid "_" msgid "_"
msgstr "" msgstr ""
#: ../class/m_mem.php:474
msgid "Help"
msgstr "Ayuda"
#: ../admin/index.php:66
#, fuzzy
msgid "You can use a different language: "
msgstr "Si desea cambiar de idioma, haga clic sobre una de las banderas"
#: ../class/mime.php:135 #: ../class/mime.php:135
msgid "CSS Stylesheet" msgid "CSS Stylesheet"
msgstr "" msgstr ""
@ -2186,30 +2086,83 @@ msgstr ""
msgid "Real Media File" msgid "Real Media File"
msgstr "" msgstr ""
#: ../class/m_admin.php:53 #: ../class/m_mem.php:474
msgid "This TLD is forbidden" msgid "Help"
msgstr "This TLD is forbidden" msgstr "Ayuda"
#: ../class/m_admin.php:54
msgid "primary DNS is checked in WHOIS db"
msgstr "primary DNS is checked in WHOIS db"
#: ../class/m_admin.php:55
msgid "primary & secondary DNS are checked in WHOIS db"
msgstr "primary & secondary DNS are checked in WHOIS db"
#: ../class/m_admin.php:56
msgid "Domain must exist, but don't do any DNS check"
msgstr "Domain must exist, but don't do any DNS check"
#: ../class/m_admin.php:57
msgid "Domain can be installed, no check at all"
msgstr "Domain can be installed, no check at all"
#: ../class/m_admin.php:58
#, fuzzy #, fuzzy
msgid "Domain can be installed, force NO DNS hosting)" #~ msgid "Create the domain username."
msgstr "Domain can be installed, force NO DNS hosting" #~ msgstr "Crear la cuenta FTP."
#~ msgid ""
#~ "Warning : only some final tld are known in the whois function of AlternC, "
#~ "please check m_domains.php accordingly."
#~ msgstr ""
#~ "Warning : only some final tld are known in the whois function of AlternC, "
#~ "please check m_domains.php accordingly."
#~ msgid "If you want to use a different language, click on the flag below"
#~ msgstr "Si desea cambiar de idioma, haga clic sobre una de las banderas"
#, fuzzy
#~ msgid "The new owner has been successfully added"
#~ msgstr "El nuevo miembro a sido creado con éxito"
#, fuzzy
#~ msgid "The new member has been successfully added"
#~ msgstr "El nuevo miembro a sido creado con éxito"
#, fuzzy
#~ msgid "Name"
#~ msgstr "Cambiar nombre"
#, fuzzy
#~ msgid "Delete the checked subscribers"
#~ msgstr "Suprimir los usuarios marcados"
#, fuzzy
#~ msgid "Back to the subscription page"
#~ msgstr "Regresar al manejador de archivos"
#, fuzzy
#~ msgid "The owner(s) has been successfully deleted"
#~ msgstr "El dominio %s ha sido borrado."
#, fuzzy
#~ msgid "The mail(s) has been successfully unsubscribed from the list"
#~ msgstr "El dominio %s ha sido borrado."
#, fuzzy
#~ msgid "Back"
#~ msgstr "Regresar"
#, fuzzy
#~ msgid "The list parameters has been successfully changed"
#~ msgstr "Sus parámetros de copia de seguridad han sido cambiados."
#, fuzzy
#~ msgid "The user's parameters has been successfully changed"
#~ msgstr "Sus parámetros de copia de seguridad han sido cambiados."
#, fuzzy
#~ msgid "The message has been successfully edited"
#~ msgstr "La cuenta ha sido modificada con éxito"
#, fuzzy
#~ msgid "Add an owner to the list"
#~ msgstr "Añadir una cuenta de correo para el dominio %s"
#, fuzzy
#~ msgid "Delete the checked owners"
#~ msgstr "Suprimir los usuarios marcados"
#, fuzzy
#~ msgid "Add a subscriber to the list"
#~ msgstr "Añadir una cuenta de correo para el dominio %s"
#, fuzzy
#~ msgid "User's name"
#~ msgstr "Nombre de usuario"
# ################################################################# # #################################################################
# m_membre # m_membre

View File

@ -60,21 +60,6 @@ msgstr "Este TLD ya existe."
msgid "err_admin_13" msgid "err_admin_13"
msgstr "-- ¡¡Solo los administradores tienen acceso a estas páginas!! -- " msgstr "-- ¡¡Solo los administradores tienen acceso a estas páginas!! -- "
msgid "Description"
msgstr "Description"
msgid "Number of mailing-lists"
msgstr "Nombre de listes de discussion"
msgid "Number of domains"
msgstr "Nombre de domaines"
msgid "Number of FTP accounts"
msgstr "Nombre de comptes FTP"
msgid "Number of web statistics"
msgstr "Nombre de jeux de statistiques"
msgid "quota_dom" msgid "quota_dom"
msgstr "Nombres de dominio" msgstr "Nombres de dominio"
@ -528,6 +513,21 @@ msgstr "Este juego de estad
msgid "err_sta2_3" msgid "err_sta2_3"
msgstr "El prefijo escogido no está permitido." msgstr "El prefijo escogido no está permitido."
#~ msgid "Description"
#~ msgstr "Description"
#~ msgid "Number of mailing-lists"
#~ msgstr "Nombre de listes de discussion"
#~ msgid "Number of domains"
#~ msgstr "Nombre de domaines"
#~ msgid "Number of FTP accounts"
#~ msgstr "Nombre de comptes FTP"
#~ msgid "Number of web statistics"
#~ msgstr "Nombre de jeux de statistiques"
#~ msgid "Number of email accounts" #~ msgid "Number of email accounts"
#~ msgstr "Nombre de comptes email" #~ msgstr "Nombre de comptes email"

View File

@ -28,12 +28,13 @@ msgstr ""
#: ../admin/adm_dorenew.php:38 ../admin/adm_dosu.php:33 #: ../admin/adm_dorenew.php:38 ../admin/adm_dosu.php:33
#: ../admin/adm_edit.php:35 ../admin/adm_edit.php:39 ../admin/adm_list.php:36 #: ../admin/adm_edit.php:35 ../admin/adm_edit.php:39 ../admin/adm_list.php:36
#: ../admin/adm_login.php:33 ../admin/adm_login.php:40 #: ../admin/adm_login.php:33 ../admin/adm_login.php:40
#: ../admin/adm_panel.php:33 ../admin/adm_quotadoedit.php:33 #: ../admin/adm_mxaccount.php:33 ../admin/adm_panel.php:33
#: ../admin/adm_quotaedit.php:33 ../admin/adm_slaveaccount.php:33 #: ../admin/adm_quotadoedit.php:33 ../admin/adm_quotaedit.php:33
#: ../admin/adm_slaveip.php:33 ../admin/adm_tldadd.php:33 #: ../admin/adm_slaveaccount.php:33 ../admin/adm_slaveip.php:33
#: ../admin/adm_tlddoadd.php:33 ../admin/adm_tlddoedit.php:33 #: ../admin/adm_tldadd.php:33 ../admin/adm_tlddoadd.php:33
#: ../admin/adm_tldedit.php:33 ../admin/adm_tld.php:33 #: ../admin/adm_tlddoedit.php:33 ../admin/adm_tldedit.php:33
#: ../admin/adm_variables.php:33 ../class/reset_stats_conf.php:6 #: ../admin/adm_tld.php:33 ../admin/adm_variables.php:33
#: ../class/reset_stats_conf.php:6
msgid "This page is restricted to authorized staff" msgid "This page is restricted to authorized staff"
msgstr "Esta página está reservada para los administradores" msgstr "Esta página está reservada para los administradores"
@ -41,12 +42,11 @@ msgstr "Esta p
msgid "New member" msgid "New member"
msgstr "Añadir nuevo miembro" msgstr "Añadir nuevo miembro"
#: ../admin/index.php:54 ../admin/adm_add.php:54 ../admin/adm_edit.php:61 #: ../admin/adm_add.php:54 ../admin/adm_edit.php:61 ../admin/adm_list.php:78
#: ../admin/adm_list.php:78 ../admin/adm_list.php:122 #: ../admin/adm_list.php:131 ../admin/adm_list.php:132
#: ../admin/adm_list.php:123 ../admin/adm_list.php:124 #: ../admin/adm_list.php:133 ../admin/adm_quotaedit.php:60
#: ../admin/adm_quotaedit.php:60 ../admin/ftp_add.php:53 #: ../admin/ftp_add.php:53 ../admin/ftp_edit.php:55 ../admin/ftp_list.php:60
#: ../admin/ftp_edit.php:55 ../admin/ftp_list.php:60 #: ../admin/hta_adduser.php:48 ../admin/hta_edit.php:59 ../admin/index.php:54
#: ../admin/hta_adduser.php:48 ../admin/hta_edit.php:59
#: ../admin/sql_getparam.php:49 ../admin/sql_list.php:96 #: ../admin/sql_getparam.php:49 ../admin/sql_list.php:96
#: ../admin/sql_passchg.php:51 ../admin/sql_users_add.php:54 #: ../admin/sql_passchg.php:51 ../admin/sql_users_add.php:54
#: ../admin/sql_users_list.php:95 #: ../admin/sql_users_list.php:95
@ -79,23 +79,22 @@ msgstr "Apellido"
msgid "First Name" msgid "First Name"
msgstr "Nombre" msgstr "Nombre"
#: ../admin/adm_list.php:78 ../admin/adm_add.php:82 ../admin/adm_edit.php:102 #: ../admin/adm_add.php:82 ../admin/adm_edit.php:102 ../admin/adm_list.php:78
#: ../admin/lst_affallsub.php:50 ../admin/lst_affsub.php:128
#: ../admin/lst_owner.php:69 ../admin/lst_subscribers.php:63
#: ../admin/mail_add.php:48 ../admin/mail_list.php:88 #: ../admin/mail_add.php:48 ../admin/mail_list.php:88
msgid "Email address" msgid "Email address"
msgstr "Dirección de correo" msgstr "Dirección de correo"
#: ../admin/adm_dodefquotas.php:43 ../admin/adm_dodefquotas.php:45 #: ../admin/adm_add.php:86 ../admin/adm_dodefquotas.php:43
#: ../admin/adm_dodefquotas.php:51 ../admin/adm_dodefquotas.php:53 #: ../admin/adm_dodefquotas.php:45 ../admin/adm_dodefquotas.php:51
#: ../admin/adm_add.php:86 ../admin/adm_edit.php:106 ../admin/adm_list.php:78 #: ../admin/adm_dodefquotas.php:53 ../admin/adm_edit.php:106
#: ../admin/adm_list.php:78
#, fuzzy #, fuzzy
msgid "Account type" msgid "Account type"
msgstr "Cuotas de la cuenta" msgstr "Cuotas de la cuenta"
#: ../admin/adm_add.php:102 #: ../admin/adm_add.php:102
#, fuzzy #, fuzzy, php-format
msgid "Create the domain username." msgid "Create the domain <b>username.%s</b>"
msgstr "Crear esta nueva base de datos" msgstr "Crear esta nueva base de datos"
#: ../admin/adm_add.php:106 ../admin/adm_list.php:62 #: ../admin/adm_add.php:106 ../admin/adm_list.php:62
@ -129,7 +128,7 @@ msgstr ""
msgid "Accounts of type" msgid "Accounts of type"
msgstr "Cuotas de la cuenta" msgstr "Cuotas de la cuenta"
#: ../admin/adm_defquotas.php:83 ../admin/adm_list.php:93 #: ../admin/adm_defquotas.php:83 ../admin/adm_list.php:97
#: ../admin/quota_show_all.php:36 #: ../admin/quota_show_all.php:36
msgid "Quotas" msgid "Quotas"
msgstr "Cuotas" msgstr "Cuotas"
@ -206,9 +205,9 @@ msgid ""
"change any DNS parameter or delete this domain from his account." "change any DNS parameter or delete this domain from his account."
msgstr "" msgstr ""
#: ../admin/adm_doms.php:56 ../admin/adm_slaveaccount.php:71 #: ../admin/adm_doms.php:56 ../admin/adm_mxaccount.php:71
#: ../admin/adm_slaveip.php:73 ../admin/adm_tld.php:67 #: ../admin/adm_slaveaccount.php:71 ../admin/adm_slaveip.php:73
#: ../admin/mail_list.php:88 #: ../admin/adm_tld.php:67 ../admin/mail_list.php:88
msgid "Action" msgid "Action"
msgstr "Acción" msgstr "Acción"
@ -259,12 +258,13 @@ msgstr "No"
msgid "Yes" msgid "Yes"
msgstr "Si" msgstr "Si"
#: ../admin/index.php:55 ../admin/adm_edit.php:78 #: ../admin/adm_edit.php:78 ../admin/adm_mxaccount.php:71
#: ../admin/adm_slaveaccount.php:71 ../admin/adm_slaveaccount.php:91 #: ../admin/adm_mxaccount.php:91 ../admin/adm_slaveaccount.php:71
#: ../admin/ftp_add.php:56 ../admin/ftp_edit.php:58 #: ../admin/adm_slaveaccount.php:91 ../admin/ftp_add.php:56
#: ../admin/hta_adduser.php:49 ../admin/sql_getparam.php:50 #: ../admin/ftp_edit.php:58 ../admin/hta_adduser.php:49 ../admin/index.php:55
#: ../admin/sql_list.php:97 ../admin/sql_passchg.php:52 #: ../admin/sql_getparam.php:50 ../admin/sql_list.php:97
#: ../admin/sql_users_add.php:58 ../admin/sql_users_list.php:96 #: ../admin/sql_passchg.php:52 ../admin/sql_users_add.php:58
#: ../admin/sql_users_list.php:96
msgid "Password" msgid "Password"
msgstr "Contraseña" msgstr "Contraseña"
@ -360,42 +360,41 @@ msgstr ""
msgid "Last ip" msgid "Last ip"
msgstr "Última conexión : " msgstr "Última conexión : "
#: ../admin/main.php:55 ../admin/adm_list.php:78 #: ../admin/adm_list.php:78 ../admin/main.php:55
msgid "Expiry" msgid "Expiry"
msgstr "" msgstr ""
#: ../admin/lst_affallsub.php:60 ../admin/lst_affsub.php:138 #: ../admin/adm_list.php:96 ../admin/adm_tld.php:75 ../admin/dom_edit.php:77
#: ../admin/mail_list.php:97 ../admin/adm_list.php:92 ../admin/adm_tld.php:75 #: ../admin/ftp_list.php:70 ../admin/hta_edit.php:68 ../admin/hta_list.php:76
#: ../admin/dom_edit.php:77 ../admin/ftp_list.php:70 ../admin/hta_edit.php:68 #: ../admin/mail_list.php:97 ../admin/sta2_list.php:67
#: ../admin/hta_list.php:76 ../admin/sta2_list.php:67
msgid "Edit" msgid "Edit"
msgstr "Modificar" msgstr "Modificar"
#: ../admin/adm_list.php:96 ../admin/adm_list.php:148 #: ../admin/adm_list.php:100 ../admin/adm_list.php:157
#: ../admin/adm_list.php:169 ../admin/adm_list.php:194 #: ../admin/adm_list.php:178 ../admin/adm_list.php:203
msgid "Locked Account" msgid "Locked Account"
msgstr "Cuenta bloqueada" msgstr "Cuenta bloqueada"
#: ../admin/adm_list.php:100 #: ../admin/adm_list.php:103
msgid "Connect as" msgid "Connect as"
msgstr "Conectar como" msgstr "Conectar como"
#: ../admin/adm_list.php:144 ../admin/adm_list.php:165 #: ../admin/adm_list.php:153 ../admin/adm_list.php:174
#: ../admin/adm_list.php:190 #: ../admin/adm_list.php:199
msgid "E" msgid "E"
msgstr "M" msgstr "M"
#: ../admin/adm_list.php:145 ../admin/adm_list.php:166 #: ../admin/adm_list.php:154 ../admin/adm_list.php:175
#: ../admin/adm_list.php:191 #: ../admin/adm_list.php:200
msgid "Q" msgid "Q"
msgstr "Q" msgstr "Q"
#: ../admin/adm_list.php:151 ../admin/adm_list.php:173 #: ../admin/adm_list.php:160 ../admin/adm_list.php:182
#: ../admin/adm_list.php:197 #: ../admin/adm_list.php:206
msgid "C" msgid "C"
msgstr "C" msgstr "C"
#: ../admin/adm_list.php:209 ../admin/ftp_list.php:77 #: ../admin/adm_list.php:218 ../admin/ftp_list.php:77
msgid "Delete checked accounts" msgid "Delete checked accounts"
msgstr "Suprimir las cuentas marcadas" msgstr "Suprimir las cuentas marcadas"
@ -407,6 +406,48 @@ msgstr "Bureau AlternC"
msgid "Member login" msgid "Member login"
msgstr "Login miembro" msgstr "Login miembro"
#: ../admin/adm_mxaccount.php:40 ../admin/adm_slaveaccount.php:40
#, fuzzy
msgid "The requested account has been deleted. It is now denied."
msgstr "El TLD ha sido borrado"
#: ../admin/adm_mxaccount.php:46 ../admin/adm_slaveaccount.php:46
msgid "The requested account address has been created. It is now allowed."
msgstr ""
#: ../admin/adm_mxaccount.php:55 ../admin/adm_panel.php:54
msgid "Manage allowed accounts for secondary mx"
msgstr ""
#: ../admin/adm_mxaccount.php:67
msgid ""
"Here is the list of the allowed accounts for secondary mx management. You "
"can configure the alternc-secondarymx package on your secondary mx server "
"and give him the login/pass that will grant him access to your server's mx-"
"hosted domain list. "
msgstr ""
#: ../admin/adm_mxaccount.php:71 ../admin/adm_mxaccount.php:91
#: ../admin/adm_slaveaccount.php:71 ../admin/adm_slaveaccount.php:91
msgid "Login"
msgstr ""
#: ../admin/adm_mxaccount.php:79 ../admin/adm_slaveaccount.php:79
#: ../admin/adm_slaveip.php:81 ../admin/bro_main.php:138
#: ../admin/dom_edit.php:80 ../admin/mail_list.php:88
msgid "Delete"
msgstr "Borrar"
#: ../admin/adm_mxaccount.php:88
msgid ""
"If you want to allow a new server to access your mx-hosted domain list, give "
"him an account."
msgstr ""
#: ../admin/adm_mxaccount.php:97 ../admin/adm_slaveaccount.php:97
msgid "Add this account to the allowed list"
msgstr ""
#: ../admin/adm_panel.php:41 ../admin/menu_adm.php:40 #: ../admin/adm_panel.php:41 ../admin/menu_adm.php:40
msgid "Admin Control Panel" msgid "Admin Control Panel"
msgstr "Panel de Control Administrador" msgstr "Panel de Control Administrador"
@ -424,12 +465,12 @@ msgstr ""
msgid "Manage allowed accounts for slave zone transfers" msgid "Manage allowed accounts for slave zone transfers"
msgstr "" msgstr ""
#: ../admin/adm_panel.php:54 ../admin/adm_variables.php:48 #: ../admin/adm_panel.php:55 ../admin/adm_variables.php:48
#, fuzzy #, fuzzy
msgid "Configure AlternC variables" msgid "Configure AlternC variables"
msgstr "Configurar el manejador de archivos" msgstr "Configurar el manejador de archivos"
#: ../admin/adm_panel.php:55 #: ../admin/adm_panel.php:56
#, fuzzy #, fuzzy
msgid "Show all quotas" msgid "Show all quotas"
msgstr "Mostrar cuotas" msgstr "Mostrar cuotas"
@ -442,15 +483,15 @@ msgstr "Cuotas modificadas con
msgid "Editing the quotas of a member" msgid "Editing the quotas of a member"
msgstr "Modificar cuotas del miembro" msgstr "Modificar cuotas del miembro"
#: ../admin/quota_show.php:42 ../admin/adm_quotaedit.php:61 #: ../admin/adm_quotaedit.php:61 ../admin/quota_show.php:42
msgid "Quota" msgid "Quota"
msgstr "Cuota" msgstr "Cuota"
#: ../admin/quota_show.php:42 ../admin/adm_quotaedit.php:61 #: ../admin/adm_quotaedit.php:61 ../admin/quota_show.php:42
msgid "Total" msgid "Total"
msgstr "Total" msgstr "Total"
#: ../admin/quota_show.php:42 ../admin/adm_quotaedit.php:61 #: ../admin/adm_quotaedit.php:61 ../admin/quota_show.php:42
msgid "Used" msgid "Used"
msgstr "Usado" msgstr "Usado"
@ -463,15 +504,6 @@ msgstr "quota_"
msgid "Edit the quotas" msgid "Edit the quotas"
msgstr "Modificar cuotas" msgstr "Modificar cuotas"
#: ../admin/adm_slaveaccount.php:40
#, fuzzy
msgid "The requested account has been deleted. It is now denied."
msgstr "El TLD ha sido borrado"
#: ../admin/adm_slaveaccount.php:46
msgid "The requested account address has been created. It is now allowed."
msgstr ""
#: ../admin/adm_slaveaccount.php:67 #: ../admin/adm_slaveaccount.php:67
msgid "" msgid ""
"Here is the list of the allowed accounts for slave dns synchronization. You " "Here is the list of the allowed accounts for slave dns synchronization. You "
@ -479,27 +511,12 @@ msgid ""
"the login/pass that will grant him access to your server's domain list. " "the login/pass that will grant him access to your server's domain list. "
msgstr "" msgstr ""
#: ../admin/adm_slaveaccount.php:71 ../admin/adm_slaveaccount.php:91
msgid "Login"
msgstr ""
#: ../admin/adm_slaveaccount.php:79 ../admin/adm_slaveip.php:81
#: ../admin/bro_main.php:138 ../admin/dom_edit.php:80
#: ../admin/lst_affallsub.php:50 ../admin/lst_affsub.php:128
#: ../admin/lst_owner.php:69 ../admin/mail_list.php:88
msgid "Delete"
msgstr "Borrar"
#: ../admin/adm_slaveaccount.php:88 #: ../admin/adm_slaveaccount.php:88
msgid "" msgid ""
"If you want to allow a new server to access your domain list, give him an " "If you want to allow a new server to access your domain list, give him an "
"account." "account."
msgstr "" msgstr ""
#: ../admin/adm_slaveaccount.php:97
msgid "Add this account to the allowed list"
msgstr ""
#: ../admin/adm_slaveip.php:40 #: ../admin/adm_slaveip.php:40
msgid "" msgid ""
"The requested ip address has been deleted. It will be denied in one hour." "The requested ip address has been deleted. It will be denied in one hour."
@ -554,9 +571,10 @@ msgstr ""
"efectuado." "efectuado."
#: ../admin/adm_tldadd.php:52 #: ../admin/adm_tldadd.php:52
#, fuzzy
msgid "" msgid ""
"Warning : only some final tld are known in the whois function of AlternC, " "Warning : only some final tld are known in the whois function of AlternC, "
"please check m_domains.php accordingly." "please check m_dom.php accordingly."
msgstr "" msgstr ""
"ADVERTENCIA: sólo algunos TLD son conocidos en la función whois de AlternC, " "ADVERTENCIA: sólo algunos TLD son conocidos en la función whois de AlternC, "
"por favor, verifique el archivo m_domains.php." "por favor, verifique el archivo m_domains.php."
@ -641,19 +659,19 @@ msgstr "Su archivo %s a sido guardado"
msgid "File editing" msgid "File editing"
msgstr "Editar archivo" msgstr "Editar archivo"
#: ../admin/bro_editor.php:69 #: ../admin/bro_editor.php:67
msgid "Save" msgid "Save"
msgstr "Guardar" msgstr "Guardar"
#: ../admin/bro_editor.php:70 #: ../admin/bro_editor.php:68
msgid "Save &amp; Quit" msgid "Save &amp; Quit"
msgstr "Guardar y Salir" msgstr "Guardar y Salir"
#: ../admin/bro_editor.php:71 #: ../admin/bro_editor.php:69
msgid "Quit" msgid "Quit"
msgstr "Salir" msgstr "Salir"
#: ../admin/hta_edit.php:50 ../admin/bro_main.php:89 ../admin/hta_edit.php:82 #: ../admin/bro_main.php:89 ../admin/hta_edit.php:50 ../admin/hta_edit.php:82
#: ../admin/menu_brouteur.php:34 #: ../admin/menu_brouteur.php:34
msgid "File browser" msgid "File browser"
msgstr "Manejador de archivos" msgstr "Manejador de archivos"
@ -662,7 +680,7 @@ msgstr "Manejador de archivos"
msgid "Create" msgid "Create"
msgstr "Crear" msgstr "Crear"
#: ../class/m_bro.php:222 ../class/m_bro.php:231 ../admin/bro_main.php:97 #: ../admin/bro_main.php:97 ../class/m_bro.php:222 ../class/m_bro.php:231
msgid "File" msgid "File"
msgstr "Archivo" msgstr "Archivo"
@ -688,7 +706,7 @@ msgid "Move"
msgstr "Mover" msgstr "Mover"
#: ../admin/bro_main.php:177 ../admin/bro_main.php:348 #: ../admin/bro_main.php:177 ../admin/bro_main.php:348
#: ../admin/sta2_list.php:71 ../admin/sta2_list.php:57 #: ../admin/sta2_list.php:57 ../admin/sta2_list.php:71
msgid "View" msgid "View"
msgstr "Ver" msgstr "Ver"
@ -867,8 +885,8 @@ msgstr "Hospedar un dominio"
msgid "Your new domain %s has been successfully installed" msgid "Your new domain %s has been successfully installed"
msgstr "Su nuevo dominio %s ha sido instalado con éxito" msgstr "Su nuevo dominio %s ha sido instalado con éxito"
#: ../admin/hta_doedituser.php:53 ../admin/dom_doadd.php:49 #: ../admin/dom_doadd.php:49 ../admin/dom_dodel.php:69
#: ../admin/dom_dodel.php:69 ../admin/dom_editdns.php:57 #: ../admin/dom_editdns.php:57 ../admin/hta_doedituser.php:53
msgid "Click here to continue" msgid "Click here to continue"
msgstr "Haga clic aquí para seguir" msgstr "Haga clic aquí para seguir"
@ -936,8 +954,8 @@ msgstr "Dirigir hac
msgid "IP redirection" msgid "IP redirection"
msgstr "Dirigir hacía una dirección IP" msgstr "Dirigir hacía una dirección IP"
#: ../class/m_dom.php:551 ../admin/dom_edit.php:122 #: ../admin/dom_edit.php:122 ../admin/dom_subedit.php:83
#: ../admin/dom_subedit.php:83 #: ../class/m_dom.php:551
msgid "Webmail access" msgid "Webmail access"
msgstr "Acceso Webmail" msgstr "Acceso Webmail"
@ -1038,7 +1056,7 @@ msgstr "Modificar cuenta FTP."
msgid "FTP accounts list" msgid "FTP accounts list"
msgstr "Lista de las cuentas ftp" msgstr "Lista de las cuentas ftp"
#: ../admin/hta_list.php:50 ../admin/hta_add.php:37 ../admin/hta_list.php:86 #: ../admin/hta_add.php:37 ../admin/hta_list.php:50 ../admin/hta_list.php:86
#: ../admin/web_list.php:3 #: ../admin/web_list.php:3
msgid "Protect a folder" msgid "Protect a folder"
msgstr "Proteger una carpeta" msgstr "Proteger una carpeta"
@ -1106,7 +1124,7 @@ msgstr "Suprimir los usuarios marcados"
msgid "Editing user %s in the protected folder %s" msgid "Editing user %s in the protected folder %s"
msgstr "Modificar usuario %s en la carpeta protegida %s" msgstr "Modificar usuario %s en la carpeta protegida %s"
#: ../admin/quota_show_all.php:50 ../admin/hta_edituser.php:48 #: ../admin/hta_edituser.php:48 ../admin/quota_show_all.php:50
#: ../admin/sql_users_list.php:53 #: ../admin/sql_users_list.php:53
msgid "User" msgid "User"
msgstr "Usuario" msgstr "Usuario"
@ -1155,172 +1173,14 @@ msgid "You must accept the session cookie to log-in"
msgstr "Debe aceptar el cookie de sesión para poder conectarse" msgstr "Debe aceptar el cookie de sesión para poder conectarse"
#: ../admin/index.php:66 #: ../admin/index.php:66
msgid "If you want to use a different language, click on the flag below" #, fuzzy
msgid "You can use a different language: "
msgstr "Si desea cambiar de idioma, haga clic sobre una de las banderas" msgstr "Si desea cambiar de idioma, haga clic sobre una de las banderas"
#: ../admin/index.php:75 ../admin/index.php:74 #: ../admin/index.php:74
msgid "AlternC, Opensource hosting control panel" msgid "AlternC, Opensource hosting control panel"
msgstr "" msgstr ""
#: ../admin/lst_addown.php:42
#, fuzzy
msgid "The new owner has been successfully added"
msgstr "El nuevo miembro a sido creado con éxito"
#: ../admin/lst_addown.php:51 ../admin/lst_addsub1.php:51
#: ../admin/lst_addsub.php:50 ../admin/lst_affallsub.php:42
#: ../admin/lst_affsub.php:43 ../admin/lst_delown.php:52
#: ../admin/lst_delsub.php:50 ../admin/lst_doedit.php:51
#: ../admin/lst_doeditsub.php:46 ../admin/lst_owner.php:40
#: ../admin/lst_subscribers.php:40
#, php-format
msgid "Mailing list %s"
msgstr ""
#: ../admin/lst_addsub1.php:42
msgid "Subscription successfull"
msgstr ""
#: ../admin/lst_addsub.php:41
#, fuzzy
msgid "The new member has been successfully added"
msgstr "El nuevo miembro a sido creado con éxito"
#: ../admin/lst_affallsub.php:50 ../admin/lst_affsub.php:128
#, fuzzy
msgid "Name"
msgstr "Cambiar nombre"
#: ../admin/lst_affallsub.php:65 ../admin/lst_affsub.php:143
#, fuzzy
msgid "Delete the checked subscribers"
msgstr "Suprimir los usuarios marcados"
#: ../admin/lst_affallsub.php:72 ../admin/lst_affsub.php:228
#, fuzzy
msgid "Back to the subscription page"
msgstr "Regresar a la lista de miembros"
#: ../admin/lst_affsub.php:55
msgid "Show all subscribed emails"
msgstr ""
#: ../admin/lst_affsub.php:60
#, php-format
msgid "From %s to %s sur %s"
msgstr ""
#: ../admin/lst_affsub.php:211
msgid "To access directly a page from a mail address:"
msgstr ""
#: ../admin/lst_affsub.php:216 ../admin/lst_affsub.php:222
msgid "From "
msgstr ""
#: ../admin/lst_affsub.php:216 ../admin/lst_affsub.php:222
msgid "to"
msgstr ""
#: ../admin/lst_delown.php:43
#, fuzzy
msgid "The owner(s) has been successfully deleted"
msgstr "El dominio %s ha sido borrado."
#: ../admin/lst_delsub.php:44
#, fuzzy
msgid "The mail(s) has been successfully unsubscribed from the list"
msgstr "El dominio %s ha sido borrado."
#: ../admin/lst_delsub.php:57 ../admin/lst_doeditsub.php:52
#, fuzzy
msgid "Back"
msgstr "Copia de seguridad"
#: ../admin/lst_doedit.php:42
#, fuzzy
msgid "The list parameters has been successfully changed"
msgstr "Sus parámetros de copia de seguridad han sido cambiados."
#: ../admin/lst_doeditsub.php:39
#, fuzzy
msgid "The user's parameters has been successfully changed"
msgstr "Sus parámetros de copia de seguridad han sido cambiados."
#: ../admin/lst_doedittxt.php:37
#, fuzzy
msgid "The message has been successfully edited"
msgstr "La cuenta ha sido modificada con éxito"
#: ../admin/lst_owner.php:47
#, fuzzy
msgid "Add an owner to the list"
msgstr "Añadir una cuenta de correo para el dominio %s"
#: ../admin/lst_owner.php:51
msgid "Enter the new owner's email"
msgstr ""
#: ../admin/lst_owner.php:54
msgid "Add this owner to the list"
msgstr ""
#: ../admin/lst_owner.php:56
msgid "Note: an owner is also a moderator"
msgstr ""
#: ../admin/lst_owner.php:66
msgid "Delete one or more owners from the list"
msgstr ""
#: ../admin/lst_owner.php:81
#, fuzzy
msgid "Delete the checked owners"
msgstr "Suprimir los usuarios marcados"
#: ../admin/lst_owner.php:82
msgid "Note: a list must have at least one owner"
msgstr ""
#: ../admin/lst_subscribers.php:50
#, php-format
msgid "There is %s subscriber(s) in your list"
msgstr ""
#: ../admin/lst_subscribers.php:51
msgid "View, edit and delete subscribers"
msgstr ""
#: ../admin/lst_subscribers.php:52
msgid "Download the subscribers list"
msgstr ""
#: ../admin/lst_subscribers.php:59
#, fuzzy
msgid "Add a subscriber to the list"
msgstr "Añadir una cuenta de correo para el dominio %s"
#: ../admin/lst_subscribers.php:67
#, fuzzy
msgid "User's name"
msgstr "Nombre de usuario"
#: ../admin/lst_subscribers.php:71
msgid "Subscribe this email to the list"
msgstr ""
#: ../admin/lst_subscribers.php:80
msgid "Subscribe many users to the list:"
msgstr ""
#: ../admin/lst_subscribers.php:83
msgid "Enter the user email list, one per line"
msgstr ""
#: ../admin/lst_subscribers.php:89
msgid "Subscribe those users to the list"
msgstr ""
#: ../admin/mail_add.php:37 #: ../admin/mail_add.php:37
#, php-format #, php-format
msgid "Add a mail to the domain %s" msgid "Add a mail to the domain %s"
@ -1360,16 +1220,44 @@ msgstr ""
"<code>login_sudominio</code> y la clave, aquella que acaba de entrar en este " "<code>login_sudominio</code> y la clave, aquella que acaba de entrar en este "
"formulario." "formulario."
#: ../admin/mail_del.php:42 ../admin/mail_dodel.php:41
#, fuzzy
msgid "Deleting mail accounts"
msgstr "Suprimir las cuentas marcadas"
#: ../admin/mail_del.php:43
#, fuzzy
msgid "Please confirm the deletion of the following mail accounts:"
msgstr "Confirmar la supresión de las bases de datos SQL siguientes"
#: ../admin/mail_del.php:57 ../admin/mail_list.php:107
msgid "Delete the selected mailboxes"
msgstr "Borrar las cuentas de correo marcadas"
#: ../admin/mail_del.php:57
msgid "Don't delete accounts and go back to the mail list"
msgstr ""
#: ../admin/mail_doadd.php:44 #: ../admin/mail_doadd.php:44
#, php-format #, php-format
msgid "The mailbox <b>%s</b> has been successfully created" msgid "The mailbox <b>%s</b> has been successfully created"
msgstr "El buzón <b>%s</b> ha sido creado con éxito" msgstr "El buzón <b>%s</b> ha sido creado con éxito"
#: ../admin/mail_dodel.php:39 #: ../admin/mail_dodel.php:48
#, php-format #, php-format
msgid "The mailbox <b>%s</b> does not exist!" msgid "The mailbox <b>%s</b> does not exist!"
msgstr "¡El buzón <b>%s</b> no existe!" msgstr "¡El buzón <b>%s</b> no existe!"
#: ../admin/mail_dodel.php:51
#, fuzzy, php-format
msgid "The mailbox <b>%s</b> has been deleted!"
msgstr "El buzón <b>%s</b> ha sido creado con éxito"
#: ../admin/mail_dodel.php:60
#, fuzzy
msgid "Back to the mail account list"
msgstr "Regresar a la lista de miembros"
#: ../admin/mail_doedit.php:46 #: ../admin/mail_doedit.php:46
#, php-format #, php-format
msgid "The mailbox <b>%s</b> has been successfully changed" msgid "The mailbox <b>%s</b> has been successfully changed"
@ -1427,10 +1315,6 @@ msgstr ""
msgid "Size" msgid "Size"
msgstr "Tamaño" msgstr "Tamaño"
#: ../admin/mail_list.php:107
msgid "Delete the selected mailboxes"
msgstr "Borrar las cuentas de correo marcadas"
#: ../admin/main.php:38 #: ../admin/main.php:38
msgid "Last Login: " msgid "Last Login: "
msgstr "Última conexión : " msgstr "Última conexión : "
@ -2015,6 +1899,30 @@ msgstr ""
msgid "Not managed" msgid "Not managed"
msgstr "Administrar localmente" msgstr "Administrar localmente"
#: ../class/m_admin.php:53
msgid "This TLD is forbidden"
msgstr ""
#: ../class/m_admin.php:54
msgid "primary DNS is checked in WHOIS db"
msgstr ""
#: ../class/m_admin.php:55
msgid "primary & secondary DNS are checked in WHOIS db"
msgstr ""
#: ../class/m_admin.php:56
msgid "Domain must exist, but don't do any DNS check"
msgstr ""
#: ../class/m_admin.php:57
msgid "Domain can be installed, no check at all"
msgstr ""
#: ../class/m_admin.php:58
msgid "Domain can be installed, force NO DNS hosting)"
msgstr ""
#: ../class/m_err.php:64 ../class/m_err.php:90 ../class/m_err.php:107 #: ../class/m_err.php:64 ../class/m_err.php:90 ../class/m_err.php:107
#, php-format #, php-format
msgid "err_" msgid "err_"
@ -2025,15 +1933,6 @@ msgstr "err_"
msgid "_" msgid "_"
msgstr "_" msgstr "_"
#: ../class/m_mem.php:474
msgid "Help"
msgstr "Ayuda"
#: ../admin/index.php:66
#, fuzzy
msgid "You can use a different language: "
msgstr "Si desea cambiar de idioma, haga clic sobre una de las banderas"
#: ../class/mime.php:135 #: ../class/mime.php:135
msgid "CSS Stylesheet" msgid "CSS Stylesheet"
msgstr "" msgstr ""
@ -2167,29 +2066,83 @@ msgstr ""
msgid "Real Media File" msgid "Real Media File"
msgstr "" msgstr ""
#: ../class/m_admin.php:53 #: ../class/m_mem.php:474
msgid "This TLD is forbidden" msgid "Help"
msgstr "" msgstr "Ayuda"
#: ../class/m_admin.php:54 #, fuzzy
msgid "primary DNS is checked in WHOIS db" #~ msgid "Create the domain username."
msgstr "" #~ msgstr "Crear esta nueva base de datos"
#: ../class/m_admin.php:55 #~ msgid ""
msgid "primary & secondary DNS are checked in WHOIS db" #~ "Warning : only some final tld are known in the whois function of AlternC, "
msgstr "" #~ "please check m_domains.php accordingly."
#~ msgstr ""
#~ "ADVERTENCIA: sólo algunos TLD son conocidos en la función whois de "
#~ "AlternC, por favor, verifique el archivo m_domains.php."
#: ../class/m_admin.php:56 #~ msgid "If you want to use a different language, click on the flag below"
msgid "Domain must exist, but don't do any DNS check" #~ msgstr "Si desea cambiar de idioma, haga clic sobre una de las banderas"
msgstr ""
#: ../class/m_admin.php:57 #, fuzzy
msgid "Domain can be installed, no check at all" #~ msgid "The new owner has been successfully added"
msgstr "" #~ msgstr "El nuevo miembro a sido creado con éxito"
#: ../class/m_admin.php:58 #, fuzzy
msgid "Domain can be installed, force NO DNS hosting)" #~ msgid "The new member has been successfully added"
msgstr "" #~ msgstr "El nuevo miembro a sido creado con éxito"
#, fuzzy
#~ msgid "Name"
#~ msgstr "Cambiar nombre"
#, fuzzy
#~ msgid "Delete the checked subscribers"
#~ msgstr "Suprimir los usuarios marcados"
#, fuzzy
#~ msgid "Back to the subscription page"
#~ msgstr "Regresar a la lista de miembros"
#, fuzzy
#~ msgid "The owner(s) has been successfully deleted"
#~ msgstr "El dominio %s ha sido borrado."
#, fuzzy
#~ msgid "The mail(s) has been successfully unsubscribed from the list"
#~ msgstr "El dominio %s ha sido borrado."
#, fuzzy
#~ msgid "Back"
#~ msgstr "Copia de seguridad"
#, fuzzy
#~ msgid "The list parameters has been successfully changed"
#~ msgstr "Sus parámetros de copia de seguridad han sido cambiados."
#, fuzzy
#~ msgid "The user's parameters has been successfully changed"
#~ msgstr "Sus parámetros de copia de seguridad han sido cambiados."
#, fuzzy
#~ msgid "The message has been successfully edited"
#~ msgstr "La cuenta ha sido modificada con éxito"
#, fuzzy
#~ msgid "Add an owner to the list"
#~ msgstr "Añadir una cuenta de correo para el dominio %s"
#, fuzzy
#~ msgid "Delete the checked owners"
#~ msgstr "Suprimir los usuarios marcados"
#, fuzzy
#~ msgid "Add a subscriber to the list"
#~ msgstr "Añadir una cuenta de correo para el dominio %s"
#, fuzzy
#~ msgid "User's name"
#~ msgstr "Nombre de usuario"
#~ msgid "Recalculate the quotas of the account" #~ msgid "Recalculate the quotas of the account"
#~ msgstr "Volver a calcular las cuotas de esta cuenta" #~ msgstr "Volver a calcular las cuotas de esta cuenta"

View File

@ -56,21 +56,6 @@ msgstr "Ce TLD existe d
msgid "err_admin_13" msgid "err_admin_13"
msgstr "Le login est trop long (16< caractères maximum)" msgstr "Le login est trop long (16< caractères maximum)"
msgid "Description"
msgstr "Description"
msgid "Number of mailing-lists"
msgstr "Nombre de listes de discussion"
msgid "Number of domains"
msgstr "Nombre de domaines"
msgid "Number of FTP accounts"
msgstr "Nombre de comptes FTP"
msgid "Number of web statistics"
msgstr "Nombre de jeux de statistiques"
msgid "quota_dom" msgid "quota_dom"
msgstr "Noms de domaines" msgstr "Noms de domaines"
@ -383,7 +368,7 @@ msgstr ""
"Vous devez être administrateur pour pouvoir modifier vos préférences " "Vous devez être administrateur pour pouvoir modifier vos préférences "
"administrateur." "administrateur."
# Please do NOT translate those strings to each language. Use the country language instead # Please do NOT translate those strings to each language. Use the original language instead
msgid "fr_FR" msgid "fr_FR"
msgstr "Français (France)" msgstr "Français (France)"
@ -505,90 +490,11 @@ msgstr "Aucune jeu de statistiques brutes"
msgid "err_sta2_3" msgid "err_sta2_3"
msgstr "Jeu de statistiques brutes non trouvé" msgstr "Jeu de statistiques brutes non trouvé"
#~ msgid "Number of email accounts" msgid "err_bro_1"
#~ msgstr "Nombre de comptes email" msgstr "Répertoire ou fichier incorrect !"
#~ msgid "This TLD is forbidden" msgid "err_bro_2"
#~ msgstr "Ce TLD est interdit" msgstr "Vous ne pouvez pas déplacer un fichier dans le même répertoire !"
#~ msgid "primary DNS is checked in WHOIS db" msgid "quota_web"
#~ msgstr "le DNS primaire est vérifié dans le WHOIS" msgstr "Espace disque (Ko)"
#~ msgid "primary & secondary DNS are checked in WHOIS db"
#~ msgstr "les DNS primaire ET secondaire sont vérifiés dans le WHOIS"
#~ msgid "Domain must exist, but don't do any DNS check"
#~ msgstr "Le domaine doit exister, mais aucun contrôle DNS n'est effectué"
#~ msgid "Domain can be installed, no check at all"
#~ msgstr "Le domaine peut être installé sans aucun contrôle"
#~ msgid "Domain can be installed, force NO DNS hosting"
#~ msgstr "Le domaine peut être installé, force la case 'PAS DE DNS'"
#~ msgid "The user has no database"
#~ msgstr "L'utilisateur n'a pas de base de données active"
#~ msgid "Enable the database"
#~ msgstr "Activer la base MySQL"
#~ msgid "The user has a MySQL database"
#~ msgstr "L'utilisateur dispose d'une base MySQL"
#~ msgid "Disable the database"
#~ msgstr "Désactiver la base MySQL"
#~ msgid "Disk space (in KB)"
#~ msgstr "Espace disque (en Ko)"
#~ msgid "Delete my SQL database"
#~ msgstr "Effacer ma base de données SQL"
#~ msgid "Manage the SQL backup"
#~ msgstr "Gestion de la sauvegarde de MySQL"
#~ msgid "Destroy my database"
#~ msgstr "Détruire ma base de données"
#~ msgid "Click here to continue"
#~ msgstr "Cliquer ici pour continuer"
#~ msgid "Yes"
#~ msgstr "Oui"
#~ msgid "No"
#~ msgstr "Non"
#~ msgid "General SQL Admin"
#~ msgstr "Admin SQL Général"
# Date drawn in the 1 column mode file list :
#~ msgid "%3$d-%2$d-%1$d %4$d:%5$d"
#~ msgstr "%1$d/%2$d/%3$d %4$dh%5$d"
#~ msgid "Copy"
#~ msgstr "Copier"
#~ msgid "1 column, detailed"
#~ msgstr "1 colonne, détaillé"
#~ msgid "2 columns, short"
#~ msgstr "2 colonnes, court"
#~ msgid "3 columns, short"
#~ msgstr "3 colonnes, court"
#~ msgid "Go back to the file manager"
#~ msgstr "Retourner au gestionnaire de fichier"
#~ msgid "Edit the newly created file"
#~ msgstr "Editer le fichier"
#~ msgid "err_bro_1"
#~ msgstr "Répertoire ou fichier incorrect !"
#~ msgid "err_bro_2"
#~ msgstr "Vous ne pouvez pas déplacer un fichier dans le même répertoire !"
#~ msgid "quota_web"
#~ msgstr "Espace disque (Ko)"

View File

@ -25,12 +25,13 @@ msgstr ""
#: ../admin/adm_dorenew.php:38 ../admin/adm_dosu.php:33 #: ../admin/adm_dorenew.php:38 ../admin/adm_dosu.php:33
#: ../admin/adm_edit.php:35 ../admin/adm_edit.php:39 ../admin/adm_list.php:36 #: ../admin/adm_edit.php:35 ../admin/adm_edit.php:39 ../admin/adm_list.php:36
#: ../admin/adm_login.php:33 ../admin/adm_login.php:40 #: ../admin/adm_login.php:33 ../admin/adm_login.php:40
#: ../admin/adm_panel.php:33 ../admin/adm_quotadoedit.php:33 #: ../admin/adm_mxaccount.php:33 ../admin/adm_panel.php:33
#: ../admin/adm_quotaedit.php:33 ../admin/adm_slaveaccount.php:33 #: ../admin/adm_quotadoedit.php:33 ../admin/adm_quotaedit.php:33
#: ../admin/adm_slaveip.php:33 ../admin/adm_tldadd.php:33 #: ../admin/adm_slaveaccount.php:33 ../admin/adm_slaveip.php:33
#: ../admin/adm_tlddoadd.php:33 ../admin/adm_tlddoedit.php:33 #: ../admin/adm_tldadd.php:33 ../admin/adm_tlddoadd.php:33
#: ../admin/adm_tldedit.php:33 ../admin/adm_tld.php:33 #: ../admin/adm_tlddoedit.php:33 ../admin/adm_tldedit.php:33
#: ../admin/adm_variables.php:33 ../class/reset_stats_conf.php:6 #: ../admin/adm_tld.php:33 ../admin/adm_variables.php:33
#: ../class/reset_stats_conf.php:6
msgid "This page is restricted to authorized staff" msgid "This page is restricted to authorized staff"
msgstr "Cette page est réservée aux administrateurs" msgstr "Cette page est réservée aux administrateurs"
@ -38,12 +39,11 @@ msgstr "Cette page est r
msgid "New member" msgid "New member"
msgstr "Ajout d'un membre" msgstr "Ajout d'un membre"
#: ../admin/index.php:54 ../admin/adm_add.php:54 ../admin/adm_edit.php:61 #: ../admin/adm_add.php:54 ../admin/adm_edit.php:61 ../admin/adm_list.php:78
#: ../admin/adm_list.php:78 ../admin/adm_list.php:122 #: ../admin/adm_list.php:131 ../admin/adm_list.php:132
#: ../admin/adm_list.php:123 ../admin/adm_list.php:124 #: ../admin/adm_list.php:133 ../admin/adm_quotaedit.php:60
#: ../admin/adm_quotaedit.php:60 ../admin/ftp_add.php:53 #: ../admin/ftp_add.php:53 ../admin/ftp_edit.php:55 ../admin/ftp_list.php:60
#: ../admin/ftp_edit.php:55 ../admin/ftp_list.php:60 #: ../admin/hta_adduser.php:48 ../admin/hta_edit.php:59 ../admin/index.php:54
#: ../admin/hta_adduser.php:48 ../admin/hta_edit.php:59
#: ../admin/sql_getparam.php:49 ../admin/sql_list.php:96 #: ../admin/sql_getparam.php:49 ../admin/sql_list.php:96
#: ../admin/sql_passchg.php:51 ../admin/sql_users_add.php:54 #: ../admin/sql_passchg.php:51 ../admin/sql_users_add.php:54
#: ../admin/sql_users_list.php:95 #: ../admin/sql_users_list.php:95
@ -73,23 +73,22 @@ msgstr "Nom"
msgid "First Name" msgid "First Name"
msgstr "Prénom" msgstr "Prénom"
#: ../admin/adm_list.php:78 ../admin/adm_add.php:82 ../admin/adm_edit.php:102 #: ../admin/adm_add.php:82 ../admin/adm_edit.php:102 ../admin/adm_list.php:78
#: ../admin/lst_affallsub.php:50 ../admin/lst_affsub.php:128
#: ../admin/lst_owner.php:69 ../admin/lst_subscribers.php:63
#: ../admin/mail_add.php:48 ../admin/mail_list.php:88 #: ../admin/mail_add.php:48 ../admin/mail_list.php:88
msgid "Email address" msgid "Email address"
msgstr "Adresse Email" msgstr "Adresse Email"
#: ../admin/adm_dodefquotas.php:43 ../admin/adm_dodefquotas.php:45 #: ../admin/adm_add.php:86 ../admin/adm_dodefquotas.php:43
#: ../admin/adm_dodefquotas.php:51 ../admin/adm_dodefquotas.php:53 #: ../admin/adm_dodefquotas.php:45 ../admin/adm_dodefquotas.php:51
#: ../admin/adm_add.php:86 ../admin/adm_edit.php:106 ../admin/adm_list.php:78 #: ../admin/adm_dodefquotas.php:53 ../admin/adm_edit.php:106
#: ../admin/adm_list.php:78
msgid "Account type" msgid "Account type"
msgstr "Type de compte" msgstr "Type de compte"
#: ../admin/adm_add.php:102 #: ../admin/adm_add.php:102
#, fuzzy #, php-format
msgid "Create the domain username." msgid "Create the domain <b>username.%s</b>"
msgstr "Créer ce nouvel utilisateur" msgstr "Installer le domaine <b>login.%s</b>"
#: ../admin/adm_add.php:106 ../admin/adm_list.php:62 #: ../admin/adm_add.php:106 ../admin/adm_list.php:62
msgid "Create a new member" msgid "Create a new member"
@ -116,11 +115,10 @@ msgstr ""
"comptes." "comptes."
#: ../admin/adm_defquotas.php:81 #: ../admin/adm_defquotas.php:81
#, fuzzy
msgid "Accounts of type" msgid "Accounts of type"
msgstr "Type de compte" msgstr "Type de compte"
#: ../admin/adm_defquotas.php:83 ../admin/adm_list.php:93 #: ../admin/adm_defquotas.php:83 ../admin/adm_list.php:97
#: ../admin/quota_show_all.php:36 #: ../admin/quota_show_all.php:36
msgid "Quotas" msgid "Quotas"
msgstr "Quotas" msgstr "Quotas"
@ -138,7 +136,7 @@ msgstr "Modifier les quotas par d
#: ../admin/hta_doadduser.php:33 ../admin/hta_doedituser.php:33 #: ../admin/hta_doadduser.php:33 ../admin/hta_doedituser.php:33
#: ../admin/mail_doadd.php:33 ../admin/mail_doedit.php:35 #: ../admin/mail_doadd.php:33 ../admin/mail_doedit.php:35
msgid "Passwords do not match" msgid "Passwords do not match"
msgstr "" msgstr "Les mots de passe ne correspondent pas"
#: ../admin/adm_doadd.php:75 #: ../admin/adm_doadd.php:75
msgid "The new member has been successfully created" msgid "The new member has been successfully created"
@ -146,30 +144,27 @@ msgstr "Le membre a
#: ../admin/adm_dodefquotas.php:43 #: ../admin/adm_dodefquotas.php:43
msgid "added" msgid "added"
msgstr "" msgstr "ajouté"
#: ../admin/adm_dodefquotas.php:45 #: ../admin/adm_dodefquotas.php:45
msgid "could not be added" msgid "could not be added"
msgstr "" msgstr "n'a pas pu être ajouté"
#: ../admin/adm_dodefquotas.php:51 #: ../admin/adm_dodefquotas.php:51
#, fuzzy
msgid "deleted" msgid "deleted"
msgstr "Effacer" msgstr "effacé"
#: ../admin/adm_dodefquotas.php:53 #: ../admin/adm_dodefquotas.php:53
#, fuzzy
msgid "could not be deleted" msgid "could not be deleted"
msgstr "Des TLD ne peuvent pas être effacés..." msgstr "n'a pas pu être effacé"
#: ../admin/adm_dodefquotas.php:69 #: ../admin/adm_dodefquotas.php:69
msgid "Default quotas successfully changed" msgid "Default quotas successfully changed"
msgstr "Les quotas par défaut ont été modifiés avec succès" msgstr "Les quotas par défaut ont été modifiés avec succès"
#: ../admin/adm_dodefquotas.php:71 #: ../admin/adm_dodefquotas.php:71
#, fuzzy
msgid "Default quotas could not be set." msgid "Default quotas could not be set."
msgstr "Les quotas par défaut ont été modifiés avec succès" msgstr "Les quotas par défaut n'ont pas pu être modifiés"
#: ../admin/adm_dodel.php:49 #: ../admin/adm_dodel.php:49
#, php-format #, php-format
@ -201,9 +196,9 @@ msgstr ""
"pouvez aussi 'Verrouiller' un domaine afin que l'utilisateur ne puisse plus " "pouvez aussi 'Verrouiller' un domaine afin que l'utilisateur ne puisse plus "
"modifier les paramètres DNS de ce domaine ou l'effacer." "modifier les paramètres DNS de ce domaine ou l'effacer."
#: ../admin/adm_doms.php:56 ../admin/adm_slaveaccount.php:71 #: ../admin/adm_doms.php:56 ../admin/adm_mxaccount.php:71
#: ../admin/adm_slaveip.php:73 ../admin/adm_tld.php:67 #: ../admin/adm_slaveaccount.php:71 ../admin/adm_slaveip.php:73
#: ../admin/mail_list.php:88 #: ../admin/adm_tld.php:67 ../admin/mail_list.php:88
msgid "Action" msgid "Action"
msgstr "Action" msgstr "Action"
@ -228,9 +223,8 @@ msgid "Locked Domain"
msgstr "Domaine verrouillé" msgstr "Domaine verrouillé"
#: ../admin/adm_dorenew.php:46 #: ../admin/adm_dorenew.php:46
#, fuzzy
msgid "The member has been successfully renewed" msgid "The member has been successfully renewed"
msgstr "Le compte a été modifié avec succès" msgstr "Le compte a été renouvellé avec succès"
#: ../admin/adm_edit.php:51 #: ../admin/adm_edit.php:51
msgid "Member Edition" msgid "Member Edition"
@ -254,12 +248,13 @@ msgstr "Non"
msgid "Yes" msgid "Yes"
msgstr "Oui" msgstr "Oui"
#: ../admin/index.php:55 ../admin/adm_edit.php:78 #: ../admin/adm_edit.php:78 ../admin/adm_mxaccount.php:71
#: ../admin/adm_slaveaccount.php:71 ../admin/adm_slaveaccount.php:91 #: ../admin/adm_mxaccount.php:91 ../admin/adm_slaveaccount.php:71
#: ../admin/ftp_add.php:56 ../admin/ftp_edit.php:58 #: ../admin/adm_slaveaccount.php:91 ../admin/ftp_add.php:56
#: ../admin/hta_adduser.php:49 ../admin/sql_getparam.php:50 #: ../admin/ftp_edit.php:58 ../admin/hta_adduser.php:49 ../admin/index.php:55
#: ../admin/sql_list.php:97 ../admin/sql_passchg.php:52 #: ../admin/sql_getparam.php:50 ../admin/sql_list.php:97
#: ../admin/sql_users_add.php:58 ../admin/sql_users_list.php:96 #: ../admin/sql_passchg.php:52 ../admin/sql_users_add.php:58
#: ../admin/sql_users_list.php:96
msgid "Password" msgid "Password"
msgstr "Mot de passe" msgstr "Mot de passe"
@ -277,17 +272,15 @@ msgstr "Modifier le compte"
#: ../admin/adm_edit.php:136 #: ../admin/adm_edit.php:136
msgid "Renew for" msgid "Renew for"
msgstr "" msgstr "Renouveller pour"
#: ../admin/adm_edit.php:137 #: ../admin/adm_edit.php:137
#, fuzzy
msgid "period(s)" msgid "period(s)"
msgstr "Périodicité de facturation" msgstr "période(s)"
#: ../admin/adm_edit.php:140 #: ../admin/adm_edit.php:140
#, fuzzy
msgid "Renew" msgid "Renew"
msgstr "Renommer" msgstr "Renouveller"
#: ../admin/adm_edit.php:153 #: ../admin/adm_edit.php:153
msgid "This account is a super-admin account" msgid "This account is a super-admin account"
@ -339,55 +332,52 @@ msgid "No account defined for now"
msgstr "Aucun compte n'existe pour l'instant" msgstr "Aucun compte n'existe pour l'instant"
#: ../admin/adm_list.php:78 #: ../admin/adm_list.php:78
#, fuzzy
msgid "Last login" msgid "Last login"
msgstr "Dernière connexion : " msgstr "Dernière connexion"
#: ../admin/adm_list.php:78 #: ../admin/adm_list.php:78
msgid "Last fail" msgid "Last fail"
msgstr "" msgstr "Dernier échec"
#: ../admin/adm_list.php:78 #: ../admin/adm_list.php:78
#, fuzzy
msgid "Last ip" msgid "Last ip"
msgstr "Dernière connexion : " msgstr "Dernière IP"
#: ../admin/main.php:55 ../admin/adm_list.php:78 #: ../admin/adm_list.php:78 ../admin/main.php:55
msgid "Expiry" msgid "Expiry"
msgstr "" msgstr "Expiration"
#: ../admin/lst_affallsub.php:60 ../admin/lst_affsub.php:138 #: ../admin/adm_list.php:96 ../admin/adm_tld.php:75 ../admin/dom_edit.php:77
#: ../admin/mail_list.php:97 ../admin/adm_list.php:92 ../admin/adm_tld.php:75 #: ../admin/ftp_list.php:70 ../admin/hta_edit.php:68 ../admin/hta_list.php:76
#: ../admin/dom_edit.php:77 ../admin/ftp_list.php:70 ../admin/hta_edit.php:68 #: ../admin/mail_list.php:97 ../admin/sta2_list.php:67
#: ../admin/hta_list.php:76 ../admin/sta2_list.php:67
msgid "Edit" msgid "Edit"
msgstr "Modifier" msgstr "Modifier"
#: ../admin/adm_list.php:96 ../admin/adm_list.php:148 #: ../admin/adm_list.php:100 ../admin/adm_list.php:157
#: ../admin/adm_list.php:169 ../admin/adm_list.php:194 #: ../admin/adm_list.php:178 ../admin/adm_list.php:203
msgid "Locked Account" msgid "Locked Account"
msgstr "Compte verrouillé" msgstr "Compte verrouillé"
#: ../admin/adm_list.php:100 #: ../admin/adm_list.php:103
msgid "Connect as" msgid "Connect as"
msgstr "Connecter" msgstr "Connecter"
#: ../admin/adm_list.php:144 ../admin/adm_list.php:165 #: ../admin/adm_list.php:153 ../admin/adm_list.php:174
#: ../admin/adm_list.php:190 #: ../admin/adm_list.php:199
msgid "E" msgid "E"
msgstr "M" msgstr "M"
#: ../admin/adm_list.php:145 ../admin/adm_list.php:166 #: ../admin/adm_list.php:154 ../admin/adm_list.php:175
#: ../admin/adm_list.php:191 #: ../admin/adm_list.php:200
msgid "Q" msgid "Q"
msgstr "Q" msgstr "Q"
#: ../admin/adm_list.php:151 ../admin/adm_list.php:173 #: ../admin/adm_list.php:160 ../admin/adm_list.php:182
#: ../admin/adm_list.php:197 #: ../admin/adm_list.php:206
msgid "C" msgid "C"
msgstr "C" msgstr "C"
#: ../admin/adm_list.php:209 ../admin/ftp_list.php:77 #: ../admin/adm_list.php:218 ../admin/ftp_list.php:77
msgid "Delete checked accounts" msgid "Delete checked accounts"
msgstr "Supprimer les comptes cochés" msgstr "Supprimer les comptes cochés"
@ -399,6 +389,54 @@ msgstr "Bureau AlternC"
msgid "Member login" msgid "Member login"
msgstr "Nom d'utilisateur du membre" msgstr "Nom d'utilisateur du membre"
#: ../admin/adm_mxaccount.php:40 ../admin/adm_slaveaccount.php:40
msgid "The requested account has been deleted. It is now denied."
msgstr "Le compte esclave a été effacé. Il est maintenant interdit."
#: ../admin/adm_mxaccount.php:46 ../admin/adm_slaveaccount.php:46
msgid "The requested account address has been created. It is now allowed."
msgstr "Le compte esclave a été créé. Il est maintenant autorisé."
#: ../admin/adm_mxaccount.php:55 ../admin/adm_panel.php:54
msgid "Manage allowed accounts for secondary mx"
msgstr "Gérer les comptes autorisés pour les mx secondaires"
#: ../admin/adm_mxaccount.php:67
msgid ""
"Here is the list of the allowed accounts for secondary mx management. You "
"can configure the alternc-secondarymx package on your secondary mx server "
"and give him the login/pass that will grant him access to your server's mx-"
"hosted domain list. "
msgstr ""
"Voici la liste des comptes ayant le droit de synchroniser la liste des "
"domaines dont on héberge le mail. Vous pouvez utiliser le paquet "
"alternc-secondarymx sur votre "
"serveur mx secondaire en lui donnant le login/pass pour lui donner accès à ce "
"serveur."
#: ../admin/adm_mxaccount.php:71 ../admin/adm_mxaccount.php:91
#: ../admin/adm_slaveaccount.php:71 ../admin/adm_slaveaccount.php:91
msgid "Login"
msgstr "Nom d'utilisateur"
#: ../admin/adm_mxaccount.php:79 ../admin/adm_slaveaccount.php:79
#: ../admin/adm_slaveip.php:81 ../admin/bro_main.php:138
#: ../admin/dom_edit.php:80 ../admin/mail_list.php:88
msgid "Delete"
msgstr "Effacer"
#: ../admin/adm_mxaccount.php:88
msgid ""
"If you want to allow a new server to access your mx-hosted domain list, give "
"him an account."
msgstr ""
"Si vous voulez autoriser un compte à synchroniser la liste des domaines dont on "
"héberge le mail, créez-lui un compte."
#: ../admin/adm_mxaccount.php:97 ../admin/adm_slaveaccount.php:97
msgid "Add this account to the allowed list"
msgstr "Ajouter ce compte à la liste des autorisés."
#: ../admin/adm_panel.php:41 ../admin/menu_adm.php:40 #: ../admin/adm_panel.php:41 ../admin/menu_adm.php:40
msgid "Admin Control Panel" msgid "Admin Control Panel"
msgstr "Panneau Administrateur" msgstr "Panneau Administrateur"
@ -416,11 +454,11 @@ msgstr "G
msgid "Manage allowed accounts for slave zone transfers" msgid "Manage allowed accounts for slave zone transfers"
msgstr "Gérer les comptes autorisés pour les transferts de zone esclave DNS" msgstr "Gérer les comptes autorisés pour les transferts de zone esclave DNS"
#: ../admin/adm_panel.php:54 ../admin/adm_variables.php:48 #: ../admin/adm_panel.php:55 ../admin/adm_variables.php:48
msgid "Configure AlternC variables" msgid "Configure AlternC variables"
msgstr "Configurer les variables d'AlternC" msgstr "Configurer les variables d'AlternC"
#: ../admin/adm_panel.php:55 #: ../admin/adm_panel.php:56
msgid "Show all quotas" msgid "Show all quotas"
msgstr "Montrer tous les quotas" msgstr "Montrer tous les quotas"
@ -432,15 +470,15 @@ msgstr "Les quotas ont
msgid "Editing the quotas of a member" msgid "Editing the quotas of a member"
msgstr "Modification des quotas d'un compte" msgstr "Modification des quotas d'un compte"
#: ../admin/quota_show.php:42 ../admin/adm_quotaedit.php:61 #: ../admin/adm_quotaedit.php:61 ../admin/quota_show.php:42
msgid "Quota" msgid "Quota"
msgstr "Quotas" msgstr "Quotas"
#: ../admin/quota_show.php:42 ../admin/adm_quotaedit.php:61 #: ../admin/adm_quotaedit.php:61 ../admin/quota_show.php:42
msgid "Total" msgid "Total"
msgstr "Total" msgstr "Total"
#: ../admin/quota_show.php:42 ../admin/adm_quotaedit.php:61 #: ../admin/adm_quotaedit.php:61 ../admin/quota_show.php:42
msgid "Used" msgid "Used"
msgstr "Utilisé" msgstr "Utilisé"
@ -453,14 +491,6 @@ msgstr "quota_"
msgid "Edit the quotas" msgid "Edit the quotas"
msgstr "Modifier les quotas" msgstr "Modifier les quotas"
#: ../admin/adm_slaveaccount.php:40
msgid "The requested account has been deleted. It is now denied."
msgstr "Le compte esclave a été effacé. Il est maintenant interdit."
#: ../admin/adm_slaveaccount.php:46
msgid "The requested account address has been created. It is now allowed."
msgstr "Le compte esclave a été créé. Il est maintenant autorisé."
#: ../admin/adm_slaveaccount.php:67 #: ../admin/adm_slaveaccount.php:67
msgid "" msgid ""
"Here is the list of the allowed accounts for slave dns synchronization. You " "Here is the list of the allowed accounts for slave dns synchronization. You "
@ -472,17 +502,6 @@ msgstr ""
"serveur esclave en lui donnant le login/pass pour lui donner accès à ce " "serveur esclave en lui donnant le login/pass pour lui donner accès à ce "
"serveur." "serveur."
#: ../admin/adm_slaveaccount.php:71 ../admin/adm_slaveaccount.php:91
msgid "Login"
msgstr "Nom d'utilisateur"
#: ../admin/adm_slaveaccount.php:79 ../admin/adm_slaveip.php:81
#: ../admin/bro_main.php:138 ../admin/dom_edit.php:80
#: ../admin/lst_affallsub.php:50 ../admin/lst_affsub.php:128
#: ../admin/lst_owner.php:69 ../admin/mail_list.php:88
msgid "Delete"
msgstr "Effacer"
#: ../admin/adm_slaveaccount.php:88 #: ../admin/adm_slaveaccount.php:88
msgid "" msgid ""
"If you want to allow a new server to access your domain list, give him an " "If you want to allow a new server to access your domain list, give him an "
@ -491,10 +510,6 @@ msgstr ""
"Si vous voulez autoriser un compte à synchroniser la liste des domaines, " "Si vous voulez autoriser un compte à synchroniser la liste des domaines, "
"créez-lui un compte." "créez-lui un compte."
#: ../admin/adm_slaveaccount.php:97
msgid "Add this account to the allowed list"
msgstr "Ajouter ce compte à la liste des autorisés."
#: ../admin/adm_slaveip.php:40 #: ../admin/adm_slaveip.php:40
msgid "" msgid ""
"The requested ip address has been deleted. It will be denied in one hour." "The requested ip address has been deleted. It will be denied in one hour."
@ -557,10 +572,10 @@ msgstr ""
#: ../admin/adm_tldadd.php:52 #: ../admin/adm_tldadd.php:52
msgid "" msgid ""
"Warning : only some final tld are known in the whois function of AlternC, " "Warning : only some final tld are known in the whois function of AlternC, "
"please check m_domains.php accordingly." "please check m_dom.php accordingly."
msgstr "" msgstr ""
"Attention : Seuls certains tld sont connus dans la fonction whois d'AlternC, " "Attention : Seuls certains tld sont connus dans la fonction whois d'AlternC, "
"merci de vérifier le fichier m_domains.php." "merci de vérifier le fichier m_dom.php."
#: ../admin/adm_tldadd.php:58 ../admin/adm_tldedit.php:58 #: ../admin/adm_tldadd.php:58 ../admin/adm_tldedit.php:58
#: ../admin/adm_tld.php:67 #: ../admin/adm_tld.php:67
@ -641,19 +656,19 @@ msgstr "Votre fichier %s a
msgid "File editing" msgid "File editing"
msgstr "Edition de fichier" msgstr "Edition de fichier"
#: ../admin/bro_editor.php:69 #: ../admin/bro_editor.php:67
msgid "Save" msgid "Save"
msgstr "Enregistrer" msgstr "Enregistrer"
#: ../admin/bro_editor.php:70 #: ../admin/bro_editor.php:68
msgid "Save &amp; Quit" msgid "Save &amp; Quit"
msgstr "Enregistrer et Fermer" msgstr "Enregistrer et Fermer"
#: ../admin/bro_editor.php:71 #: ../admin/bro_editor.php:69
msgid "Quit" msgid "Quit"
msgstr "Fermer" msgstr "Fermer"
#: ../admin/hta_edit.php:50 ../admin/bro_main.php:89 ../admin/hta_edit.php:82 #: ../admin/bro_main.php:89 ../admin/hta_edit.php:50 ../admin/hta_edit.php:82
#: ../admin/menu_brouteur.php:34 #: ../admin/menu_brouteur.php:34
msgid "File browser" msgid "File browser"
msgstr "Gestionnaire de fichiers" msgstr "Gestionnaire de fichiers"
@ -662,7 +677,7 @@ msgstr "Gestionnaire de fichiers"
msgid "Create" msgid "Create"
msgstr "Créer" msgstr "Créer"
#: ../class/m_bro.php:222 ../class/m_bro.php:231 ../admin/bro_main.php:97 #: ../admin/bro_main.php:97 ../class/m_bro.php:222 ../class/m_bro.php:231
msgid "File" msgid "File"
msgstr "Fichier" msgstr "Fichier"
@ -688,7 +703,7 @@ msgid "Move"
msgstr "Déplacer" msgstr "Déplacer"
#: ../admin/bro_main.php:177 ../admin/bro_main.php:348 #: ../admin/bro_main.php:177 ../admin/bro_main.php:348
#: ../admin/sta2_list.php:71 ../admin/sta2_list.php:57 #: ../admin/sta2_list.php:57 ../admin/sta2_list.php:71
msgid "View" msgid "View"
msgstr "Voir" msgstr "Voir"
@ -868,8 +883,8 @@ msgstr "H
msgid "Your new domain %s has been successfully installed" msgid "Your new domain %s has been successfully installed"
msgstr "Votre nouveau domaine %s a été installé avec succès" msgstr "Votre nouveau domaine %s a été installé avec succès"
#: ../admin/hta_doedituser.php:53 ../admin/dom_doadd.php:49 #: ../admin/dom_doadd.php:49 ../admin/dom_dodel.php:69
#: ../admin/dom_dodel.php:69 ../admin/dom_editdns.php:57 #: ../admin/dom_editdns.php:57 ../admin/hta_doedituser.php:53
msgid "Click here to continue" msgid "Click here to continue"
msgstr "Cliquez ici pour continuer" msgstr "Cliquez ici pour continuer"
@ -935,8 +950,8 @@ msgstr "Redirection vers une url"
msgid "IP redirection" msgid "IP redirection"
msgstr "Redirection vers une ip" msgstr "Redirection vers une ip"
#: ../class/m_dom.php:551 ../admin/dom_edit.php:122 #: ../admin/dom_edit.php:122 ../admin/dom_subedit.php:83
#: ../admin/dom_subedit.php:83 #: ../class/m_dom.php:551
msgid "Webmail access" msgid "Webmail access"
msgstr "Accès au webmail" msgstr "Accès au webmail"
@ -965,7 +980,7 @@ msgstr "Champs MX"
#: ../admin/dom_edit.php:155 #: ../admin/dom_edit.php:155
msgid "help_dns_mail" msgid "help_dns_mail"
msgstr "Si l'on gère pas vos DNS : <br /> gère-t-on vos mails ?" msgstr "Si l'on ne gère pas vos DNS : <br /> gère-t-on vos mails ?"
#: ../admin/dom_edit.php:159 #: ../admin/dom_edit.php:159
msgid "Submit the changes" msgid "Submit the changes"
@ -1039,7 +1054,7 @@ msgstr "Modifier le compte FTP."
msgid "FTP accounts list" msgid "FTP accounts list"
msgstr "Liste des comptes ftp" msgstr "Liste des comptes ftp"
#: ../admin/hta_list.php:50 ../admin/hta_add.php:37 ../admin/hta_list.php:86 #: ../admin/hta_add.php:37 ../admin/hta_list.php:50 ../admin/hta_list.php:86
#: ../admin/web_list.php:3 #: ../admin/web_list.php:3
msgid "Protect a folder" msgid "Protect a folder"
msgstr "Protéger un répertoire" msgstr "Protéger un répertoire"
@ -1107,7 +1122,7 @@ msgstr "Supprimer les utilisateurs coch
msgid "Editing user %s in the protected folder %s" msgid "Editing user %s in the protected folder %s"
msgstr "Modification de l'utilisateur %s dans le répertoire protégé %s" msgstr "Modification de l'utilisateur %s dans le répertoire protégé %s"
#: ../admin/quota_show_all.php:50 ../admin/hta_edituser.php:48 #: ../admin/hta_edituser.php:48 ../admin/quota_show_all.php:50
#: ../admin/sql_users_list.php:53 #: ../admin/sql_users_list.php:53
msgid "User" msgid "User"
msgstr "Utilisateur" msgstr "Utilisateur"
@ -1156,176 +1171,13 @@ msgid "You must accept the session cookie to log-in"
msgstr "Vous devez accepter le cookie de session pour pouvoir vous connecter" msgstr "Vous devez accepter le cookie de session pour pouvoir vous connecter"
#: ../admin/index.php:66 #: ../admin/index.php:66
msgid "If you want to use a different language, click on the flag below" msgid "You can use a different language: "
msgstr "" msgstr "Vous pouvez utiliser une langue différente : "
"Si vous voulez utiliser une langue différente, cliquez l'un des drapeaux ci-"
"dessous"
#: ../admin/index.php:75 ../admin/index.php:74 #: ../admin/index.php:74
msgid "AlternC, Opensource hosting control panel" msgid "AlternC, Opensource hosting control panel"
msgstr "AlternC, Panneau de contrôle d'hébergement mutualisé opensource" msgstr "AlternC, Panneau de contrôle d'hébergement mutualisé opensource"
#: ../admin/lst_addown.php:42
#, fuzzy
msgid "The new owner has been successfully added"
msgstr "Le membre a été ajouté avec succès"
#: ../admin/lst_addown.php:51 ../admin/lst_addsub1.php:51
#: ../admin/lst_addsub.php:50 ../admin/lst_affallsub.php:42
#: ../admin/lst_affsub.php:43 ../admin/lst_delown.php:52
#: ../admin/lst_delsub.php:50 ../admin/lst_doedit.php:51
#: ../admin/lst_doeditsub.php:46 ../admin/lst_owner.php:40
#: ../admin/lst_subscribers.php:40
#, php-format
msgid "Mailing list %s"
msgstr ""
#: ../admin/lst_addsub1.php:42
msgid "Subscription successfull"
msgstr ""
#: ../admin/lst_addsub.php:41
#, fuzzy
msgid "The new member has been successfully added"
msgstr "Le membre a été ajouté avec succès"
#: ../admin/lst_affallsub.php:50 ../admin/lst_affsub.php:128
#, fuzzy
msgid "Name"
msgstr "Noms"
#: ../admin/lst_affallsub.php:65 ../admin/lst_affsub.php:143
#, fuzzy
msgid "Delete the checked subscribers"
msgstr "Supprimer les utilisateurs cochés"
#: ../admin/lst_affallsub.php:72 ../admin/lst_affsub.php:228
#, fuzzy
msgid "Back to the subscription page"
msgstr "Retour au répertoire racine"
#: ../admin/lst_affsub.php:55
msgid "Show all subscribed emails"
msgstr ""
#: ../admin/lst_affsub.php:60
#, php-format
msgid "From %s to %s sur %s"
msgstr ""
#: ../admin/lst_affsub.php:211
msgid "To access directly a page from a mail address:"
msgstr ""
#: ../admin/lst_affsub.php:216 ../admin/lst_affsub.php:222
msgid "From "
msgstr ""
#: ../admin/lst_affsub.php:216 ../admin/lst_affsub.php:222
msgid "to"
msgstr ""
#: ../admin/lst_delown.php:43
#, fuzzy
msgid "The owner(s) has been successfully deleted"
msgstr "L'utilisateur %s a été effacée avec succès"
#: ../admin/lst_delsub.php:44
#, fuzzy
msgid "The mail(s) has been successfully unsubscribed from the list"
msgstr "La droits ont été appliqués avec succès à l'utilisateur"
#: ../admin/lst_delsub.php:57 ../admin/lst_doeditsub.php:52
#, fuzzy
msgid "Back"
msgstr "Sauvegarde"
#: ../admin/lst_doedit.php:42
#, fuzzy
msgid "The list parameters has been successfully changed"
msgstr "Vos paramètres de sauvegarde ont été modifiés avec succès"
#: ../admin/lst_doeditsub.php:39
#, fuzzy
msgid "The user's parameters has been successfully changed"
msgstr "Vos paramètres de sauvegarde ont été modifiés avec succès"
#: ../admin/lst_doedittxt.php:37
#, fuzzy
msgid "The message has been successfully edited"
msgstr "Le compte a été modifié avec succès"
#: ../admin/lst_owner.php:47
#, fuzzy
msgid "Add an owner to the list"
msgstr "Ajouter cette adresse/class à la liste des esclaves DNS."
#: ../admin/lst_owner.php:51
msgid "Enter the new owner's email"
msgstr ""
#: ../admin/lst_owner.php:54
#, fuzzy
msgid "Add this owner to the list"
msgstr "Ajouter cette adresse/class à la liste des esclaves DNS."
#: ../admin/lst_owner.php:56
msgid "Note: an owner is also a moderator"
msgstr ""
#: ../admin/lst_owner.php:66
msgid "Delete one or more owners from the list"
msgstr ""
#: ../admin/lst_owner.php:81
#, fuzzy
msgid "Delete the checked owners"
msgstr "Supprimer les utilisateurs cochés"
#: ../admin/lst_owner.php:82
msgid "Note: a list must have at least one owner"
msgstr ""
#: ../admin/lst_subscribers.php:50
#, php-format
msgid "There is %s subscriber(s) in your list"
msgstr ""
#: ../admin/lst_subscribers.php:51
msgid "View, edit and delete subscribers"
msgstr ""
#: ../admin/lst_subscribers.php:52
msgid "Download the subscribers list"
msgstr ""
#: ../admin/lst_subscribers.php:59
#, fuzzy
msgid "Add a subscriber to the list"
msgstr "Ajouter cette adresse/class à la liste des esclaves DNS."
#: ../admin/lst_subscribers.php:67
#, fuzzy
msgid "User's name"
msgstr "Nom"
#: ../admin/lst_subscribers.php:71
#, fuzzy
msgid "Subscribe this email to the list"
msgstr "Ajouter cette adresse/class à la liste des esclaves DNS."
#: ../admin/lst_subscribers.php:80
msgid "Subscribe many users to the list:"
msgstr ""
#: ../admin/lst_subscribers.php:83
msgid "Enter the user email list, one per line"
msgstr ""
#: ../admin/lst_subscribers.php:89
msgid "Subscribe those users to the list"
msgstr ""
#: ../admin/mail_add.php:37 #: ../admin/mail_add.php:37
#, php-format #, php-format
msgid "Add a mail to the domain %s" msgid "Add a mail to the domain %s"
@ -1366,16 +1218,41 @@ msgstr ""
"<code>login@votredomaine.com</code>) et le mot de passe est celui que vous " "<code>login@votredomaine.com</code>) et le mot de passe est celui que vous "
"avez entré dans ce formulaire. " "avez entré dans ce formulaire. "
#: ../admin/mail_del.php:42 ../admin/mail_dodel.php:41
msgid "Deleting mail accounts"
msgstr "Effacement des comptes email"
#: ../admin/mail_del.php:43
msgid "Please confirm the deletion of the following mail accounts:"
msgstr "Confirmez la suppression des comptes emails suivants&nbsp;:"
#: ../admin/mail_del.php:57 ../admin/mail_list.php:107
msgid "Delete the selected mailboxes"
msgstr "Effacer les mails sélectionnés"
#: ../admin/mail_del.php:57
msgid "Don't delete accounts and go back to the mail list"
msgstr "Ne rien effacer, retourner à la liste des emails"
#: ../admin/mail_doadd.php:44 #: ../admin/mail_doadd.php:44
#, php-format #, php-format
msgid "The mailbox <b>%s</b> has been successfully created" msgid "The mailbox <b>%s</b> has been successfully created"
msgstr "Le mail <b>%s</b> a été ajouté avec succès" msgstr "Le mail <b>%s</b> a été ajouté avec succès"
#: ../admin/mail_dodel.php:39 #: ../admin/mail_dodel.php:48
#, php-format #, php-format
msgid "The mailbox <b>%s</b> does not exist!" msgid "The mailbox <b>%s</b> does not exist!"
msgstr "Le mail <b>%s</b> n'existe pas" msgstr "Le mail <b>%s</b> n'existe pas"
#: ../admin/mail_dodel.php:51
#, php-format
msgid "The mailbox <b>%s</b> has been deleted!"
msgstr "La boîte aux lettres <b>%s</b> a été effacée&nbsp;!"
#: ../admin/mail_dodel.php:60
msgid "Back to the mail account list"
msgstr "Retour à la liste des emails"
#: ../admin/mail_doedit.php:46 #: ../admin/mail_doedit.php:46
#, php-format #, php-format
msgid "The mailbox <b>%s</b> has been successfully changed" msgid "The mailbox <b>%s</b> has been successfully changed"
@ -1430,16 +1307,12 @@ msgstr "Ajouter plusieurs emails sur <b>%s</b>"
#: ../admin/mail_list.php:76 #: ../admin/mail_list.php:76
#, php-format #, php-format
msgid "All" msgid "All"
msgstr "" msgstr "Tout"
#: ../admin/mail_list.php:88 ../admin/sql_list.php:53 #: ../admin/mail_list.php:88 ../admin/sql_list.php:53
msgid "Size" msgid "Size"
msgstr "Taille" msgstr "Taille"
#: ../admin/mail_list.php:107
msgid "Delete the selected mailboxes"
msgstr "Effacer les mails sélectionnés"
#: ../admin/main.php:38 #: ../admin/main.php:38
msgid "Last Login: " msgid "Last Login: "
msgstr "Dernière connexion : " msgstr "Dernière connexion : "
@ -1456,15 +1329,15 @@ msgstr "%1$d tentatives incorrectes depuis la derni
#: ../admin/main.php:53 #: ../admin/main.php:53
msgid "Expired or about to expire accounts" msgid "Expired or about to expire accounts"
msgstr "" msgstr "Comptes expirés ou expirant bientôt"
#: ../admin/main.php:55 #: ../admin/main.php:55
msgid "uid" msgid "uid"
msgstr "" msgstr "uid"
#: ../admin/main.php:55 #: ../admin/main.php:55
msgid "Last name, surname" msgid "Last name, surname"
msgstr "" msgstr "Prénom, Nom"
#: ../admin/mem_admin.php:35 #: ../admin/mem_admin.php:35
msgid "Your administrator preferences has been successfully changed." msgid "Your administrator preferences has been successfully changed."
@ -1870,7 +1743,6 @@ msgid "The user %s has been successfully deleted"
msgstr "L'utilisateur %s a été effacée avec succès" msgstr "L'utilisateur %s a été effacée avec succès"
#: ../admin/sql_users_del.php:53 #: ../admin/sql_users_del.php:53
#, fuzzy
msgid "MySQL users" msgid "MySQL users"
msgstr "Utilisateurs MySQL" msgstr "Utilisateurs MySQL"
@ -1984,49 +1856,58 @@ msgid "Tb"
msgstr "To" msgstr "To"
#: ../class/functions.php:343 #: ../class/functions.php:343
#, fuzzy
msgid "years" msgid "years"
msgstr "2 ans" msgstr "ans"
#: ../class/functions.php:343 #: ../class/functions.php:343
#, fuzzy
msgid "year" msgid "year"
msgstr "1 an" msgstr "an"
#: ../class/functions.php:345 #: ../class/functions.php:345
#, fuzzy
msgid "months" msgid "months"
msgstr "6 mois" msgstr "mois"
#: ../class/functions.php:345 #: ../class/functions.php:345
#, fuzzy
msgid "month" msgid "month"
msgstr "1 mois" msgstr "mois"
#: ../class/functions.php:368 #: ../class/functions.php:368
msgid "Not managed" msgid "Not managed"
msgstr "Non géré" msgstr "Non géré"
#: ../class/m_admin.php:53
msgid "This TLD is forbidden"
msgstr "Ce TLD est interdit"
#: ../class/m_admin.php:54
msgid "primary DNS is checked in WHOIS db"
msgstr "vérifier le DNS primaire dans la base WHOIS"
#: ../class/m_admin.php:55
msgid "primary & secondary DNS are checked in WHOIS db"
msgstr "vérifier les dns primaires ET secondaires dans la base WHOIS"
#: ../class/m_admin.php:56
msgid "Domain must exist, but don't do any DNS check"
msgstr "Le domaine doit exister, mais ne vérifie pas les DNS"
#: ../class/m_admin.php:57
msgid "Domain can be installed, no check at all"
msgstr "Le domaine peut être installé sans aucun contrôle"
#: ../class/m_admin.php:58
msgid "Domain can be installed, force NO DNS hosting)"
msgstr "Le domaine peut être installé, (ne gère pas les DNS cependant)"
#: ../class/m_err.php:64 ../class/m_err.php:90 ../class/m_err.php:107 #: ../class/m_err.php:64 ../class/m_err.php:90 ../class/m_err.php:107
#, php-format #, php-format
msgid "err_" msgid "err_"
msgstr "" msgstr "err_"
#: ../class/m_err.php:64 ../class/m_err.php:90 ../class/m_err.php:107 #: ../class/m_err.php:64 ../class/m_err.php:90 ../class/m_err.php:107
#, php-format #, php-format
msgid "_" msgid "_"
msgstr "" msgstr "_"
#: ../class/m_mem.php:474
msgid "Help"
msgstr "Aide"
#: ../admin/index.php:66
#, fuzzy
msgid "You can use a different language: "
msgstr ""
"Si vous voulez utiliser une langue différente, cliquez l'un des drapeaux ci-"
"dessous"
#: ../class/mime.php:135 #: ../class/mime.php:135
msgid "CSS Stylesheet" msgid "CSS Stylesheet"
@ -2160,44 +2041,23 @@ msgstr "Animation Flash"
msgid "Real Media File" msgid "Real Media File"
msgstr "Fichier Real Media" msgstr "Fichier Real Media"
#: ../class/m_admin.php:53 #: ../class/m_mem.php:474
msgid "This TLD is forbidden" msgid "Help"
msgstr "" msgstr "Aide"
#: ../class/m_admin.php:54 #~ msgid "Create the domain username."
msgid "primary DNS is checked in WHOIS db" #~ msgstr "Installer le domaine login."
msgstr ""
#: ../class/m_admin.php:55 #~ msgid "If you want to use a different language, click on the flag below"
msgid "primary & secondary DNS are checked in WHOIS db" #~ msgstr ""
msgstr "" #~ "Si vous voulez utiliser une langue différente, cliquez l'un des drapeaux "
#~ "ci-dessous"
#: ../class/m_admin.php:56 #~ msgid "Name"
msgid "Domain must exist, but don't do any DNS check" #~ msgstr "Nom"
msgstr ""
#: ../class/m_admin.php:57 #~ msgid "Subscribe this email to the list"
msgid "Domain can be installed, no check at all" #~ msgstr "Ajouter cette adresse/class à la liste des esclaves DNS."
msgstr ""
#: ../class/m_admin.php:58
msgid "Domain can be installed, force NO DNS hosting)"
msgstr ""
msgid "The mailbox <b>%s</b> has been deleted!"
msgstr "La boîte aux lettres <b>%s</b> a été effacée&nbsp;!"
msgid "Deleting mail accounts"
msgstr "Effacement des comptes email"
msgid "Please confirm the deletion of the following mail accounts:"
msgstr "Confirmez la suppression des comptes emails suivants&nbsp;:"
msgid "Don't delete accounts and go back to the mail list"
msgstr "Ne rien effacer, retourner à la liste des emails"
msgid "Back to the mail account list"
msgstr "Retour à la liste des emails"
#~ msgid "2 months" #~ msgid "2 months"
#~ msgstr "2 mois" #~ msgstr "2 mois"

View File

@ -1,21 +1,3 @@
# AlternC's Translation
# Copyright (C) 2006 AlternC's translation team <i18n@alternc.org>
# This file is distributed under the same license as the AlternC's package.
# AlternC's translation team <i18n@alternc.org>
#
#, fuzzy
msgid ""
msgstr ""
"$id$\n"
"Report-Msgid-Bugs-To: i18n@alternc.org\n"
"POT-Creation-Date: 2006-05-09 17:16+0200\n"
"PO-Revision-Date: 2006-05-09 17:16 CEST\n"
"Last-Translator: Team AlternC <i18n@alternc.org>\n"
"Language-Team: Team AlternC <i18n@alternc.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=ISO-8859-1\n"
"Content-Transfer-Encoding: 8bit\n"
#: ../admin/adm_add.php:35 ../admin/adm_defquotas.php:35 #: ../admin/adm_add.php:35 ../admin/adm_defquotas.php:35
#: ../admin/adm_doadd.php:35 ../admin/adm_dodefquotas.php:35 #: ../admin/adm_doadd.php:35 ../admin/adm_dodefquotas.php:35
#: ../admin/adm_dodel.php:33 ../admin/adm_dodel.php:45 #: ../admin/adm_dodel.php:33 ../admin/adm_dodel.php:45
@ -25,12 +7,13 @@ msgstr ""
#: ../admin/adm_dorenew.php:38 ../admin/adm_dosu.php:33 #: ../admin/adm_dorenew.php:38 ../admin/adm_dosu.php:33
#: ../admin/adm_edit.php:35 ../admin/adm_edit.php:39 ../admin/adm_list.php:36 #: ../admin/adm_edit.php:35 ../admin/adm_edit.php:39 ../admin/adm_list.php:36
#: ../admin/adm_login.php:33 ../admin/adm_login.php:40 #: ../admin/adm_login.php:33 ../admin/adm_login.php:40
#: ../admin/adm_panel.php:33 ../admin/adm_quotadoedit.php:33 #: ../admin/adm_mxaccount.php:33 ../admin/adm_panel.php:33
#: ../admin/adm_quotaedit.php:33 ../admin/adm_slaveaccount.php:33 #: ../admin/adm_quotadoedit.php:33 ../admin/adm_quotaedit.php:33
#: ../admin/adm_slaveip.php:33 ../admin/adm_tldadd.php:33 #: ../admin/adm_slaveaccount.php:33 ../admin/adm_slaveip.php:33
#: ../admin/adm_tlddoadd.php:33 ../admin/adm_tlddoedit.php:33 #: ../admin/adm_tldadd.php:33 ../admin/adm_tlddoadd.php:33
#: ../admin/adm_tldedit.php:33 ../admin/adm_tld.php:33 #: ../admin/adm_tlddoedit.php:33 ../admin/adm_tldedit.php:33
#: ../admin/adm_variables.php:33 ../class/reset_stats_conf.php:6 #: ../admin/adm_tld.php:33 ../admin/adm_variables.php:33
#: ../class/reset_stats_conf.php:6
msgid "This page is restricted to authorized staff" msgid "This page is restricted to authorized staff"
msgstr "" msgstr ""
@ -38,12 +21,11 @@ msgstr ""
msgid "New member" msgid "New member"
msgstr "" msgstr ""
#: ../admin/index.php:54 ../admin/adm_add.php:54 ../admin/adm_edit.php:61 #: ../admin/adm_add.php:54 ../admin/adm_edit.php:61 ../admin/adm_list.php:78
#: ../admin/adm_list.php:78 ../admin/adm_list.php:122 #: ../admin/adm_list.php:131 ../admin/adm_list.php:132
#: ../admin/adm_list.php:123 ../admin/adm_list.php:124 #: ../admin/adm_list.php:133 ../admin/adm_quotaedit.php:60
#: ../admin/adm_quotaedit.php:60 ../admin/ftp_add.php:53 #: ../admin/ftp_add.php:53 ../admin/ftp_edit.php:55 ../admin/ftp_list.php:60
#: ../admin/ftp_edit.php:55 ../admin/ftp_list.php:60 #: ../admin/hta_adduser.php:48 ../admin/hta_edit.php:59 ../admin/index.php:54
#: ../admin/hta_adduser.php:48 ../admin/hta_edit.php:59
#: ../admin/sql_getparam.php:49 ../admin/sql_list.php:96 #: ../admin/sql_getparam.php:49 ../admin/sql_list.php:96
#: ../admin/sql_passchg.php:51 ../admin/sql_users_add.php:54 #: ../admin/sql_passchg.php:51 ../admin/sql_users_add.php:54
#: ../admin/sql_users_list.php:95 #: ../admin/sql_users_list.php:95
@ -73,21 +55,21 @@ msgstr ""
msgid "First Name" msgid "First Name"
msgstr "" msgstr ""
#: ../admin/adm_list.php:78 ../admin/adm_add.php:82 ../admin/adm_edit.php:102 #: ../admin/adm_add.php:82 ../admin/adm_edit.php:102 ../admin/adm_list.php:78
#: ../admin/lst_affallsub.php:50 ../admin/lst_affsub.php:128
#: ../admin/lst_owner.php:69 ../admin/lst_subscribers.php:63
#: ../admin/mail_add.php:48 ../admin/mail_list.php:88 #: ../admin/mail_add.php:48 ../admin/mail_list.php:88
msgid "Email address" msgid "Email address"
msgstr "" msgstr ""
#: ../admin/adm_dodefquotas.php:43 ../admin/adm_dodefquotas.php:45 #: ../admin/adm_add.php:86 ../admin/adm_dodefquotas.php:43
#: ../admin/adm_dodefquotas.php:51 ../admin/adm_dodefquotas.php:53 #: ../admin/adm_dodefquotas.php:45 ../admin/adm_dodefquotas.php:51
#: ../admin/adm_add.php:86 ../admin/adm_edit.php:106 ../admin/adm_list.php:78 #: ../admin/adm_dodefquotas.php:53 ../admin/adm_edit.php:106
#: ../admin/adm_list.php:78
msgid "Account type" msgid "Account type"
msgstr "" msgstr ""
#: ../admin/adm_add.php:102 #: ../admin/adm_add.php:102
msgid "Create the domain username." #, php-format
msgid "Create the domain <b>username.%s</b>"
msgstr "" msgstr ""
#: ../admin/adm_add.php:106 ../admin/adm_list.php:62 #: ../admin/adm_add.php:106 ../admin/adm_list.php:62
@ -116,7 +98,7 @@ msgstr ""
msgid "Accounts of type" msgid "Accounts of type"
msgstr "" msgstr ""
#: ../admin/adm_defquotas.php:83 ../admin/adm_list.php:93 #: ../admin/adm_defquotas.php:83 ../admin/adm_list.php:97
#: ../admin/quota_show_all.php:36 #: ../admin/quota_show_all.php:36
msgid "Quotas" msgid "Quotas"
msgstr "" msgstr ""
@ -190,9 +172,9 @@ msgid ""
"change any DNS parameter or delete this domain from his account." "change any DNS parameter or delete this domain from his account."
msgstr "" msgstr ""
#: ../admin/adm_doms.php:56 ../admin/adm_slaveaccount.php:71 #: ../admin/adm_doms.php:56 ../admin/adm_mxaccount.php:71
#: ../admin/adm_slaveip.php:73 ../admin/adm_tld.php:67 #: ../admin/adm_slaveaccount.php:71 ../admin/adm_slaveip.php:73
#: ../admin/mail_list.php:88 #: ../admin/adm_tld.php:67 ../admin/mail_list.php:88
msgid "Action" msgid "Action"
msgstr "" msgstr ""
@ -242,12 +224,13 @@ msgstr ""
msgid "Yes" msgid "Yes"
msgstr "" msgstr ""
#: ../admin/index.php:55 ../admin/adm_edit.php:78 #: ../admin/adm_edit.php:78 ../admin/adm_mxaccount.php:71
#: ../admin/adm_slaveaccount.php:71 ../admin/adm_slaveaccount.php:91 #: ../admin/adm_mxaccount.php:91 ../admin/adm_slaveaccount.php:71
#: ../admin/ftp_add.php:56 ../admin/ftp_edit.php:58 #: ../admin/adm_slaveaccount.php:91 ../admin/ftp_add.php:56
#: ../admin/hta_adduser.php:49 ../admin/sql_getparam.php:50 #: ../admin/ftp_edit.php:58 ../admin/hta_adduser.php:49 ../admin/index.php:55
#: ../admin/sql_list.php:97 ../admin/sql_passchg.php:52 #: ../admin/sql_getparam.php:50 ../admin/sql_list.php:97
#: ../admin/sql_users_add.php:58 ../admin/sql_users_list.php:96 #: ../admin/sql_passchg.php:52 ../admin/sql_users_add.php:58
#: ../admin/sql_users_list.php:96
msgid "Password" msgid "Password"
msgstr "" msgstr ""
@ -334,42 +317,41 @@ msgstr ""
msgid "Last ip" msgid "Last ip"
msgstr "" msgstr ""
#: ../admin/main.php:55 ../admin/adm_list.php:78 #: ../admin/adm_list.php:78 ../admin/main.php:55
msgid "Expiry" msgid "Expiry"
msgstr "" msgstr ""
#: ../admin/lst_affallsub.php:60 ../admin/lst_affsub.php:138 #: ../admin/adm_list.php:96 ../admin/adm_tld.php:75 ../admin/dom_edit.php:77
#: ../admin/mail_list.php:97 ../admin/adm_list.php:92 ../admin/adm_tld.php:75 #: ../admin/ftp_list.php:70 ../admin/hta_edit.php:68 ../admin/hta_list.php:76
#: ../admin/dom_edit.php:77 ../admin/ftp_list.php:70 ../admin/hta_edit.php:68 #: ../admin/mail_list.php:97 ../admin/sta2_list.php:67
#: ../admin/hta_list.php:76 ../admin/sta2_list.php:67
msgid "Edit" msgid "Edit"
msgstr "" msgstr ""
#: ../admin/adm_list.php:96 ../admin/adm_list.php:148 #: ../admin/adm_list.php:100 ../admin/adm_list.php:157
#: ../admin/adm_list.php:169 ../admin/adm_list.php:194 #: ../admin/adm_list.php:178 ../admin/adm_list.php:203
msgid "Locked Account" msgid "Locked Account"
msgstr "" msgstr ""
#: ../admin/adm_list.php:100 #: ../admin/adm_list.php:103
msgid "Connect as" msgid "Connect as"
msgstr "" msgstr ""
#: ../admin/adm_list.php:144 ../admin/adm_list.php:165 #: ../admin/adm_list.php:153 ../admin/adm_list.php:174
#: ../admin/adm_list.php:190 #: ../admin/adm_list.php:199
msgid "E" msgid "E"
msgstr "" msgstr ""
#: ../admin/adm_list.php:145 ../admin/adm_list.php:166 #: ../admin/adm_list.php:154 ../admin/adm_list.php:175
#: ../admin/adm_list.php:191 #: ../admin/adm_list.php:200
msgid "Q" msgid "Q"
msgstr "" msgstr ""
#: ../admin/adm_list.php:151 ../admin/adm_list.php:173 #: ../admin/adm_list.php:160 ../admin/adm_list.php:182
#: ../admin/adm_list.php:197 #: ../admin/adm_list.php:206
msgid "C" msgid "C"
msgstr "" msgstr ""
#: ../admin/adm_list.php:209 ../admin/ftp_list.php:77 #: ../admin/adm_list.php:218 ../admin/ftp_list.php:77
msgid "Delete checked accounts" msgid "Delete checked accounts"
msgstr "" msgstr ""
@ -381,6 +363,47 @@ msgstr ""
msgid "Member login" msgid "Member login"
msgstr "" msgstr ""
#: ../admin/adm_mxaccount.php:40 ../admin/adm_slaveaccount.php:40
msgid "The requested account has been deleted. It is now denied."
msgstr ""
#: ../admin/adm_mxaccount.php:46 ../admin/adm_slaveaccount.php:46
msgid "The requested account address has been created. It is now allowed."
msgstr ""
#: ../admin/adm_mxaccount.php:55 ../admin/adm_panel.php:54
msgid "Manage allowed accounts for secondary mx"
msgstr ""
#: ../admin/adm_mxaccount.php:67
msgid ""
"Here is the list of the allowed accounts for secondary mx management. You "
"can configure the alternc-secondarymx package on your secondary mx server "
"and give him the login/pass that will grant him access to your server's mx-"
"hosted domain list. "
msgstr ""
#: ../admin/adm_mxaccount.php:71 ../admin/adm_mxaccount.php:91
#: ../admin/adm_slaveaccount.php:71 ../admin/adm_slaveaccount.php:91
msgid "Login"
msgstr ""
#: ../admin/adm_mxaccount.php:79 ../admin/adm_slaveaccount.php:79
#: ../admin/adm_slaveip.php:81 ../admin/bro_main.php:138
#: ../admin/dom_edit.php:80 ../admin/mail_list.php:88
msgid "Delete"
msgstr ""
#: ../admin/adm_mxaccount.php:88
msgid ""
"If you want to allow a new server to access your mx-hosted domain list, give "
"him an account."
msgstr ""
#: ../admin/adm_mxaccount.php:97 ../admin/adm_slaveaccount.php:97
msgid "Add this account to the allowed list"
msgstr ""
#: ../admin/adm_panel.php:41 ../admin/menu_adm.php:40 #: ../admin/adm_panel.php:41 ../admin/menu_adm.php:40
msgid "Admin Control Panel" msgid "Admin Control Panel"
msgstr "" msgstr ""
@ -398,11 +421,11 @@ msgstr ""
msgid "Manage allowed accounts for slave zone transfers" msgid "Manage allowed accounts for slave zone transfers"
msgstr "" msgstr ""
#: ../admin/adm_panel.php:54 ../admin/adm_variables.php:48 #: ../admin/adm_panel.php:55 ../admin/adm_variables.php:48
msgid "Configure AlternC variables" msgid "Configure AlternC variables"
msgstr "" msgstr ""
#: ../admin/adm_panel.php:55 #: ../admin/adm_panel.php:56
msgid "Show all quotas" msgid "Show all quotas"
msgstr "" msgstr ""
@ -414,15 +437,15 @@ msgstr ""
msgid "Editing the quotas of a member" msgid "Editing the quotas of a member"
msgstr "" msgstr ""
#: ../admin/quota_show.php:42 ../admin/adm_quotaedit.php:61 #: ../admin/adm_quotaedit.php:61 ../admin/quota_show.php:42
msgid "Quota" msgid "Quota"
msgstr "" msgstr ""
#: ../admin/quota_show.php:42 ../admin/adm_quotaedit.php:61 #: ../admin/adm_quotaedit.php:61 ../admin/quota_show.php:42
msgid "Total" msgid "Total"
msgstr "" msgstr ""
#: ../admin/quota_show.php:42 ../admin/adm_quotaedit.php:61 #: ../admin/adm_quotaedit.php:61 ../admin/quota_show.php:42
msgid "Used" msgid "Used"
msgstr "" msgstr ""
@ -435,14 +458,6 @@ msgstr ""
msgid "Edit the quotas" msgid "Edit the quotas"
msgstr "" msgstr ""
#: ../admin/adm_slaveaccount.php:40
msgid "The requested account has been deleted. It is now denied."
msgstr ""
#: ../admin/adm_slaveaccount.php:46
msgid "The requested account address has been created. It is now allowed."
msgstr ""
#: ../admin/adm_slaveaccount.php:67 #: ../admin/adm_slaveaccount.php:67
msgid "" msgid ""
"Here is the list of the allowed accounts for slave dns synchronization. You " "Here is the list of the allowed accounts for slave dns synchronization. You "
@ -450,27 +465,12 @@ msgid ""
"the login/pass that will grant him access to your server's domain list. " "the login/pass that will grant him access to your server's domain list. "
msgstr "" msgstr ""
#: ../admin/adm_slaveaccount.php:71 ../admin/adm_slaveaccount.php:91
msgid "Login"
msgstr ""
#: ../admin/adm_slaveaccount.php:79 ../admin/adm_slaveip.php:81
#: ../admin/bro_main.php:138 ../admin/dom_edit.php:80
#: ../admin/lst_affallsub.php:50 ../admin/lst_affsub.php:128
#: ../admin/lst_owner.php:69 ../admin/mail_list.php:88
msgid "Delete"
msgstr ""
#: ../admin/adm_slaveaccount.php:88 #: ../admin/adm_slaveaccount.php:88
msgid "" msgid ""
"If you want to allow a new server to access your domain list, give him an " "If you want to allow a new server to access your domain list, give him an "
"account." "account."
msgstr "" msgstr ""
#: ../admin/adm_slaveaccount.php:97
msgid "Add this account to the allowed list"
msgstr ""
#: ../admin/adm_slaveip.php:40 #: ../admin/adm_slaveip.php:40
msgid "" msgid ""
"The requested ip address has been deleted. It will be denied in one hour." "The requested ip address has been deleted. It will be denied in one hour."
@ -523,7 +523,7 @@ msgstr ""
#: ../admin/adm_tldadd.php:52 #: ../admin/adm_tldadd.php:52
msgid "" msgid ""
"Warning : only some final tld are known in the whois function of AlternC, " "Warning : only some final tld are known in the whois function of AlternC, "
"please check m_domains.php accordingly." "please check m_dom.php accordingly."
msgstr "" msgstr ""
#: ../admin/adm_tldadd.php:58 ../admin/adm_tldedit.php:58 #: ../admin/adm_tldadd.php:58 ../admin/adm_tldedit.php:58
@ -603,19 +603,19 @@ msgstr ""
msgid "File editing" msgid "File editing"
msgstr "" msgstr ""
#: ../admin/bro_editor.php:69 #: ../admin/bro_editor.php:67
msgid "Save" msgid "Save"
msgstr "" msgstr ""
#: ../admin/bro_editor.php:70 #: ../admin/bro_editor.php:68
msgid "Save &amp; Quit" msgid "Save &amp; Quit"
msgstr "" msgstr ""
#: ../admin/bro_editor.php:71 #: ../admin/bro_editor.php:69
msgid "Quit" msgid "Quit"
msgstr "" msgstr ""
#: ../admin/hta_edit.php:50 ../admin/bro_main.php:89 ../admin/hta_edit.php:82 #: ../admin/bro_main.php:89 ../admin/hta_edit.php:50 ../admin/hta_edit.php:82
#: ../admin/menu_brouteur.php:34 #: ../admin/menu_brouteur.php:34
msgid "File browser" msgid "File browser"
msgstr "" msgstr ""
@ -624,7 +624,7 @@ msgstr ""
msgid "Create" msgid "Create"
msgstr "" msgstr ""
#: ../class/m_bro.php:222 ../class/m_bro.php:231 ../admin/bro_main.php:97 #: ../admin/bro_main.php:97 ../class/m_bro.php:222 ../class/m_bro.php:231
msgid "File" msgid "File"
msgstr "" msgstr ""
@ -650,7 +650,7 @@ msgid "Move"
msgstr "" msgstr ""
#: ../admin/bro_main.php:177 ../admin/bro_main.php:348 #: ../admin/bro_main.php:177 ../admin/bro_main.php:348
#: ../admin/sta2_list.php:71 ../admin/sta2_list.php:57 #: ../admin/sta2_list.php:57 ../admin/sta2_list.php:71
msgid "View" msgid "View"
msgstr "" msgstr ""
@ -827,8 +827,8 @@ msgstr ""
msgid "Your new domain %s has been successfully installed" msgid "Your new domain %s has been successfully installed"
msgstr "" msgstr ""
#: ../admin/hta_doedituser.php:53 ../admin/dom_doadd.php:49 #: ../admin/dom_doadd.php:49 ../admin/dom_dodel.php:69
#: ../admin/dom_dodel.php:69 ../admin/dom_editdns.php:57 #: ../admin/dom_editdns.php:57 ../admin/hta_doedituser.php:53
msgid "Click here to continue" msgid "Click here to continue"
msgstr "" msgstr ""
@ -892,8 +892,8 @@ msgstr ""
msgid "IP redirection" msgid "IP redirection"
msgstr "" msgstr ""
#: ../class/m_dom.php:551 ../admin/dom_edit.php:122 #: ../admin/dom_edit.php:122 ../admin/dom_subedit.php:83
#: ../admin/dom_subedit.php:83 #: ../class/m_dom.php:551
msgid "Webmail access" msgid "Webmail access"
msgstr "" msgstr ""
@ -986,7 +986,7 @@ msgstr ""
msgid "FTP accounts list" msgid "FTP accounts list"
msgstr "" msgstr ""
#: ../admin/hta_list.php:50 ../admin/hta_add.php:37 ../admin/hta_list.php:86 #: ../admin/hta_add.php:37 ../admin/hta_list.php:50 ../admin/hta_list.php:86
#: ../admin/web_list.php:3 #: ../admin/web_list.php:3
msgid "Protect a folder" msgid "Protect a folder"
msgstr "" msgstr ""
@ -1054,7 +1054,7 @@ msgstr ""
msgid "Editing user %s in the protected folder %s" msgid "Editing user %s in the protected folder %s"
msgstr "" msgstr ""
#: ../admin/quota_show_all.php:50 ../admin/hta_edituser.php:48 #: ../admin/hta_edituser.php:48 ../admin/quota_show_all.php:50
#: ../admin/sql_users_list.php:53 #: ../admin/sql_users_list.php:53
msgid "User" msgid "User"
msgstr "" msgstr ""
@ -1101,157 +1101,13 @@ msgid "You must accept the session cookie to log-in"
msgstr "" msgstr ""
#: ../admin/index.php:66 #: ../admin/index.php:66
msgid "If you want to use a different language, click on the flag below" msgid "You can use a different language: "
msgstr "" msgstr ""
#: ../admin/index.php:75 ../admin/index.php:74 #: ../admin/index.php:74
msgid "AlternC, Opensource hosting control panel" msgid "AlternC, Opensource hosting control panel"
msgstr "" msgstr ""
#: ../admin/lst_addown.php:42
msgid "The new owner has been successfully added"
msgstr ""
#: ../admin/lst_addown.php:51 ../admin/lst_addsub1.php:51
#: ../admin/lst_addsub.php:50 ../admin/lst_affallsub.php:42
#: ../admin/lst_affsub.php:43 ../admin/lst_delown.php:52
#: ../admin/lst_delsub.php:50 ../admin/lst_doedit.php:51
#: ../admin/lst_doeditsub.php:46 ../admin/lst_owner.php:40
#: ../admin/lst_subscribers.php:40
#, php-format
msgid "Mailing list %s"
msgstr ""
#: ../admin/lst_addsub1.php:42
msgid "Subscription successfull"
msgstr ""
#: ../admin/lst_addsub.php:41
msgid "The new member has been successfully added"
msgstr ""
#: ../admin/lst_affallsub.php:50 ../admin/lst_affsub.php:128
msgid "Name"
msgstr ""
#: ../admin/lst_affallsub.php:65 ../admin/lst_affsub.php:143
msgid "Delete the checked subscribers"
msgstr ""
#: ../admin/lst_affallsub.php:72 ../admin/lst_affsub.php:228
msgid "Back to the subscription page"
msgstr ""
#: ../admin/lst_affsub.php:55
msgid "Show all subscribed emails"
msgstr ""
#: ../admin/lst_affsub.php:60
#, php-format
msgid "From %s to %s sur %s"
msgstr ""
#: ../admin/lst_affsub.php:211
msgid "To access directly a page from a mail address:"
msgstr ""
#: ../admin/lst_affsub.php:216 ../admin/lst_affsub.php:222
msgid "From "
msgstr ""
#: ../admin/lst_affsub.php:216 ../admin/lst_affsub.php:222
msgid "to"
msgstr ""
#: ../admin/lst_delown.php:43
msgid "The owner(s) has been successfully deleted"
msgstr ""
#: ../admin/lst_delsub.php:44
msgid "The mail(s) has been successfully unsubscribed from the list"
msgstr ""
#: ../admin/lst_delsub.php:57 ../admin/lst_doeditsub.php:52
msgid "Back"
msgstr ""
#: ../admin/lst_doedit.php:42
msgid "The list parameters has been successfully changed"
msgstr ""
#: ../admin/lst_doeditsub.php:39
msgid "The user's parameters has been successfully changed"
msgstr ""
#: ../admin/lst_doedittxt.php:37
msgid "The message has been successfully edited"
msgstr ""
#: ../admin/lst_owner.php:47
msgid "Add an owner to the list"
msgstr ""
#: ../admin/lst_owner.php:51
msgid "Enter the new owner's email"
msgstr ""
#: ../admin/lst_owner.php:54
msgid "Add this owner to the list"
msgstr ""
#: ../admin/lst_owner.php:56
msgid "Note: an owner is also a moderator"
msgstr ""
#: ../admin/lst_owner.php:66
msgid "Delete one or more owners from the list"
msgstr ""
#: ../admin/lst_owner.php:81
msgid "Delete the checked owners"
msgstr ""
#: ../admin/lst_owner.php:82
msgid "Note: a list must have at least one owner"
msgstr ""
#: ../admin/lst_subscribers.php:50
#, php-format
msgid "There is %s subscriber(s) in your list"
msgstr ""
#: ../admin/lst_subscribers.php:51
msgid "View, edit and delete subscribers"
msgstr ""
#: ../admin/lst_subscribers.php:52
msgid "Download the subscribers list"
msgstr ""
#: ../admin/lst_subscribers.php:59
msgid "Add a subscriber to the list"
msgstr ""
#: ../admin/lst_subscribers.php:67
msgid "User's name"
msgstr ""
#: ../admin/lst_subscribers.php:71
msgid "Subscribe this email to the list"
msgstr ""
#: ../admin/lst_subscribers.php:80
msgid "Subscribe many users to the list:"
msgstr ""
#: ../admin/lst_subscribers.php:83
msgid "Enter the user email list, one per line"
msgstr ""
#: ../admin/lst_subscribers.php:89
msgid "Subscribe those users to the list"
msgstr ""
#: ../admin/mail_add.php:37 #: ../admin/mail_add.php:37
#, php-format #, php-format
msgid "Add a mail to the domain %s" msgid "Add a mail to the domain %s"
@ -1281,16 +1137,41 @@ msgstr ""
msgid "help_mail_add" msgid "help_mail_add"
msgstr "" msgstr ""
#: ../admin/mail_del.php:42 ../admin/mail_dodel.php:41
msgid "Deleting mail accounts"
msgstr ""
#: ../admin/mail_del.php:43
msgid "Please confirm the deletion of the following mail accounts:"
msgstr ""
#: ../admin/mail_del.php:57 ../admin/mail_list.php:107
msgid "Delete the selected mailboxes"
msgstr ""
#: ../admin/mail_del.php:57
msgid "Don't delete accounts and go back to the mail list"
msgstr ""
#: ../admin/mail_doadd.php:44 #: ../admin/mail_doadd.php:44
#, php-format #, php-format
msgid "The mailbox <b>%s</b> has been successfully created" msgid "The mailbox <b>%s</b> has been successfully created"
msgstr "" msgstr ""
#: ../admin/mail_dodel.php:39 #: ../admin/mail_dodel.php:48
#, php-format #, php-format
msgid "The mailbox <b>%s</b> does not exist!" msgid "The mailbox <b>%s</b> does not exist!"
msgstr "" msgstr ""
#: ../admin/mail_dodel.php:51
#, php-format
msgid "The mailbox <b>%s</b> has been deleted!"
msgstr ""
#: ../admin/mail_dodel.php:60
msgid "Back to the mail account list"
msgstr ""
#: ../admin/mail_doedit.php:46 #: ../admin/mail_doedit.php:46
#, php-format #, php-format
msgid "The mailbox <b>%s</b> has been successfully changed" msgid "The mailbox <b>%s</b> has been successfully changed"
@ -1338,10 +1219,6 @@ msgstr ""
msgid "Size" msgid "Size"
msgstr "" msgstr ""
#: ../admin/mail_list.php:107
msgid "Delete the selected mailboxes"
msgstr ""
#: ../admin/main.php:38 #: ../admin/main.php:38
msgid "Last Login: " msgid "Last Login: "
msgstr "" msgstr ""
@ -1871,6 +1748,30 @@ msgstr ""
msgid "Not managed" msgid "Not managed"
msgstr "" msgstr ""
#: ../class/m_admin.php:53
msgid "This TLD is forbidden"
msgstr ""
#: ../class/m_admin.php:54
msgid "primary DNS is checked in WHOIS db"
msgstr ""
#: ../class/m_admin.php:55
msgid "primary & secondary DNS are checked in WHOIS db"
msgstr ""
#: ../class/m_admin.php:56
msgid "Domain must exist, but don't do any DNS check"
msgstr ""
#: ../class/m_admin.php:57
msgid "Domain can be installed, no check at all"
msgstr ""
#: ../class/m_admin.php:58
msgid "Domain can be installed, force NO DNS hosting)"
msgstr ""
#: ../class/m_err.php:64 ../class/m_err.php:90 ../class/m_err.php:107 #: ../class/m_err.php:64 ../class/m_err.php:90 ../class/m_err.php:107
#, php-format #, php-format
msgid "err_" msgid "err_"
@ -1881,14 +1782,6 @@ msgstr ""
msgid "_" msgid "_"
msgstr "" msgstr ""
#: ../class/m_mem.php:474
msgid "Help"
msgstr ""
#: ../admin/index.php:66
msgid "You can use a different language: "
msgstr ""
#: ../class/mime.php:135 #: ../class/mime.php:135
msgid "CSS Stylesheet" msgid "CSS Stylesheet"
msgstr "" msgstr ""
@ -2021,26 +1914,6 @@ msgstr ""
msgid "Real Media File" msgid "Real Media File"
msgstr "" msgstr ""
#: ../class/m_admin.php:53 #: ../class/m_mem.php:474
msgid "This TLD is forbidden" msgid "Help"
msgstr ""
#: ../class/m_admin.php:54
msgid "primary DNS is checked in WHOIS db"
msgstr ""
#: ../class/m_admin.php:55
msgid "primary & secondary DNS are checked in WHOIS db"
msgstr ""
#: ../class/m_admin.php:56
msgid "Domain must exist, but don't do any DNS check"
msgstr ""
#: ../class/m_admin.php:57
msgid "Domain can be installed, no check at all"
msgstr ""
#: ../class/m_admin.php:58
msgid "Domain can be installed, force NO DNS hosting)"
msgstr "" msgstr ""

View File

@ -429,3 +429,11 @@ CREATE TABLE IF NOT EXISTS `dbusers` (
KEY `id` (`id`) KEY `id` (`id`)
) TYPE=MyISAM COMMENT='Utilisateurs MySQL des membres'; ) TYPE=MyISAM COMMENT='Utilisateurs MySQL des membres';
CREATE TABLE IF NOT EXISTS `mxaccount` (
`login` VARCHAR( 64 ) NOT NULL ,
`pass` VARCHAR( 64 ) NOT NULL ,
PRIMARY KEY ( `login` )
) COMMENT = 'Allowed account for secondary mx managment';

View File

@ -0,0 +1,8 @@
CREATE TABLE IF NOT EXISTS `mxaccount` (
`login` VARCHAR( 64 ) NOT NULL ,
`pass` VARCHAR( 64 ) NOT NULL ,
PRIMARY KEY ( `login` )
) COMMENT = 'Allowed account for secondary mx managment';

View File

@ -1,13 +0,0 @@
#!/bin/sh
#
# Met a jour le fichier pot.
#
cd bureau
i="main"
xgettext admin/*.php class/*.php -d${i}_tmp -plocales/ -Lphp -k_ -k__ --from-code=iso-8859-1 --msgid-bugs-address="i18n@alternc.org"
YEAR=`date +%Y`
FULLDATE=`date +"%Y-%m-%d %H:%M %Z"`
cat locales/${i}_tmp.po | sed -e "s/# SOME DESCRIPTIVE TITLE./# AlternC's Translation/" | sed -e "s/YEAR THE PACKAGE'S COPYRIGHT HOLDER/$YEAR AlternC's translation team <i18n@alternc.org>/" | sed -e "s/This file is distributed under the same license as the PACKAGE package./This file is distributed under the same license as the AlternC's package./" | sed -e "s/FIRST AUTHOR <EMAIL@ADDRESS>, YEAR./AlternC's translation team <i18n@alternc.org>/" | sed -e 's/Project-Id-Version: PACKAGE VERSION/$id$/' | sed -e "s/PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE/PO-Revision-Date: $FULLDATE/" | sed -e "s/Language-Team: LANGUAGE <LL@li.org>/Language-Team: Team AlternC <i18n@alternc.org>/" | sed -e 's/Content-Type: text\/plain; charset=CHARSET/Content-Type: text\/plain; charset=ISO-8859-1/' | sed -e 's/Last-Translator: FULL NAME <EMAIL@ADDRESS>/Last-Translator: Team AlternC <i18n@alternc.org>/' >locales/${i}.pot
rm locales/${i}_tmp.po