adding crypto module, used for LXC
This commit is contained in:
parent
101fe200dc
commit
4f603deb80
|
@ -361,6 +361,7 @@ bureau/class/m_admin.php -text
|
|||
bureau/class/m_authip.php -text
|
||||
bureau/class/m_bro.php -text
|
||||
bureau/class/m_cron.php -text
|
||||
bureau/class/m_crypto.php -text
|
||||
bureau/class/m_debug_alternc.php -text
|
||||
bureau/class/m_dom.php -text
|
||||
bureau/class/m_err.php -text
|
||||
|
|
|
@ -38,6 +38,7 @@ $fields = array (
|
|||
"show" => array ("request", "string", ""),
|
||||
"creator" => array("request", "integer", 0),
|
||||
"short" => array("request", "integer", -1),
|
||||
"pattern" => array("request", "string", FALSE),
|
||||
);
|
||||
getFields($fields);
|
||||
|
||||
|
@ -56,15 +57,35 @@ if ($show=="all" && !$subadmin==1 && $cuid != 2000) {
|
|||
exit();
|
||||
}
|
||||
|
||||
$r=$admin->get_list($show == 'all' ? 1 : 0, $creator);
|
||||
|
||||
if ($pattern)
|
||||
$r=$admin->get_list($show == 'all' ? 1 : 0, $creator, $pattern);
|
||||
else
|
||||
$r = FALSE;
|
||||
?>
|
||||
|
||||
<h3><?php __("AlternC account list"); ?></h3>
|
||||
<hr id="topbar"/>
|
||||
<br />
|
||||
|
||||
<p><span class="ina"><a href="adm_add.php"><?php __("Create a new AlternC account"); ?></a></span></p>
|
||||
|
||||
<p>
|
||||
|
||||
<form method="get">
|
||||
<label for="pattern"><?php __("Login pattern"); ?></label>
|
||||
<input type="text" id="pattern" name="pattern" value="<?php echo $pattern ? $pattern : '*'; ?>"/> <input type="submit" class="inb" value="<?php __("submit"); ?>" />
|
||||
</form>
|
||||
|
||||
</p>
|
||||
|
||||
<?php
|
||||
if (isset($error) && !empty($error) ) {
|
||||
echo "<p class=\"error\">$error</p>";
|
||||
echo '<p class="error">' , $error, '</p>';
|
||||
}
|
||||
if (!$r) {
|
||||
__("Enter a pattern for login list");
|
||||
exit (0);
|
||||
}
|
||||
?>
|
||||
<p>
|
||||
|
@ -92,15 +113,13 @@ if($show != 'all') {
|
|||
echo '<p><span class="ina"><a href="adm_list.php">' . _('List only my accounts') . '</a></span></p>';
|
||||
}
|
||||
}// END ($subadmin==1 || $cuid==2000)
|
||||
?>
|
||||
<p><span class="ina"><a href="adm_add.php"><?php __("Create a new AlternC account"); ?></a></span></p>
|
||||
|
||||
<?php
|
||||
if (!is_array($r)) {
|
||||
echo "<p class=\"error\">"._("No account defined for now")."</p>";
|
||||
echo '<p class="error">' , _("No account defined for now"), '</p>';
|
||||
} else {
|
||||
?>
|
||||
|
||||
|
||||
<form method="post" action="adm_dodel.php">
|
||||
<?php
|
||||
|
||||
|
@ -143,7 +162,7 @@ while (list($key,$val)=each($r))
|
|||
<?php } else { ?>
|
||||
<td><input type="checkbox" class="inc" name="d[]" id="user_<?php echo $val["uid"]; ?>" value="<?php echo $val["uid"]; ?>" /></td>
|
||||
<?php } ?>
|
||||
<td <?php if ($val["su"]) echo "style=\"color: red\""; ?>><label for="user_<?php echo $val["uid"]; ?>"><b><?php echo $val["login"] ?></b></label></td>
|
||||
<td <?php if ($val["su"]) echo 'style="color: red"'; ?>><label for="user_<?php echo $val["uid"]; ?>"><b><?php echo $val["login"] ?></b></label></td>
|
||||
<td><a href="mailto:<?php echo $val["mail"]; ?>"><?php echo $val["nom"]." ".$val["prenom"] ?></a> </td>
|
||||
<td><?php echo $val["parentlogin"] ?></td>
|
||||
<td><?php echo format_date(_('%3$d-%2$d-%1$d'),$val["created"]); ?></td>
|
||||
|
@ -180,7 +199,6 @@ while (list($key,$val)=each($r))
|
|||
}
|
||||
|
||||
} // NORMAL MODE
|
||||
|
||||
if ($mem->user["admlist"]==1) { // SHORT MODE
|
||||
?>
|
||||
|
||||
|
@ -241,7 +259,7 @@ if (is_array($val)) {
|
|||
<td style="padding-right: 2px; border-right: 1px solid black; <?php if ($val["su"]) echo "color: red"; ?>"><b><label for="id_c_<?php echo $val["uid"]; ?>"><?php echo $val["login"] ?></label></b></td>
|
||||
<?php
|
||||
|
||||
} else echo "<td style=\"padding-right: 2px; border-right: 1px solid;\" colspan=\"3\"></td></tr>";
|
||||
} else echo '<td style="padding-right: 2px; border-right: 1px solid;" colspan="3"></td></tr>';
|
||||
|
||||
$val=null;
|
||||
if (isset($r[$z+2*$rz])) {
|
||||
|
@ -265,7 +283,7 @@ if (is_array($val)) {
|
|||
<td style="padding-right: 2px; border-right: 1px solid black; <?php if ($val["su"]) echo "color: red"; ?>"><b><label for="id_c_<?php echo $val["uid"]; ?>"><?php echo $val["login"] ?></label></b></td>
|
||||
</tr>
|
||||
<?php
|
||||
} else echo "<td style=\"padding-right: 2px; border-right: 1px solid;\" colspan=\"3\"></td></tr>";
|
||||
} else echo '<td style="padding-right: 2px; border-right: 1px solid;" colspan="3"></td></tr>';
|
||||
} // for loop
|
||||
} // Short Mode
|
||||
|
||||
|
|
|
@ -281,7 +281,7 @@ class m_admin {
|
|||
* table <code>membres</code> and <code>local</code> of all the accounts.
|
||||
* Returns FALSE if an error occurs.
|
||||
*/
|
||||
function get_list($all=0,$creator=0) {
|
||||
function get_list($all=0,$creator=0,$pattern=FALSE) {
|
||||
global $err,$mem,$cuid;
|
||||
$err->log("admin","get_list");
|
||||
if (!$this->enabled) {
|
||||
|
@ -289,7 +289,21 @@ class m_admin {
|
|||
return false;
|
||||
}
|
||||
$db=new DB_System();
|
||||
if ($creator) {
|
||||
|
||||
$request = 'SELECT uid FROM membres WHERE 1';
|
||||
|
||||
if ($pattern && preg_match('/[a-zA-Z0-9]+/', $pattern))
|
||||
$request .= sprintf(' AND login LIKE "%%%s%%"', $pattern);
|
||||
|
||||
if ($creator)
|
||||
$request .= sprintf(' AND creator = "%s"', $creator);
|
||||
if ($mem->user['uid']!=2000 && !$all)
|
||||
$request .= sprintf(' AND creator = "%s"', $cuid);
|
||||
|
||||
$request .= ' ORDER BY login;';
|
||||
|
||||
/* if ($creator)
|
||||
{
|
||||
// Limit listing to a specific reseller
|
||||
$db->query("SELECT uid FROM membres WHERE creator='".$creator."' ORDER BY login;");
|
||||
} elseif ($mem->user['uid']==2000 || $all) {
|
||||
|
@ -297,6 +311,10 @@ class m_admin {
|
|||
} else {
|
||||
$db->query("SELECT uid FROM membres WHERE creator='".$cuid."' ORDER BY login;");
|
||||
}
|
||||
*/
|
||||
|
||||
$db->query($request);
|
||||
|
||||
if ($db->num_rows()) {
|
||||
while ($db->next_record()) {
|
||||
$c[]=$this->get($db->f("uid"));
|
||||
|
|
|
@ -0,0 +1,44 @@
|
|||
<?php
|
||||
|
||||
class m_crypto
|
||||
{
|
||||
function encrypt($sValue, $sSecretKey)
|
||||
{
|
||||
return rtrim(
|
||||
base64_encode(
|
||||
mcrypt_encrypt(
|
||||
MCRYPT_RIJNDAEL_256,
|
||||
$sSecretKey, $sValue,
|
||||
MCRYPT_MODE_ECB,
|
||||
mcrypt_create_iv(
|
||||
mcrypt_get_iv_size(
|
||||
MCRYPT_RIJNDAEL_256,
|
||||
MCRYPT_MODE_ECB
|
||||
),
|
||||
MCRYPT_RAND
|
||||
)
|
||||
)
|
||||
), "\0"
|
||||
);
|
||||
}
|
||||
|
||||
function decrypt($sValue, $sSecretKey)
|
||||
{
|
||||
return rtrim(
|
||||
mcrypt_decrypt(
|
||||
MCRYPT_RIJNDAEL_256,
|
||||
$sSecretKey,
|
||||
base64_decode($sValue),
|
||||
MCRYPT_MODE_ECB,
|
||||
mcrypt_create_iv(
|
||||
mcrypt_get_iv_size(
|
||||
MCRYPT_RIJNDAEL_256,
|
||||
MCRYPT_MODE_ECB
|
||||
),
|
||||
MCRYPT_RAND
|
||||
)
|
||||
), "\0"
|
||||
);
|
||||
}
|
||||
|
||||
}
|
|
@ -96,13 +96,13 @@ class m_lxc implements vm {
|
|||
$params['server']=$L_FQDN;
|
||||
$params['key']=$this->KEY;
|
||||
|
||||
$msg = sprintf("%s\n", serialize($params) );
|
||||
$msg = sprintf("%s\n", $crypto->encrypt(serialize($params), $this->KEY) );
|
||||
if (fwrite ($fp, $msg) < 0) {
|
||||
$this->error[] = 'Unable to send data';
|
||||
return FALSE;
|
||||
}
|
||||
$resp = '';
|
||||
$resp = fgets($fp, 4096);
|
||||
$resp = fgets($fp, 8192);
|
||||
fclose ($fp);
|
||||
|
||||
$data = @unserialize($resp);
|
||||
|
|
|
@ -29,7 +29,8 @@
|
|||
class m_piwik {
|
||||
var $piwik_server_uri;
|
||||
var $piwik_admin_token;
|
||||
|
||||
var $alternc_users;
|
||||
var $alternc_sites;
|
||||
|
||||
function hook_menu() {
|
||||
global $quota;
|
||||
|
@ -37,7 +38,7 @@ class m_piwik {
|
|||
|
||||
$obj = array(
|
||||
'title' => _("Piwik statistics"),
|
||||
'ico' => 'images/stat.png',
|
||||
'ico' => 'images/piwik.png',
|
||||
'link' => 'toggle',
|
||||
'pos' => 115,
|
||||
'links' => array(
|
||||
|
@ -55,6 +56,8 @@ class m_piwik {
|
|||
function m_piwik() {
|
||||
$this->piwik_server_uri=variable_get('piwik_server_uri',null,'Remote Piwik server uri');
|
||||
$this->piwik_admin_token=variable_get('piwik_admin_token',null,'Remote Piwik super-admin token');
|
||||
$this->alternc_users = $this->get_alternc_users();
|
||||
$this->alternc_sites = $this->get_alternc_sites();
|
||||
}
|
||||
|
||||
/* ----------------------------------------------------------------- */
|
||||
|
@ -100,7 +103,7 @@ class m_piwik {
|
|||
$user_login = $this->clean_user_name($user_login);
|
||||
$user_pass = create_pass();
|
||||
$user_mail = $user_mail ? $user_mail : $mem->user['mail'];
|
||||
$user_mail = create_pass(4) . $user_mail;
|
||||
$user_mail = create_pass(4) . '@gmail.com'; // FIXME $user_mail; Unicité sur les emails ... Soit on ajoute + random soit, on prompt
|
||||
$user_alias = $user_login;
|
||||
|
||||
$api_data = $this->call_privileged_page('API', 'UsersManager.addUser', array('userLogin' => $user_login, 'password' => $user_pass, 'email' => $user_mail, 'alias' => $user_alias), 'JSON');
|
||||
|
@ -108,7 +111,7 @@ class m_piwik {
|
|||
if ($api_data->result === 'success') {
|
||||
$user = $this->get_user($user_login);
|
||||
$user_creation_date = $user->date_registered;
|
||||
$db->query("INSERT INTO piwik_users (uid, login, created_date) VALUES ('$cuid', '$user_login', '$user_creation_date')");
|
||||
return $db->query("INSERT INTO piwik_users (uid, login, created_date) VALUES ('$cuid', '$user_login', '$user_creation_date')");
|
||||
}
|
||||
} else { // api_data = false -> error is already filled
|
||||
return FALSE;
|
||||
|
@ -122,6 +125,34 @@ class m_piwik {
|
|||
return true;
|
||||
}
|
||||
|
||||
function get_site_access($user_login) {
|
||||
return $this->call_privileged_page('API', 'UsersManager.getSitesAccessFromUser', array('userLogin' => $user_login));
|
||||
}
|
||||
|
||||
function get_users_access_from_site($site_id) {
|
||||
global $err, $cuid;
|
||||
|
||||
if (!is_numeric($site_id)) {
|
||||
$err->raise('piwik', 'site_id must be numeric');
|
||||
return FALSE;
|
||||
}
|
||||
if (!in_array($site_id, $this->alternc_sites)) {
|
||||
$err->raise('piwik', "you don't own this piwik website");
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
$api_data = $this->call_privileged_page('API', 'UsersManager.getUsersAccessFromSite', array('idSite' => $site_id));
|
||||
if ($api_data !== FALSE) {
|
||||
$api_data = $api_data[0]; // Data is in the first column
|
||||
foreach ($this->alternc_users AS $key=>$user) {
|
||||
if (!array_key_exists($user, $api_data)) {
|
||||
$api_data->$user = 'noaccess';
|
||||
}
|
||||
}
|
||||
return $api_data;
|
||||
}
|
||||
else return FALSE;
|
||||
}
|
||||
|
||||
function get_user($user_login) {
|
||||
$api_data = $this->call_privileged_page('API', 'UsersManager.getUser', array('userLogin' => $user_login));
|
||||
|
@ -132,7 +163,16 @@ class m_piwik {
|
|||
return FALSE;
|
||||
}
|
||||
|
||||
function get_alternc_users() {
|
||||
global $db, $cuid;
|
||||
|
||||
static $alternc_users = array();
|
||||
$db->query("SELECT login FROM piwik_users WHERE uid='$cuid'");
|
||||
while ($db->next_record())
|
||||
array_push($alternc_users, $db->f('login'));
|
||||
|
||||
return $alternc_users;
|
||||
}
|
||||
// Supprime l'utilisateur Piwik passé en parametre
|
||||
// Ne le supprime pas localement tant que pas supprimé en remote
|
||||
function user_delete($piwik_user_login) {
|
||||
|
@ -142,20 +182,17 @@ class m_piwik {
|
|||
$db->next_record();
|
||||
|
||||
if ($db->f('cnt') == 1) {
|
||||
$api_data = $this->call_privileged_page('API', 'UsersManager.getUser', array('userLogin' => $piwik_user_login));
|
||||
printvar($api_data);
|
||||
if ($api_data[0]->date_registered == $db->f('created_date'))
|
||||
echo "equals";
|
||||
else
|
||||
echo "non equals";
|
||||
// $api_data = $this->call_privileged_page('API', 'UsersManager.deleteUser', array('idSite' => $site_id));
|
||||
$api_data = $this->call_privileged_page('API', 'UsersManager.deleteUser', array('userLogin' => $piwik_user_login));
|
||||
if ($api_data->result == 'success') {
|
||||
return $db->query("DELETE FROM piwik_users WHERE uid='$cuid' AND login='$piwik_user_login'");
|
||||
}
|
||||
else {
|
||||
return FALSE;
|
||||
}
|
||||
} else {
|
||||
$err->raise("piwik", _("You are not allowed to delete the statistics of this website"));
|
||||
return FALSE;
|
||||
}
|
||||
//SitesManager.deleteSite (idSite)
|
||||
//FIXME
|
||||
return true;
|
||||
}
|
||||
|
||||
|
||||
|
@ -206,6 +243,9 @@ class m_piwik {
|
|||
if($api_data) {
|
||||
foreach ($api_data AS $site) {
|
||||
|
||||
if (!in_array($site->idsite, $this->alternc_sites))
|
||||
continue;
|
||||
|
||||
$item = new stdClass();
|
||||
|
||||
$item->id = $site->idsite;
|
||||
|
@ -214,11 +254,11 @@ class m_piwik {
|
|||
|
||||
$user_data = $this->call_privileged_page('API', 'UsersManager.getUsersAccessFromSite', array('idSite' => $site->idsite));
|
||||
|
||||
if (is_array($user_data)) {
|
||||
printvar($user_data);
|
||||
} else if(is_object($user_data)) {
|
||||
$item->rights = json_decode($user_data[0]);
|
||||
}
|
||||
//if (is_array($user_data)) {
|
||||
// printvar($user_data);
|
||||
//} else if(is_object($user_data)) {
|
||||
$item->rights = $user_data[0];
|
||||
//}
|
||||
|
||||
$data[] = $item;
|
||||
}
|
||||
|
@ -227,7 +267,25 @@ class m_piwik {
|
|||
return FALSE;
|
||||
}
|
||||
|
||||
function site_js_tag($site_id) {
|
||||
return $this->call_privileged_page('API', 'SitesManager.getJavascriptTag', array('idSite' => $site_id, 'piwikUrl' => $this->piwik_server_uri))->value;
|
||||
}
|
||||
|
||||
function get_alternc_sites() {
|
||||
global $db, $cuid;
|
||||
|
||||
static $alternc_sites = array();
|
||||
$db->query("SELECT piwik_id AS site_id FROM piwik_sites WHERE uid='$cuid'");
|
||||
while ($db->next_record())
|
||||
array_push($alternc_sites, $db->f('site_id'));
|
||||
|
||||
return $alternc_sites;
|
||||
}
|
||||
|
||||
function get_site_list()
|
||||
{
|
||||
return $this->call_privileged_page('API', 'SitesManager.getAllSites');
|
||||
}
|
||||
// Ajoute un site à Piwik
|
||||
// can't figure out how to pass multiple url through the API
|
||||
function site_add($siteName, $urls, $ecommerce = FALSE) {
|
||||
|
@ -238,6 +296,7 @@ class m_piwik {
|
|||
}
|
||||
|
||||
|
||||
//SitesManager.deleteSite (idSite)
|
||||
// Supprime un site de Piwik
|
||||
function site_delete($site_id) {
|
||||
global $db, $cuid, $err;
|
||||
|
@ -247,19 +306,34 @@ class m_piwik {
|
|||
|
||||
if ($db->f('cnt') == 1) {
|
||||
$api_data = $this->call_privileged_page('API', 'SitesManager.deleteSite', array('idSite' => $site_id));
|
||||
printvar($api_data);
|
||||
|
||||
|
||||
if ($api_data->result == 'success') {
|
||||
return $db->query("DELETE FROM piwik_sites where uid='$cuid' AND piwik_id='$site_id' LIMIT 1");
|
||||
} else {
|
||||
return FALSE;
|
||||
}
|
||||
} else {
|
||||
$err->raise("piwik", _("You are not allowed to delete the statistics of this website"));
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
//SitesManager.deleteSite (idSite)
|
||||
//FIXME
|
||||
return true;
|
||||
}
|
||||
|
||||
|
||||
function site_set_user_right($site_id, $login, $right)
|
||||
{
|
||||
global $err;
|
||||
if (!in_array($right, array('noaccess', 'view', 'admin')))
|
||||
return FALSE;
|
||||
$api_data = $this->call_privileged_page('API', 'UsersManager.setUserAccess', array('userLogin' => $login, 'access' => $right, 'idSites' => $site_id));
|
||||
if ($api_data->result == 'success') {
|
||||
return TRUE;
|
||||
} else {
|
||||
$err->raise('piwik', $api_data->messsage);
|
||||
return FALSE;
|
||||
}
|
||||
}
|
||||
// Ajoute un alias sur un site existant
|
||||
function site_alias_add() {
|
||||
// FIXME
|
||||
|
@ -287,16 +361,14 @@ class m_piwik {
|
|||
foreach ($arguments AS $k=>$v)
|
||||
$url .= sprintf('&%s=%s', urlencode($k), $v); // urlencode($v));
|
||||
|
||||
echo $url;
|
||||
$page_content = file_get_contents($url);
|
||||
if ($page_content === FALSE) {
|
||||
$err->raise("piwik", _("Unable to reach the API"));
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
if ($output == 'JSON') {
|
||||
$api_data = json_decode($page_content);
|
||||
if ($api_data == FALSE) {
|
||||
if ($api_data === FALSE) {
|
||||
$err->raise("piwik", _("Error while decoding response from the API"));
|
||||
return FALSE;
|
||||
}
|
||||
|
|
|
@ -12,7 +12,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: AlternC, hosting control panel\n"
|
||||
"Report-Msgid-Bugs-To: alternc@packages.debian.org\n"
|
||||
"POT-Creation-Date: 2013-02-07 19:01+0100\n"
|
||||
"POT-Creation-Date: 2013-03-22 12:11+0000\n"
|
||||
"PO-Revision-Date: 2013-02-08 14:51+0000\n"
|
||||
"Last-Translator: Benjamin Sonntag <benjamin@sonntag.fr>\n"
|
||||
"Language-Team: English <dev@alternc.org>\n"
|
||||
|
@ -142,13 +142,61 @@ msgstr ""
|
|||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:7001
|
||||
msgid "Name of the mysql server:"
|
||||
msgid "The path where alternc's users html files will be put"
|
||||
msgstr ""
|
||||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:7001
|
||||
msgid ""
|
||||
"Please enter the directory name where you want html user files to be put. "
|
||||
"The default value should be good in most cases."
|
||||
msgstr ""
|
||||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:7001
|
||||
msgid "This directory wil contain every alternc users personnal directories."
|
||||
msgstr ""
|
||||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:8001
|
||||
msgid "The path where alternc's users mails will be put"
|
||||
msgstr ""
|
||||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:8001
|
||||
msgid ""
|
||||
"Please enter the directory name where you want to put your users maildirs. "
|
||||
"The default value should be good in most cases."
|
||||
msgstr ""
|
||||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:9001
|
||||
msgid "The path where alternc's logs files will be placed"
|
||||
msgstr ""
|
||||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:9001
|
||||
msgid ""
|
||||
"Please enter the directory name where you want to put your log files. The "
|
||||
"default value should be good in most cases."
|
||||
msgstr ""
|
||||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:10001
|
||||
msgid "Name of the mysql server:"
|
||||
msgstr ""
|
||||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:10001
|
||||
msgid ""
|
||||
"Please enter the fully qualified name of your mysql server host. This server "
|
||||
"MUST be able to access the remote server at standard port (3306). It is "
|
||||
"recommended to use \"127.0.0.1\" instead of \"localhost\" if your postfix "
|
||||
|
@ -157,13 +205,13 @@ msgstr ""
|
|||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:8001
|
||||
#: ../alternc.templates:11001
|
||||
msgid "AlternC's mysql system database:"
|
||||
msgstr ""
|
||||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:8001
|
||||
#: ../alternc.templates:11001
|
||||
msgid ""
|
||||
"AlternC will create a mysql database to store it's system data. Please "
|
||||
"choose the name of this database here. The default value should be good in "
|
||||
|
@ -176,8 +224,8 @@ msgstr ""
|
|||
#. Description
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:9001 ../alternc.templates:10001
|
||||
#: ../alternc.templates:13001
|
||||
#: ../alternc.templates:12001 ../alternc.templates:13001
|
||||
#: ../alternc.templates:16001
|
||||
msgid "AlternC's mysql account:"
|
||||
msgstr ""
|
||||
|
||||
|
@ -185,7 +233,7 @@ msgstr ""
|
|||
#. Description
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:9001 ../alternc.templates:13001
|
||||
#: ../alternc.templates:12001 ../alternc.templates:16001
|
||||
msgid ""
|
||||
"AlternC will create a mysql administrator account. Please choose it's "
|
||||
"username here. The default value should be good in most case."
|
||||
|
@ -193,7 +241,7 @@ msgstr ""
|
|||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:10001
|
||||
#: ../alternc.templates:13001
|
||||
msgid ""
|
||||
"Using a remote mysql installation requires the AlternC user to be configured "
|
||||
"in advance with administrator access to the mysql installation."
|
||||
|
@ -201,7 +249,7 @@ msgstr ""
|
|||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:10001
|
||||
#: ../alternc.templates:13001
|
||||
msgid ""
|
||||
"The alternc sql user is responsible for granting access to user generated "
|
||||
"databases, that is why it needs root access on the mysql installation."
|
||||
|
@ -211,7 +259,7 @@ msgstr ""
|
|||
#. Description
|
||||
#. Type: password
|
||||
#. Description
|
||||
#: ../alternc.templates:11001 ../alternc.templates:14001
|
||||
#: ../alternc.templates:14001 ../alternc.templates:17001
|
||||
msgid "Password of AlternC's mysql account:"
|
||||
msgstr ""
|
||||
|
||||
|
@ -219,7 +267,7 @@ msgstr ""
|
|||
#. Description
|
||||
#. Type: password
|
||||
#. Description
|
||||
#: ../alternc.templates:11001 ../alternc.templates:14001
|
||||
#: ../alternc.templates:14001 ../alternc.templates:17001
|
||||
msgid ""
|
||||
"AlternC requires an administrator account on the mysql server. It will be "
|
||||
"created automatically during the install process. Please choose a password "
|
||||
|
@ -230,7 +278,7 @@ msgstr ""
|
|||
#. Description
|
||||
#. Type: password
|
||||
#. Description
|
||||
#: ../alternc.templates:11001 ../alternc.templates:12001
|
||||
#: ../alternc.templates:14001 ../alternc.templates:15001
|
||||
msgid ""
|
||||
"Please choose a quite complex password since it will have full access to the "
|
||||
"system database! If you enter nothing, a random password will be created."
|
||||
|
@ -238,25 +286,25 @@ msgstr ""
|
|||
|
||||
#. Type: password
|
||||
#. Description
|
||||
#: ../alternc.templates:12001
|
||||
#: ../alternc.templates:15001
|
||||
msgid "Password of the AlternC's mysql account:"
|
||||
msgstr ""
|
||||
|
||||
#. Type: password
|
||||
#. Description
|
||||
#: ../alternc.templates:12001
|
||||
#: ../alternc.templates:15001
|
||||
msgid "Specify the remote mysql user password"
|
||||
msgstr ""
|
||||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:15001
|
||||
#: ../alternc.templates:18001
|
||||
msgid "The server to GRANT permissions to:"
|
||||
msgstr ""
|
||||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:15001
|
||||
#: ../alternc.templates:18001
|
||||
msgid ""
|
||||
"AlternC and MySQL can be installed on different servers. In order to have "
|
||||
"GRANT table properly created and manipulated, this parameter must be set to "
|
||||
|
@ -266,13 +314,13 @@ msgstr ""
|
|||
|
||||
#. Type: select
|
||||
#. Description
|
||||
#: ../alternc.templates:16001
|
||||
#: ../alternc.templates:19001
|
||||
msgid "The way backup rotation is executed"
|
||||
msgstr ""
|
||||
|
||||
#. Type: select
|
||||
#. Description
|
||||
#: ../alternc.templates:16001
|
||||
#: ../alternc.templates:19001
|
||||
msgid ""
|
||||
"AlternC enables users to configure their own backups, on demand, with "
|
||||
"automatic rotation. This option determines how the backups are rotated."
|
||||
|
@ -280,7 +328,7 @@ msgstr ""
|
|||
|
||||
#. Type: select
|
||||
#. Description
|
||||
#: ../alternc.templates:16001
|
||||
#: ../alternc.templates:19001
|
||||
msgid ""
|
||||
"rotate - backup.sql, backup.sql.0, backup.sql.1 date - backup.sql, backup."
|
||||
"sql.20080709, backup.sql.20080708"
|
||||
|
@ -288,13 +336,13 @@ msgstr ""
|
|||
|
||||
#. Type: select
|
||||
#. Description
|
||||
#: ../alternc.templates:17001
|
||||
#: ../alternc.templates:20001
|
||||
msgid "Behavior of the backup script when it encounters a unmanaged file"
|
||||
msgstr ""
|
||||
|
||||
#. Type: select
|
||||
#. Description
|
||||
#: ../alternc.templates:17001
|
||||
#: ../alternc.templates:20001
|
||||
msgid ""
|
||||
"The SQL backups can rename or overwrite existing files it doesn't know about "
|
||||
"when doing backups. The default behavior is to skip those files and ignore "
|
||||
|
@ -303,13 +351,13 @@ msgstr ""
|
|||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:18001
|
||||
#: ../alternc.templates:21001
|
||||
msgid "The primary IP of this server:"
|
||||
msgstr ""
|
||||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:18001
|
||||
#: ../alternc.templates:21001
|
||||
msgid ""
|
||||
"AlternC will default the A records for domains it hosts to this address. In "
|
||||
"other words, this is the address everyone can reach to server at."
|
||||
|
@ -317,13 +365,13 @@ msgstr ""
|
|||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:19001
|
||||
#: ../alternc.templates:22001
|
||||
msgid "The internal IP of this server:"
|
||||
msgstr ""
|
||||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:19001
|
||||
#: ../alternc.templates:22001
|
||||
msgid ""
|
||||
"AlternC will configure Apache and other services to listen to this address. "
|
||||
"This is usually the same as the primary IP of the server, unless the server "
|
||||
|
@ -332,19 +380,19 @@ msgstr ""
|
|||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:19001
|
||||
#: ../alternc.templates:22001
|
||||
msgid "In other words, this is the IP address of eth0."
|
||||
msgstr ""
|
||||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:20001
|
||||
#: ../alternc.templates:23001
|
||||
msgid "The default MX to assign to new domains:"
|
||||
msgstr ""
|
||||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:20001
|
||||
#: ../alternc.templates:23001
|
||||
msgid ""
|
||||
"AlternC will assign this hostname as the MX record for all the domains it "
|
||||
"hosts. It is usually better be left alone."
|
||||
|
@ -352,13 +400,13 @@ msgstr ""
|
|||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:21001
|
||||
#: ../alternc.templates:24001
|
||||
msgid "The default Backup MX to assign to new domains:"
|
||||
msgstr ""
|
||||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:21001
|
||||
#: ../alternc.templates:24001
|
||||
msgid ""
|
||||
"AlternC will assign this hostname as the Backup MX record for all the "
|
||||
"domains it hosts. Don't set it if you don't know what it is about."
|
||||
|
@ -366,13 +414,13 @@ msgstr ""
|
|||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:22001
|
||||
#: ../alternc.templates:25001
|
||||
msgid "The path where AlternC is installed:"
|
||||
msgstr ""
|
||||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:22001
|
||||
#: ../alternc.templates:25001
|
||||
msgid ""
|
||||
"Please enter the partition name where alternc is installed. This is used "
|
||||
"mainly for disk quotas."
|
||||
|
@ -380,19 +428,19 @@ msgstr ""
|
|||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:22001
|
||||
#: ../alternc.templates:25001
|
||||
msgid "Warning: Be careful! It can generate some problems."
|
||||
msgstr ""
|
||||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:23001
|
||||
#: ../alternc.templates:26001
|
||||
msgid "The monitoring server:"
|
||||
msgstr ""
|
||||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:23001
|
||||
#: ../alternc.templates:26001
|
||||
msgid ""
|
||||
"The IP address (or ip/prefix) of the server(s) which must be authorized to "
|
||||
"ping the server and access apache status pages. Completely optional."
|
||||
|
@ -400,61 +448,61 @@ msgstr ""
|
|||
|
||||
#. Type: boolean
|
||||
#. Description
|
||||
#: ../alternc.templates:24001
|
||||
#: ../alternc.templates:27001
|
||||
msgid "Should AlternC remove all databases (/var/lib/mysql/)?"
|
||||
msgstr ""
|
||||
|
||||
#. Type: boolean
|
||||
#. Description
|
||||
#: ../alternc.templates:24001
|
||||
#: ../alternc.templates:27001
|
||||
msgid "All users databases will be trashed"
|
||||
msgstr ""
|
||||
|
||||
#. Type: boolean
|
||||
#. Description
|
||||
#: ../alternc.templates:25001
|
||||
#: ../alternc.templates:28001
|
||||
msgid "Should AlternC remove users datas?"
|
||||
msgstr ""
|
||||
|
||||
#. Type: boolean
|
||||
#. Description
|
||||
#: ../alternc.templates:25001
|
||||
#: ../alternc.templates:28001
|
||||
msgid "The files and apache redirections created by users will be trashed"
|
||||
msgstr ""
|
||||
|
||||
#. Type: boolean
|
||||
#. Description
|
||||
#: ../alternc.templates:26001
|
||||
#: ../alternc.templates:29001
|
||||
msgid "Should AlternC remove bind zones?"
|
||||
msgstr ""
|
||||
|
||||
#. Type: boolean
|
||||
#. Description
|
||||
#: ../alternc.templates:26001
|
||||
#: ../alternc.templates:29001
|
||||
msgid "It will delete all bind zones created by AlternC"
|
||||
msgstr ""
|
||||
|
||||
#. Type: boolean
|
||||
#. Description
|
||||
#: ../alternc.templates:27001
|
||||
#: ../alternc.templates:30001
|
||||
msgid "Should AlternC remove mailboxes?"
|
||||
msgstr ""
|
||||
|
||||
#. Type: boolean
|
||||
#. Description
|
||||
#: ../alternc.templates:27001
|
||||
#: ../alternc.templates:30001
|
||||
msgid "If you accept all users e-mails will be deleted"
|
||||
msgstr ""
|
||||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:28001
|
||||
#: ../alternc.templates:31001
|
||||
msgid "Slave servers"
|
||||
msgstr ""
|
||||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:28001
|
||||
#: ../alternc.templates:31001
|
||||
msgid ""
|
||||
"This is a space-separated list of servers that are \"slaves\" to the master "
|
||||
"server (this server). When writing apache configuration files, the master "
|
||||
|
@ -464,13 +512,13 @@ msgstr ""
|
|||
|
||||
#. Type: boolean
|
||||
#. Description
|
||||
#: ../alternc.templates:29001
|
||||
#: ../alternc.templates:32001
|
||||
msgid "Shall we use locally found MySQL server?"
|
||||
msgstr ""
|
||||
|
||||
#. Type: boolean
|
||||
#. Description
|
||||
#: ../alternc.templates:29001
|
||||
#: ../alternc.templates:32001
|
||||
msgid ""
|
||||
"A local MySQL connection was established on the server. Tell us if you want "
|
||||
"to use it. If not remote MySQL server connection parameters will be needed."
|
||||
|
@ -478,13 +526,13 @@ msgstr ""
|
|||
|
||||
#. Type: boolean
|
||||
#. Description
|
||||
#: ../alternc.templates:30001
|
||||
#: ../alternc.templates:33001
|
||||
msgid "Shall we use a remote MySQL server?"
|
||||
msgstr ""
|
||||
|
||||
#. Type: boolean
|
||||
#. Description
|
||||
#: ../alternc.templates:30001
|
||||
#: ../alternc.templates:33001
|
||||
msgid ""
|
||||
"No local Mysql server was found. Please confirm you want to use a remote "
|
||||
"Mysql Server. If not, AlternC cannot be installed."
|
||||
|
@ -492,13 +540,13 @@ msgstr ""
|
|||
|
||||
#. Type: boolean
|
||||
#. Description
|
||||
#: ../alternc.templates:31001
|
||||
#: ../alternc.templates:34001
|
||||
msgid "MySQL connection error. Try again?"
|
||||
msgstr ""
|
||||
|
||||
#. Type: boolean
|
||||
#. Description
|
||||
#: ../alternc.templates:31001
|
||||
#: ../alternc.templates:34001
|
||||
msgid ""
|
||||
"Remote connection to the MySQL server failed. Please confirm that we shall "
|
||||
"try again."
|
||||
|
@ -506,13 +554,13 @@ msgstr ""
|
|||
|
||||
#. Type: boolean
|
||||
#. Description
|
||||
#: ../alternc.templates:32001
|
||||
#: ../alternc.templates:35001
|
||||
msgid "Private IP detected, use it anyway?"
|
||||
msgstr ""
|
||||
|
||||
#. Type: boolean
|
||||
#. Description
|
||||
#: ../alternc.templates:32001
|
||||
#: ../alternc.templates:35001
|
||||
msgid ""
|
||||
"The IP address you have appears to be private, please confirm you want to "
|
||||
"use it anyway. The server might not be reachable from outside your network."
|
||||
|
|
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: 0.3.1\n"
|
||||
"Report-Msgid-Bugs-To: alternc@packages.debian.org\n"
|
||||
"POT-Creation-Date: 2013-02-07 19:01+0100\n"
|
||||
"POT-Creation-Date: 2013-03-22 12:11+0000\n"
|
||||
"PO-Revision-Date: 2005-05-15 18:24+0200\n"
|
||||
"Last-Translator: Benjamin Sonntag <benjamin@altercn.org>\n"
|
||||
"Language-Team: English <dev@alternc.org>\n"
|
||||
|
@ -136,13 +136,61 @@ msgstr ""
|
|||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:7001
|
||||
msgid "Name of the mysql server:"
|
||||
msgid "The path where alternc's users html files will be put"
|
||||
msgstr ""
|
||||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:7001
|
||||
msgid ""
|
||||
"Please enter the directory name where you want html user files to be put. "
|
||||
"The default value should be good in most cases."
|
||||
msgstr ""
|
||||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:7001
|
||||
msgid "This directory wil contain every alternc users personnal directories."
|
||||
msgstr ""
|
||||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:8001
|
||||
msgid "The path where alternc's users mails will be put"
|
||||
msgstr ""
|
||||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:8001
|
||||
msgid ""
|
||||
"Please enter the directory name where you want to put your users maildirs. "
|
||||
"The default value should be good in most cases."
|
||||
msgstr ""
|
||||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:9001
|
||||
msgid "The path where alternc's logs files will be placed"
|
||||
msgstr ""
|
||||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:9001
|
||||
msgid ""
|
||||
"Please enter the directory name where you want to put your log files. The "
|
||||
"default value should be good in most cases."
|
||||
msgstr ""
|
||||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:10001
|
||||
msgid "Name of the mysql server:"
|
||||
msgstr ""
|
||||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:10001
|
||||
msgid ""
|
||||
"Please enter the fully qualified name of your mysql server host. This server "
|
||||
"MUST be able to access the remote server at standard port (3306). It is "
|
||||
"recommended to use \"127.0.0.1\" instead of \"localhost\" if your postfix "
|
||||
|
@ -151,13 +199,13 @@ msgstr ""
|
|||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:8001
|
||||
#: ../alternc.templates:11001
|
||||
msgid "AlternC's mysql system database:"
|
||||
msgstr ""
|
||||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:8001
|
||||
#: ../alternc.templates:11001
|
||||
msgid ""
|
||||
"AlternC will create a mysql database to store it's system data. Please "
|
||||
"choose the name of this database here. The default value should be good in "
|
||||
|
@ -170,8 +218,8 @@ msgstr ""
|
|||
#. Description
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:9001 ../alternc.templates:10001
|
||||
#: ../alternc.templates:13001
|
||||
#: ../alternc.templates:12001 ../alternc.templates:13001
|
||||
#: ../alternc.templates:16001
|
||||
msgid "AlternC's mysql account:"
|
||||
msgstr ""
|
||||
|
||||
|
@ -179,7 +227,7 @@ msgstr ""
|
|||
#. Description
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:9001 ../alternc.templates:13001
|
||||
#: ../alternc.templates:12001 ../alternc.templates:16001
|
||||
msgid ""
|
||||
"AlternC will create a mysql administrator account. Please choose it's "
|
||||
"username here. The default value should be good in most case."
|
||||
|
@ -187,7 +235,7 @@ msgstr ""
|
|||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:10001
|
||||
#: ../alternc.templates:13001
|
||||
msgid ""
|
||||
"Using a remote mysql installation requires the AlternC user to be configured "
|
||||
"in advance with administrator access to the mysql installation."
|
||||
|
@ -195,7 +243,7 @@ msgstr ""
|
|||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:10001
|
||||
#: ../alternc.templates:13001
|
||||
msgid ""
|
||||
"The alternc sql user is responsible for granting access to user generated "
|
||||
"databases, that is why it needs root access on the mysql installation."
|
||||
|
@ -205,7 +253,7 @@ msgstr ""
|
|||
#. Description
|
||||
#. Type: password
|
||||
#. Description
|
||||
#: ../alternc.templates:11001 ../alternc.templates:14001
|
||||
#: ../alternc.templates:14001 ../alternc.templates:17001
|
||||
msgid "Password of AlternC's mysql account:"
|
||||
msgstr ""
|
||||
|
||||
|
@ -213,7 +261,7 @@ msgstr ""
|
|||
#. Description
|
||||
#. Type: password
|
||||
#. Description
|
||||
#: ../alternc.templates:11001 ../alternc.templates:14001
|
||||
#: ../alternc.templates:14001 ../alternc.templates:17001
|
||||
msgid ""
|
||||
"AlternC requires an administrator account on the mysql server. It will be "
|
||||
"created automatically during the install process. Please choose a password "
|
||||
|
@ -224,7 +272,7 @@ msgstr ""
|
|||
#. Description
|
||||
#. Type: password
|
||||
#. Description
|
||||
#: ../alternc.templates:11001 ../alternc.templates:12001
|
||||
#: ../alternc.templates:14001 ../alternc.templates:15001
|
||||
msgid ""
|
||||
"Please choose a quite complex password since it will have full access to the "
|
||||
"system database! If you enter nothing, a random password will be created."
|
||||
|
@ -232,25 +280,25 @@ msgstr ""
|
|||
|
||||
#. Type: password
|
||||
#. Description
|
||||
#: ../alternc.templates:12001
|
||||
#: ../alternc.templates:15001
|
||||
msgid "Password of the AlternC's mysql account:"
|
||||
msgstr ""
|
||||
|
||||
#. Type: password
|
||||
#. Description
|
||||
#: ../alternc.templates:12001
|
||||
#: ../alternc.templates:15001
|
||||
msgid "Specify the remote mysql user password"
|
||||
msgstr ""
|
||||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:15001
|
||||
#: ../alternc.templates:18001
|
||||
msgid "The server to GRANT permissions to:"
|
||||
msgstr ""
|
||||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:15001
|
||||
#: ../alternc.templates:18001
|
||||
msgid ""
|
||||
"AlternC and MySQL can be installed on different servers. In order to have "
|
||||
"GRANT table properly created and manipulated, this parameter must be set to "
|
||||
|
@ -260,13 +308,13 @@ msgstr ""
|
|||
|
||||
#. Type: select
|
||||
#. Description
|
||||
#: ../alternc.templates:16001
|
||||
#: ../alternc.templates:19001
|
||||
msgid "The way backup rotation is executed"
|
||||
msgstr ""
|
||||
|
||||
#. Type: select
|
||||
#. Description
|
||||
#: ../alternc.templates:16001
|
||||
#: ../alternc.templates:19001
|
||||
msgid ""
|
||||
"AlternC enables users to configure their own backups, on demand, with "
|
||||
"automatic rotation. This option determines how the backups are rotated."
|
||||
|
@ -274,7 +322,7 @@ msgstr ""
|
|||
|
||||
#. Type: select
|
||||
#. Description
|
||||
#: ../alternc.templates:16001
|
||||
#: ../alternc.templates:19001
|
||||
msgid ""
|
||||
"rotate - backup.sql, backup.sql.0, backup.sql.1 date - backup.sql, backup."
|
||||
"sql.20080709, backup.sql.20080708"
|
||||
|
@ -282,13 +330,13 @@ msgstr ""
|
|||
|
||||
#. Type: select
|
||||
#. Description
|
||||
#: ../alternc.templates:17001
|
||||
#: ../alternc.templates:20001
|
||||
msgid "Behavior of the backup script when it encounters a unmanaged file"
|
||||
msgstr ""
|
||||
|
||||
#. Type: select
|
||||
#. Description
|
||||
#: ../alternc.templates:17001
|
||||
#: ../alternc.templates:20001
|
||||
msgid ""
|
||||
"The SQL backups can rename or overwrite existing files it doesn't know about "
|
||||
"when doing backups. The default behavior is to skip those files and ignore "
|
||||
|
@ -297,13 +345,13 @@ msgstr ""
|
|||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:18001
|
||||
#: ../alternc.templates:21001
|
||||
msgid "The primary IP of this server:"
|
||||
msgstr ""
|
||||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:18001
|
||||
#: ../alternc.templates:21001
|
||||
msgid ""
|
||||
"AlternC will default the A records for domains it hosts to this address. In "
|
||||
"other words, this is the address everyone can reach to server at."
|
||||
|
@ -311,13 +359,13 @@ msgstr ""
|
|||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:19001
|
||||
#: ../alternc.templates:22001
|
||||
msgid "The internal IP of this server:"
|
||||
msgstr ""
|
||||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:19001
|
||||
#: ../alternc.templates:22001
|
||||
msgid ""
|
||||
"AlternC will configure Apache and other services to listen to this address. "
|
||||
"This is usually the same as the primary IP of the server, unless the server "
|
||||
|
@ -326,19 +374,19 @@ msgstr ""
|
|||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:19001
|
||||
#: ../alternc.templates:22001
|
||||
msgid "In other words, this is the IP address of eth0."
|
||||
msgstr ""
|
||||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:20001
|
||||
#: ../alternc.templates:23001
|
||||
msgid "The default MX to assign to new domains:"
|
||||
msgstr ""
|
||||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:20001
|
||||
#: ../alternc.templates:23001
|
||||
msgid ""
|
||||
"AlternC will assign this hostname as the MX record for all the domains it "
|
||||
"hosts. It is usually better be left alone."
|
||||
|
@ -346,13 +394,13 @@ msgstr ""
|
|||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:21001
|
||||
#: ../alternc.templates:24001
|
||||
msgid "The default Backup MX to assign to new domains:"
|
||||
msgstr ""
|
||||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:21001
|
||||
#: ../alternc.templates:24001
|
||||
msgid ""
|
||||
"AlternC will assign this hostname as the Backup MX record for all the "
|
||||
"domains it hosts. Don't set it if you don't know what it is about."
|
||||
|
@ -360,13 +408,13 @@ msgstr ""
|
|||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:22001
|
||||
#: ../alternc.templates:25001
|
||||
msgid "The path where AlternC is installed:"
|
||||
msgstr ""
|
||||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:22001
|
||||
#: ../alternc.templates:25001
|
||||
msgid ""
|
||||
"Please enter the partition name where alternc is installed. This is used "
|
||||
"mainly for disk quotas."
|
||||
|
@ -374,19 +422,19 @@ msgstr ""
|
|||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:22001
|
||||
#: ../alternc.templates:25001
|
||||
msgid "Warning: Be careful! It can generate some problems."
|
||||
msgstr ""
|
||||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:23001
|
||||
#: ../alternc.templates:26001
|
||||
msgid "The monitoring server:"
|
||||
msgstr ""
|
||||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:23001
|
||||
#: ../alternc.templates:26001
|
||||
msgid ""
|
||||
"The IP address (or ip/prefix) of the server(s) which must be authorized to "
|
||||
"ping the server and access apache status pages. Completely optional."
|
||||
|
@ -394,61 +442,61 @@ msgstr ""
|
|||
|
||||
#. Type: boolean
|
||||
#. Description
|
||||
#: ../alternc.templates:24001
|
||||
#: ../alternc.templates:27001
|
||||
msgid "Should AlternC remove all databases (/var/lib/mysql/)?"
|
||||
msgstr ""
|
||||
|
||||
#. Type: boolean
|
||||
#. Description
|
||||
#: ../alternc.templates:24001
|
||||
#: ../alternc.templates:27001
|
||||
msgid "All users databases will be trashed"
|
||||
msgstr ""
|
||||
|
||||
#. Type: boolean
|
||||
#. Description
|
||||
#: ../alternc.templates:25001
|
||||
#: ../alternc.templates:28001
|
||||
msgid "Should AlternC remove users datas?"
|
||||
msgstr ""
|
||||
|
||||
#. Type: boolean
|
||||
#. Description
|
||||
#: ../alternc.templates:25001
|
||||
#: ../alternc.templates:28001
|
||||
msgid "The files and apache redirections created by users will be trashed"
|
||||
msgstr ""
|
||||
|
||||
#. Type: boolean
|
||||
#. Description
|
||||
#: ../alternc.templates:26001
|
||||
#: ../alternc.templates:29001
|
||||
msgid "Should AlternC remove bind zones?"
|
||||
msgstr ""
|
||||
|
||||
#. Type: boolean
|
||||
#. Description
|
||||
#: ../alternc.templates:26001
|
||||
#: ../alternc.templates:29001
|
||||
msgid "It will delete all bind zones created by AlternC"
|
||||
msgstr ""
|
||||
|
||||
#. Type: boolean
|
||||
#. Description
|
||||
#: ../alternc.templates:27001
|
||||
#: ../alternc.templates:30001
|
||||
msgid "Should AlternC remove mailboxes?"
|
||||
msgstr ""
|
||||
|
||||
#. Type: boolean
|
||||
#. Description
|
||||
#: ../alternc.templates:27001
|
||||
#: ../alternc.templates:30001
|
||||
msgid "If you accept all users e-mails will be deleted"
|
||||
msgstr ""
|
||||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:28001
|
||||
#: ../alternc.templates:31001
|
||||
msgid "Slave servers"
|
||||
msgstr ""
|
||||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:28001
|
||||
#: ../alternc.templates:31001
|
||||
msgid ""
|
||||
"This is a space-separated list of servers that are \"slaves\" to the master "
|
||||
"server (this server). When writing apache configuration files, the master "
|
||||
|
@ -458,13 +506,13 @@ msgstr ""
|
|||
|
||||
#. Type: boolean
|
||||
#. Description
|
||||
#: ../alternc.templates:29001
|
||||
#: ../alternc.templates:32001
|
||||
msgid "Shall we use locally found MySQL server?"
|
||||
msgstr ""
|
||||
|
||||
#. Type: boolean
|
||||
#. Description
|
||||
#: ../alternc.templates:29001
|
||||
#: ../alternc.templates:32001
|
||||
msgid ""
|
||||
"A local MySQL connection was established on the server. Tell us if you want "
|
||||
"to use it. If not remote MySQL server connection parameters will be needed."
|
||||
|
@ -472,13 +520,13 @@ msgstr ""
|
|||
|
||||
#. Type: boolean
|
||||
#. Description
|
||||
#: ../alternc.templates:30001
|
||||
#: ../alternc.templates:33001
|
||||
msgid "Shall we use a remote MySQL server?"
|
||||
msgstr ""
|
||||
|
||||
#. Type: boolean
|
||||
#. Description
|
||||
#: ../alternc.templates:30001
|
||||
#: ../alternc.templates:33001
|
||||
msgid ""
|
||||
"No local Mysql server was found. Please confirm you want to use a remote "
|
||||
"Mysql Server. If not, AlternC cannot be installed."
|
||||
|
@ -486,13 +534,13 @@ msgstr ""
|
|||
|
||||
#. Type: boolean
|
||||
#. Description
|
||||
#: ../alternc.templates:31001
|
||||
#: ../alternc.templates:34001
|
||||
msgid "MySQL connection error. Try again?"
|
||||
msgstr ""
|
||||
|
||||
#. Type: boolean
|
||||
#. Description
|
||||
#: ../alternc.templates:31001
|
||||
#: ../alternc.templates:34001
|
||||
msgid ""
|
||||
"Remote connection to the MySQL server failed. Please confirm that we shall "
|
||||
"try again."
|
||||
|
@ -500,13 +548,13 @@ msgstr ""
|
|||
|
||||
#. Type: boolean
|
||||
#. Description
|
||||
#: ../alternc.templates:32001
|
||||
#: ../alternc.templates:35001
|
||||
msgid "Private IP detected, use it anyway?"
|
||||
msgstr ""
|
||||
|
||||
#. Type: boolean
|
||||
#. Description
|
||||
#: ../alternc.templates:32001
|
||||
#: ../alternc.templates:35001
|
||||
msgid ""
|
||||
"The IP address you have appears to be private, please confirm you want to "
|
||||
"use it anyway. The server might not be reachable from outside your network."
|
||||
|
|
|
@ -10,7 +10,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: AlternC, hosting control panel\n"
|
||||
"Report-Msgid-Bugs-To: alternc@packages.debian.org\n"
|
||||
"POT-Creation-Date: 2013-02-07 19:01+0100\n"
|
||||
"POT-Creation-Date: 2013-03-22 12:11+0000\n"
|
||||
"PO-Revision-Date: 2013-02-08 14:51+0000\n"
|
||||
"Last-Translator: Benjamin Sonntag <benjamin@sonntag.fr>\n"
|
||||
"Language-Team: English <dev@alternc.org>\n"
|
||||
|
@ -140,13 +140,61 @@ msgstr ""
|
|||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:7001
|
||||
msgid "Name of the mysql server:"
|
||||
msgid "The path where alternc's users html files will be put"
|
||||
msgstr ""
|
||||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:7001
|
||||
msgid ""
|
||||
"Please enter the directory name where you want html user files to be put. "
|
||||
"The default value should be good in most cases."
|
||||
msgstr ""
|
||||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:7001
|
||||
msgid "This directory wil contain every alternc users personnal directories."
|
||||
msgstr ""
|
||||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:8001
|
||||
msgid "The path where alternc's users mails will be put"
|
||||
msgstr ""
|
||||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:8001
|
||||
msgid ""
|
||||
"Please enter the directory name where you want to put your users maildirs. "
|
||||
"The default value should be good in most cases."
|
||||
msgstr ""
|
||||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:9001
|
||||
msgid "The path where alternc's logs files will be placed"
|
||||
msgstr ""
|
||||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:9001
|
||||
msgid ""
|
||||
"Please enter the directory name where you want to put your log files. The "
|
||||
"default value should be good in most cases."
|
||||
msgstr ""
|
||||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:10001
|
||||
msgid "Name of the mysql server:"
|
||||
msgstr ""
|
||||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:10001
|
||||
msgid ""
|
||||
"Please enter the fully qualified name of your mysql server host. This server "
|
||||
"MUST be able to access the remote server at standard port (3306). It is "
|
||||
"recommended to use \"127.0.0.1\" instead of \"localhost\" if your postfix "
|
||||
|
@ -155,13 +203,13 @@ msgstr ""
|
|||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:8001
|
||||
#: ../alternc.templates:11001
|
||||
msgid "AlternC's mysql system database:"
|
||||
msgstr ""
|
||||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:8001
|
||||
#: ../alternc.templates:11001
|
||||
msgid ""
|
||||
"AlternC will create a mysql database to store it's system data. Please "
|
||||
"choose the name of this database here. The default value should be good in "
|
||||
|
@ -174,8 +222,8 @@ msgstr ""
|
|||
#. Description
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:9001 ../alternc.templates:10001
|
||||
#: ../alternc.templates:13001
|
||||
#: ../alternc.templates:12001 ../alternc.templates:13001
|
||||
#: ../alternc.templates:16001
|
||||
msgid "AlternC's mysql account:"
|
||||
msgstr ""
|
||||
|
||||
|
@ -183,7 +231,7 @@ msgstr ""
|
|||
#. Description
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:9001 ../alternc.templates:13001
|
||||
#: ../alternc.templates:12001 ../alternc.templates:16001
|
||||
msgid ""
|
||||
"AlternC will create a mysql administrator account. Please choose it's "
|
||||
"username here. The default value should be good in most case."
|
||||
|
@ -191,7 +239,7 @@ msgstr ""
|
|||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:10001
|
||||
#: ../alternc.templates:13001
|
||||
msgid ""
|
||||
"Using a remote mysql installation requires the AlternC user to be configured "
|
||||
"in advance with administrator access to the mysql installation."
|
||||
|
@ -199,7 +247,7 @@ msgstr ""
|
|||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:10001
|
||||
#: ../alternc.templates:13001
|
||||
msgid ""
|
||||
"The alternc sql user is responsible for granting access to user generated "
|
||||
"databases, that is why it needs root access on the mysql installation."
|
||||
|
@ -209,7 +257,7 @@ msgstr ""
|
|||
#. Description
|
||||
#. Type: password
|
||||
#. Description
|
||||
#: ../alternc.templates:11001 ../alternc.templates:14001
|
||||
#: ../alternc.templates:14001 ../alternc.templates:17001
|
||||
msgid "Password of AlternC's mysql account:"
|
||||
msgstr ""
|
||||
|
||||
|
@ -217,7 +265,7 @@ msgstr ""
|
|||
#. Description
|
||||
#. Type: password
|
||||
#. Description
|
||||
#: ../alternc.templates:11001 ../alternc.templates:14001
|
||||
#: ../alternc.templates:14001 ../alternc.templates:17001
|
||||
msgid ""
|
||||
"AlternC requires an administrator account on the mysql server. It will be "
|
||||
"created automatically during the install process. Please choose a password "
|
||||
|
@ -228,7 +276,7 @@ msgstr ""
|
|||
#. Description
|
||||
#. Type: password
|
||||
#. Description
|
||||
#: ../alternc.templates:11001 ../alternc.templates:12001
|
||||
#: ../alternc.templates:14001 ../alternc.templates:15001
|
||||
msgid ""
|
||||
"Please choose a quite complex password since it will have full access to the "
|
||||
"system database! If you enter nothing, a random password will be created."
|
||||
|
@ -236,25 +284,25 @@ msgstr ""
|
|||
|
||||
#. Type: password
|
||||
#. Description
|
||||
#: ../alternc.templates:12001
|
||||
#: ../alternc.templates:15001
|
||||
msgid "Password of the AlternC's mysql account:"
|
||||
msgstr ""
|
||||
|
||||
#. Type: password
|
||||
#. Description
|
||||
#: ../alternc.templates:12001
|
||||
#: ../alternc.templates:15001
|
||||
msgid "Specify the remote mysql user password"
|
||||
msgstr ""
|
||||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:15001
|
||||
#: ../alternc.templates:18001
|
||||
msgid "The server to GRANT permissions to:"
|
||||
msgstr ""
|
||||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:15001
|
||||
#: ../alternc.templates:18001
|
||||
msgid ""
|
||||
"AlternC and MySQL can be installed on different servers. In order to have "
|
||||
"GRANT table properly created and manipulated, this parameter must be set to "
|
||||
|
@ -264,13 +312,13 @@ msgstr ""
|
|||
|
||||
#. Type: select
|
||||
#. Description
|
||||
#: ../alternc.templates:16001
|
||||
#: ../alternc.templates:19001
|
||||
msgid "The way backup rotation is executed"
|
||||
msgstr ""
|
||||
|
||||
#. Type: select
|
||||
#. Description
|
||||
#: ../alternc.templates:16001
|
||||
#: ../alternc.templates:19001
|
||||
msgid ""
|
||||
"AlternC enables users to configure their own backups, on demand, with "
|
||||
"automatic rotation. This option determines how the backups are rotated."
|
||||
|
@ -278,7 +326,7 @@ msgstr ""
|
|||
|
||||
#. Type: select
|
||||
#. Description
|
||||
#: ../alternc.templates:16001
|
||||
#: ../alternc.templates:19001
|
||||
msgid ""
|
||||
"rotate - backup.sql, backup.sql.0, backup.sql.1 date - backup.sql, backup."
|
||||
"sql.20080709, backup.sql.20080708"
|
||||
|
@ -286,13 +334,13 @@ msgstr ""
|
|||
|
||||
#. Type: select
|
||||
#. Description
|
||||
#: ../alternc.templates:17001
|
||||
#: ../alternc.templates:20001
|
||||
msgid "Behavior of the backup script when it encounters a unmanaged file"
|
||||
msgstr ""
|
||||
|
||||
#. Type: select
|
||||
#. Description
|
||||
#: ../alternc.templates:17001
|
||||
#: ../alternc.templates:20001
|
||||
msgid ""
|
||||
"The SQL backups can rename or overwrite existing files it doesn't know about "
|
||||
"when doing backups. The default behavior is to skip those files and ignore "
|
||||
|
@ -301,13 +349,13 @@ msgstr ""
|
|||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:18001
|
||||
#: ../alternc.templates:21001
|
||||
msgid "The primary IP of this server:"
|
||||
msgstr ""
|
||||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:18001
|
||||
#: ../alternc.templates:21001
|
||||
msgid ""
|
||||
"AlternC will default the A records for domains it hosts to this address. In "
|
||||
"other words, this is the address everyone can reach to server at."
|
||||
|
@ -315,13 +363,13 @@ msgstr ""
|
|||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:19001
|
||||
#: ../alternc.templates:22001
|
||||
msgid "The internal IP of this server:"
|
||||
msgstr ""
|
||||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:19001
|
||||
#: ../alternc.templates:22001
|
||||
msgid ""
|
||||
"AlternC will configure Apache and other services to listen to this address. "
|
||||
"This is usually the same as the primary IP of the server, unless the server "
|
||||
|
@ -330,19 +378,19 @@ msgstr ""
|
|||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:19001
|
||||
#: ../alternc.templates:22001
|
||||
msgid "In other words, this is the IP address of eth0."
|
||||
msgstr ""
|
||||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:20001
|
||||
#: ../alternc.templates:23001
|
||||
msgid "The default MX to assign to new domains:"
|
||||
msgstr ""
|
||||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:20001
|
||||
#: ../alternc.templates:23001
|
||||
msgid ""
|
||||
"AlternC will assign this hostname as the MX record for all the domains it "
|
||||
"hosts. It is usually better be left alone."
|
||||
|
@ -350,13 +398,13 @@ msgstr ""
|
|||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:21001
|
||||
#: ../alternc.templates:24001
|
||||
msgid "The default Backup MX to assign to new domains:"
|
||||
msgstr ""
|
||||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:21001
|
||||
#: ../alternc.templates:24001
|
||||
msgid ""
|
||||
"AlternC will assign this hostname as the Backup MX record for all the "
|
||||
"domains it hosts. Don't set it if you don't know what it is about."
|
||||
|
@ -364,13 +412,13 @@ msgstr ""
|
|||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:22001
|
||||
#: ../alternc.templates:25001
|
||||
msgid "The path where AlternC is installed:"
|
||||
msgstr ""
|
||||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:22001
|
||||
#: ../alternc.templates:25001
|
||||
msgid ""
|
||||
"Please enter the partition name where alternc is installed. This is used "
|
||||
"mainly for disk quotas."
|
||||
|
@ -378,19 +426,19 @@ msgstr ""
|
|||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:22001
|
||||
#: ../alternc.templates:25001
|
||||
msgid "Warning: Be careful! It can generate some problems."
|
||||
msgstr ""
|
||||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:23001
|
||||
#: ../alternc.templates:26001
|
||||
msgid "The monitoring server:"
|
||||
msgstr ""
|
||||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:23001
|
||||
#: ../alternc.templates:26001
|
||||
msgid ""
|
||||
"The IP address (or ip/prefix) of the server(s) which must be authorized to "
|
||||
"ping the server and access apache status pages. Completely optional."
|
||||
|
@ -398,61 +446,61 @@ msgstr ""
|
|||
|
||||
#. Type: boolean
|
||||
#. Description
|
||||
#: ../alternc.templates:24001
|
||||
#: ../alternc.templates:27001
|
||||
msgid "Should AlternC remove all databases (/var/lib/mysql/)?"
|
||||
msgstr ""
|
||||
|
||||
#. Type: boolean
|
||||
#. Description
|
||||
#: ../alternc.templates:24001
|
||||
#: ../alternc.templates:27001
|
||||
msgid "All users databases will be trashed"
|
||||
msgstr ""
|
||||
|
||||
#. Type: boolean
|
||||
#. Description
|
||||
#: ../alternc.templates:25001
|
||||
#: ../alternc.templates:28001
|
||||
msgid "Should AlternC remove users datas?"
|
||||
msgstr ""
|
||||
|
||||
#. Type: boolean
|
||||
#. Description
|
||||
#: ../alternc.templates:25001
|
||||
#: ../alternc.templates:28001
|
||||
msgid "The files and apache redirections created by users will be trashed"
|
||||
msgstr ""
|
||||
|
||||
#. Type: boolean
|
||||
#. Description
|
||||
#: ../alternc.templates:26001
|
||||
#: ../alternc.templates:29001
|
||||
msgid "Should AlternC remove bind zones?"
|
||||
msgstr ""
|
||||
|
||||
#. Type: boolean
|
||||
#. Description
|
||||
#: ../alternc.templates:26001
|
||||
#: ../alternc.templates:29001
|
||||
msgid "It will delete all bind zones created by AlternC"
|
||||
msgstr ""
|
||||
|
||||
#. Type: boolean
|
||||
#. Description
|
||||
#: ../alternc.templates:27001
|
||||
#: ../alternc.templates:30001
|
||||
msgid "Should AlternC remove mailboxes?"
|
||||
msgstr ""
|
||||
|
||||
#. Type: boolean
|
||||
#. Description
|
||||
#: ../alternc.templates:27001
|
||||
#: ../alternc.templates:30001
|
||||
msgid "If you accept all users e-mails will be deleted"
|
||||
msgstr ""
|
||||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:28001
|
||||
#: ../alternc.templates:31001
|
||||
msgid "Slave servers"
|
||||
msgstr ""
|
||||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:28001
|
||||
#: ../alternc.templates:31001
|
||||
msgid ""
|
||||
"This is a space-separated list of servers that are \"slaves\" to the master "
|
||||
"server (this server). When writing apache configuration files, the master "
|
||||
|
@ -462,13 +510,13 @@ msgstr ""
|
|||
|
||||
#. Type: boolean
|
||||
#. Description
|
||||
#: ../alternc.templates:29001
|
||||
#: ../alternc.templates:32001
|
||||
msgid "Shall we use locally found MySQL server?"
|
||||
msgstr ""
|
||||
|
||||
#. Type: boolean
|
||||
#. Description
|
||||
#: ../alternc.templates:29001
|
||||
#: ../alternc.templates:32001
|
||||
msgid ""
|
||||
"A local MySQL connection was established on the server. Tell us if you want "
|
||||
"to use it. If not remote MySQL server connection parameters will be needed."
|
||||
|
@ -476,13 +524,13 @@ msgstr ""
|
|||
|
||||
#. Type: boolean
|
||||
#. Description
|
||||
#: ../alternc.templates:30001
|
||||
#: ../alternc.templates:33001
|
||||
msgid "Shall we use a remote MySQL server?"
|
||||
msgstr ""
|
||||
|
||||
#. Type: boolean
|
||||
#. Description
|
||||
#: ../alternc.templates:30001
|
||||
#: ../alternc.templates:33001
|
||||
msgid ""
|
||||
"No local Mysql server was found. Please confirm you want to use a remote "
|
||||
"Mysql Server. If not, AlternC cannot be installed."
|
||||
|
@ -490,13 +538,13 @@ msgstr ""
|
|||
|
||||
#. Type: boolean
|
||||
#. Description
|
||||
#: ../alternc.templates:31001
|
||||
#: ../alternc.templates:34001
|
||||
msgid "MySQL connection error. Try again?"
|
||||
msgstr ""
|
||||
|
||||
#. Type: boolean
|
||||
#. Description
|
||||
#: ../alternc.templates:31001
|
||||
#: ../alternc.templates:34001
|
||||
msgid ""
|
||||
"Remote connection to the MySQL server failed. Please confirm that we shall "
|
||||
"try again."
|
||||
|
@ -504,13 +552,13 @@ msgstr ""
|
|||
|
||||
#. Type: boolean
|
||||
#. Description
|
||||
#: ../alternc.templates:32001
|
||||
#: ../alternc.templates:35001
|
||||
msgid "Private IP detected, use it anyway?"
|
||||
msgstr ""
|
||||
|
||||
#. Type: boolean
|
||||
#. Description
|
||||
#: ../alternc.templates:32001
|
||||
#: ../alternc.templates:35001
|
||||
msgid ""
|
||||
"The IP address you have appears to be private, please confirm you want to "
|
||||
"use it anyway. The server might not be reachable from outside your network."
|
||||
|
|
|
@ -16,7 +16,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: AlternC, hosting control panel\n"
|
||||
"Report-Msgid-Bugs-To: https://alternc.org/report/1\n"
|
||||
"POT-Creation-Date: 2013-02-07 19:01+0100\n"
|
||||
"POT-Creation-Date: 2013-03-22 12:11+0000\n"
|
||||
"PO-Revision-Date: 2013-09-12 16:18+0000\n"
|
||||
"Last-Translator: fufroma <fufroma@nnx.com>\n"
|
||||
"Language-Team: French (France) (http://www.transifex.com/projects/p/alternc/"
|
||||
|
@ -173,12 +173,87 @@ msgstr ""
|
|||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:7001
|
||||
#, fuzzy
|
||||
#| msgid "The path where AlternC is installed:"
|
||||
msgid "The path where alternc's users html files will be put"
|
||||
msgstr "Emplacement d'AlternC : "
|
||||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:7001
|
||||
#, fuzzy
|
||||
#| msgid ""
|
||||
#| "AlternC will create a mysql administrator account. Please choose it's "
|
||||
#| "username here. The default value should be good in most case."
|
||||
msgid ""
|
||||
"Please enter the directory name where you want html user files to be put. "
|
||||
"The default value should be good in most cases."
|
||||
msgstr ""
|
||||
"AlternC va créer un compte administrateur sur le serveur mysql. Entrez le "
|
||||
"nom d'utilisateur qui sera créé. La valeur par défaut convient dans la "
|
||||
"plupart des cas."
|
||||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:7001
|
||||
msgid "This directory wil contain every alternc users personnal directories."
|
||||
msgstr ""
|
||||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:8001
|
||||
#, fuzzy
|
||||
#| msgid "The path where AlternC is installed:"
|
||||
msgid "The path where alternc's users mails will be put"
|
||||
msgstr "Emplacement d'AlternC : "
|
||||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:8001
|
||||
#, fuzzy
|
||||
#| msgid ""
|
||||
#| "AlternC will create a mysql administrator account. Please choose it's "
|
||||
#| "username here. The default value should be good in most case."
|
||||
msgid ""
|
||||
"Please enter the directory name where you want to put your users maildirs. "
|
||||
"The default value should be good in most cases."
|
||||
msgstr ""
|
||||
"AlternC va créer un compte administrateur sur le serveur mysql. Entrez le "
|
||||
"nom d'utilisateur qui sera créé. La valeur par défaut convient dans la "
|
||||
"plupart des cas."
|
||||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:9001
|
||||
#, fuzzy
|
||||
#| msgid "The path where AlternC is installed:"
|
||||
msgid "The path where alternc's logs files will be placed"
|
||||
msgstr "Emplacement d'AlternC : "
|
||||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:9001
|
||||
#, fuzzy
|
||||
#| msgid ""
|
||||
#| "AlternC will create a mysql administrator account. Please choose it's "
|
||||
#| "username here. The default value should be good in most case."
|
||||
msgid ""
|
||||
"Please enter the directory name where you want to put your log files. The "
|
||||
"default value should be good in most cases."
|
||||
msgstr ""
|
||||
"AlternC va créer un compte administrateur sur le serveur mysql. Entrez le "
|
||||
"nom d'utilisateur qui sera créé. La valeur par défaut convient dans la "
|
||||
"plupart des cas."
|
||||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:10001
|
||||
msgid "Name of the mysql server:"
|
||||
msgstr "Nom de domaine du serveur mysql :"
|
||||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:7001
|
||||
#: ../alternc.templates:10001
|
||||
msgid ""
|
||||
"Please enter the fully qualified name of your mysql server host. This server "
|
||||
"MUST be able to access the remote server at standard port (3306). It is "
|
||||
|
@ -192,13 +267,13 @@ msgstr ""
|
|||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:8001
|
||||
#: ../alternc.templates:11001
|
||||
msgid "AlternC's mysql system database:"
|
||||
msgstr "Base système mysql d'AlternC : "
|
||||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:8001
|
||||
#: ../alternc.templates:11001
|
||||
msgid ""
|
||||
"AlternC will create a mysql database to store it's system data. Please "
|
||||
"choose the name of this database here. The default value should be good in "
|
||||
|
@ -214,8 +289,8 @@ msgstr ""
|
|||
#. Description
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:9001 ../alternc.templates:10001
|
||||
#: ../alternc.templates:13001
|
||||
#: ../alternc.templates:12001 ../alternc.templates:13001
|
||||
#: ../alternc.templates:16001
|
||||
msgid "AlternC's mysql account:"
|
||||
msgstr "Compte mysql d'AlternC : "
|
||||
|
||||
|
@ -223,7 +298,7 @@ msgstr "Compte mysql d'AlternC : "
|
|||
#. Description
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:9001 ../alternc.templates:13001
|
||||
#: ../alternc.templates:12001 ../alternc.templates:16001
|
||||
msgid ""
|
||||
"AlternC will create a mysql administrator account. Please choose it's "
|
||||
"username here. The default value should be good in most case."
|
||||
|
@ -234,7 +309,7 @@ msgstr ""
|
|||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:10001
|
||||
#: ../alternc.templates:13001
|
||||
msgid ""
|
||||
"Using a remote mysql installation requires the AlternC user to be configured "
|
||||
"in advance with administrator access to the mysql installation."
|
||||
|
@ -244,7 +319,7 @@ msgstr ""
|
|||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:10001
|
||||
#: ../alternc.templates:13001
|
||||
msgid ""
|
||||
"The alternc sql user is responsible for granting access to user generated "
|
||||
"databases, that is why it needs root access on the mysql installation."
|
||||
|
@ -257,7 +332,7 @@ msgstr ""
|
|||
#. Description
|
||||
#. Type: password
|
||||
#. Description
|
||||
#: ../alternc.templates:11001 ../alternc.templates:14001
|
||||
#: ../alternc.templates:14001 ../alternc.templates:17001
|
||||
msgid "Password of AlternC's mysql account:"
|
||||
msgstr "Mot de passe du compte MySQL d'AlternC :"
|
||||
|
||||
|
@ -265,7 +340,7 @@ msgstr "Mot de passe du compte MySQL d'AlternC :"
|
|||
#. Description
|
||||
#. Type: password
|
||||
#. Description
|
||||
#: ../alternc.templates:11001 ../alternc.templates:14001
|
||||
#: ../alternc.templates:14001 ../alternc.templates:17001
|
||||
msgid ""
|
||||
"AlternC requires an administrator account on the mysql server. It will be "
|
||||
"created automatically during the install process. Please choose a password "
|
||||
|
@ -278,7 +353,7 @@ msgstr ""
|
|||
#. Description
|
||||
#. Type: password
|
||||
#. Description
|
||||
#: ../alternc.templates:11001 ../alternc.templates:12001
|
||||
#: ../alternc.templates:14001 ../alternc.templates:15001
|
||||
msgid ""
|
||||
"Please choose a quite complex password since it will have full access to the "
|
||||
"system database! If you enter nothing, a random password will be created."
|
||||
|
@ -288,25 +363,25 @@ msgstr ""
|
|||
|
||||
#. Type: password
|
||||
#. Description
|
||||
#: ../alternc.templates:12001
|
||||
#: ../alternc.templates:15001
|
||||
msgid "Password of the AlternC's mysql account:"
|
||||
msgstr "Mot de passe du compte mysql d'AlternC : "
|
||||
|
||||
#. Type: password
|
||||
#. Description
|
||||
#: ../alternc.templates:12001
|
||||
#: ../alternc.templates:15001
|
||||
msgid "Specify the remote mysql user password"
|
||||
msgstr "Précisez le mot de passe du compte MySQL distant"
|
||||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:15001
|
||||
#: ../alternc.templates:18001
|
||||
msgid "The server to GRANT permissions to:"
|
||||
msgstr "Le serveur SQL à qui autoriser les permissions:"
|
||||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:15001
|
||||
#: ../alternc.templates:18001
|
||||
msgid ""
|
||||
"AlternC and MySQL can be installed on different servers. In order to have "
|
||||
"GRANT table properly created and manipulated, this parameter must be set to "
|
||||
|
@ -320,13 +395,13 @@ msgstr ""
|
|||
|
||||
#. Type: select
|
||||
#. Description
|
||||
#: ../alternc.templates:16001
|
||||
#: ../alternc.templates:19001
|
||||
msgid "The way backup rotation is executed"
|
||||
msgstr "De quelle façon sont tournés les backups"
|
||||
|
||||
#. Type: select
|
||||
#. Description
|
||||
#: ../alternc.templates:16001
|
||||
#: ../alternc.templates:19001
|
||||
msgid ""
|
||||
"AlternC enables users to configure their own backups, on demand, with "
|
||||
"automatic rotation. This option determines how the backups are rotated."
|
||||
|
@ -337,7 +412,7 @@ msgstr ""
|
|||
|
||||
#. Type: select
|
||||
#. Description
|
||||
#: ../alternc.templates:16001
|
||||
#: ../alternc.templates:19001
|
||||
msgid ""
|
||||
"rotate - backup.sql, backup.sql.0, backup.sql.1 date - backup.sql, backup."
|
||||
"sql.20080709, backup.sql.20080708"
|
||||
|
@ -347,14 +422,14 @@ msgstr ""
|
|||
|
||||
#. Type: select
|
||||
#. Description
|
||||
#: ../alternc.templates:17001
|
||||
#: ../alternc.templates:20001
|
||||
msgid "Behavior of the backup script when it encounters a unmanaged file"
|
||||
msgstr ""
|
||||
"Comportement du script de backup quand il rencontre un fichier non géré"
|
||||
|
||||
#. Type: select
|
||||
#. Description
|
||||
#: ../alternc.templates:17001
|
||||
#: ../alternc.templates:20001
|
||||
msgid ""
|
||||
"The SQL backups can rename or overwrite existing files it doesn't know about "
|
||||
"when doing backups. The default behavior is to skip those files and ignore "
|
||||
|
@ -365,13 +440,13 @@ msgstr ""
|
|||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:18001
|
||||
#: ../alternc.templates:21001
|
||||
msgid "The primary IP of this server:"
|
||||
msgstr "l'adresse IP principale de ce serveur : "
|
||||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:18001
|
||||
#: ../alternc.templates:21001
|
||||
msgid ""
|
||||
"AlternC will default the A records for domains it hosts to this address. In "
|
||||
"other words, this is the address everyone can reach to server at."
|
||||
|
@ -382,13 +457,13 @@ msgstr ""
|
|||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:19001
|
||||
#: ../alternc.templates:22001
|
||||
msgid "The internal IP of this server:"
|
||||
msgstr "L'adresse IP interne du serveur : "
|
||||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:19001
|
||||
#: ../alternc.templates:22001
|
||||
msgid ""
|
||||
"AlternC will configure Apache and other services to listen to this address. "
|
||||
"This is usually the same as the primary IP of the server, unless the server "
|
||||
|
@ -400,19 +475,19 @@ msgstr ""
|
|||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:19001
|
||||
#: ../alternc.templates:22001
|
||||
msgid "In other words, this is the IP address of eth0."
|
||||
msgstr "En d'autres mots, ceci est l'adresse assignée à eth0."
|
||||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:20001
|
||||
#: ../alternc.templates:23001
|
||||
msgid "The default MX to assign to new domains:"
|
||||
msgstr "le MX à assigner aux nouveaux domaines : "
|
||||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:20001
|
||||
#: ../alternc.templates:23001
|
||||
msgid ""
|
||||
"AlternC will assign this hostname as the MX record for all the domains it "
|
||||
"hosts. It is usually better be left alone."
|
||||
|
@ -422,13 +497,13 @@ msgstr ""
|
|||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:21001
|
||||
#: ../alternc.templates:24001
|
||||
msgid "The default Backup MX to assign to new domains:"
|
||||
msgstr "le MX de secours à assigner aux nouveaux domaines : "
|
||||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:21001
|
||||
#: ../alternc.templates:24001
|
||||
msgid ""
|
||||
"AlternC will assign this hostname as the Backup MX record for all the "
|
||||
"domains it hosts. Don't set it if you don't know what it is about."
|
||||
|
@ -439,13 +514,13 @@ msgstr ""
|
|||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:22001
|
||||
#: ../alternc.templates:25001
|
||||
msgid "The path where AlternC is installed:"
|
||||
msgstr "Emplacement d'AlternC : "
|
||||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:22001
|
||||
#: ../alternc.templates:25001
|
||||
msgid ""
|
||||
"Please enter the partition name where alternc is installed. This is used "
|
||||
"mainly for disk quotas."
|
||||
|
@ -455,19 +530,19 @@ msgstr ""
|
|||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:22001
|
||||
#: ../alternc.templates:25001
|
||||
msgid "Warning: Be careful! It can generate some problems."
|
||||
msgstr "Attention : Soyez vigilant ! Cela peut provoquer des problèmes."
|
||||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:23001
|
||||
#: ../alternc.templates:26001
|
||||
msgid "The monitoring server:"
|
||||
msgstr "serveur de surveillance : "
|
||||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:23001
|
||||
#: ../alternc.templates:26001
|
||||
msgid ""
|
||||
"The IP address (or ip/prefix) of the server(s) which must be authorized to "
|
||||
"ping the server and access apache status pages. Completely optional."
|
||||
|
@ -478,25 +553,25 @@ msgstr ""
|
|||
|
||||
#. Type: boolean
|
||||
#. Description
|
||||
#: ../alternc.templates:24001
|
||||
#: ../alternc.templates:27001
|
||||
msgid "Should AlternC remove all databases (/var/lib/mysql/)?"
|
||||
msgstr "AlternC doit-il supprimer toutes les bases MySQL (/var/lib/mysql) ?"
|
||||
|
||||
#. Type: boolean
|
||||
#. Description
|
||||
#: ../alternc.templates:24001
|
||||
#: ../alternc.templates:27001
|
||||
msgid "All users databases will be trashed"
|
||||
msgstr "Toutes les bases de données des utilisateurs seront perdues"
|
||||
|
||||
#. Type: boolean
|
||||
#. Description
|
||||
#: ../alternc.templates:25001
|
||||
#: ../alternc.templates:28001
|
||||
msgid "Should AlternC remove users datas?"
|
||||
msgstr "AlternC doit-il effacer les données utilisateur ?"
|
||||
|
||||
#. Type: boolean
|
||||
#. Description
|
||||
#: ../alternc.templates:25001
|
||||
#: ../alternc.templates:28001
|
||||
msgid "The files and apache redirections created by users will be trashed"
|
||||
msgstr ""
|
||||
"Les fichiers et les redirections d'apache créés par les utilisateurs seront "
|
||||
|
@ -504,37 +579,37 @@ msgstr ""
|
|||
|
||||
#. Type: boolean
|
||||
#. Description
|
||||
#: ../alternc.templates:26001
|
||||
#: ../alternc.templates:29001
|
||||
msgid "Should AlternC remove bind zones?"
|
||||
msgstr "AlternC doit-il effacer toutes les zones bind ?"
|
||||
|
||||
#. Type: boolean
|
||||
#. Description
|
||||
#: ../alternc.templates:26001
|
||||
#: ../alternc.templates:29001
|
||||
msgid "It will delete all bind zones created by AlternC"
|
||||
msgstr "Cela supprimera toutes les zone de bind créées par AlternC"
|
||||
|
||||
#. Type: boolean
|
||||
#. Description
|
||||
#: ../alternc.templates:27001
|
||||
#: ../alternc.templates:30001
|
||||
msgid "Should AlternC remove mailboxes?"
|
||||
msgstr "AlternC doit-il supprimer toutes les boites mail ?"
|
||||
|
||||
#. Type: boolean
|
||||
#. Description
|
||||
#: ../alternc.templates:27001
|
||||
#: ../alternc.templates:30001
|
||||
msgid "If you accept all users e-mails will be deleted"
|
||||
msgstr "Si vous acceptez, tous les e-mails des utilisateurs seront supprimés"
|
||||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:28001
|
||||
#: ../alternc.templates:31001
|
||||
msgid "Slave servers"
|
||||
msgstr "Serveurs esclaves"
|
||||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:28001
|
||||
#: ../alternc.templates:31001
|
||||
msgid ""
|
||||
"This is a space-separated list of servers that are \"slaves\" to the master "
|
||||
"server (this server). When writing apache configuration files, the master "
|
||||
|
@ -549,13 +624,13 @@ msgstr ""
|
|||
|
||||
#. Type: boolean
|
||||
#. Description
|
||||
#: ../alternc.templates:29001
|
||||
#: ../alternc.templates:32001
|
||||
msgid "Shall we use locally found MySQL server?"
|
||||
msgstr "Doit-on utiliser le serveur MySQL local automatiquement découvert ?"
|
||||
|
||||
#. Type: boolean
|
||||
#. Description
|
||||
#: ../alternc.templates:29001
|
||||
#: ../alternc.templates:32001
|
||||
msgid ""
|
||||
"A local MySQL connection was established on the server. Tell us if you want "
|
||||
"to use it. If not remote MySQL server connection parameters will be needed."
|
||||
|
@ -566,13 +641,13 @@ msgstr ""
|
|||
|
||||
#. Type: boolean
|
||||
#. Description
|
||||
#: ../alternc.templates:30001
|
||||
#: ../alternc.templates:33001
|
||||
msgid "Shall we use a remote MySQL server?"
|
||||
msgstr "Doit-on utiliser un serveur MySQL distant ?"
|
||||
|
||||
#. Type: boolean
|
||||
#. Description
|
||||
#: ../alternc.templates:30001
|
||||
#: ../alternc.templates:33001
|
||||
msgid ""
|
||||
"No local Mysql server was found. Please confirm you want to use a remote "
|
||||
"Mysql Server. If not, AlternC cannot be installed."
|
||||
|
@ -583,13 +658,13 @@ msgstr ""
|
|||
|
||||
#. Type: boolean
|
||||
#. Description
|
||||
#: ../alternc.templates:31001
|
||||
#: ../alternc.templates:34001
|
||||
msgid "MySQL connection error. Try again?"
|
||||
msgstr "Erreur de connexion à MySQL. Réessayer ?"
|
||||
|
||||
#. Type: boolean
|
||||
#. Description
|
||||
#: ../alternc.templates:31001
|
||||
#: ../alternc.templates:34001
|
||||
msgid ""
|
||||
"Remote connection to the MySQL server failed. Please confirm that we shall "
|
||||
"try again."
|
||||
|
@ -599,13 +674,13 @@ msgstr ""
|
|||
|
||||
#. Type: boolean
|
||||
#. Description
|
||||
#: ../alternc.templates:32001
|
||||
#: ../alternc.templates:35001
|
||||
msgid "Private IP detected, use it anyway?"
|
||||
msgstr "IP privée détectée, faut-il l'utiliser tout de même ?"
|
||||
|
||||
#. Type: boolean
|
||||
#. Description
|
||||
#: ../alternc.templates:32001
|
||||
#: ../alternc.templates:35001
|
||||
msgid ""
|
||||
"The IP address you have appears to be private, please confirm you want to "
|
||||
"use it anyway. The server might not be reachable from outside your network."
|
||||
|
|
|
@ -8,7 +8,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: AlternC, hosting control panel\n"
|
||||
"Report-Msgid-Bugs-To: alternc@packages.debian.org\n"
|
||||
"POT-Creation-Date: 2013-02-07 19:01+0100\n"
|
||||
"POT-Creation-Date: 2013-03-22 12:11+0000\n"
|
||||
"PO-Revision-Date: 2013-02-08 14:51+0000\n"
|
||||
"Last-Translator: Benjamin Sonntag <benjamin@sonntag.fr>\n"
|
||||
"Language-Team: English <dev@alternc.org>\n"
|
||||
|
@ -138,13 +138,61 @@ msgstr ""
|
|||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:7001
|
||||
msgid "Name of the mysql server:"
|
||||
msgid "The path where alternc's users html files will be put"
|
||||
msgstr ""
|
||||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:7001
|
||||
msgid ""
|
||||
"Please enter the directory name where you want html user files to be put. "
|
||||
"The default value should be good in most cases."
|
||||
msgstr ""
|
||||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:7001
|
||||
msgid "This directory wil contain every alternc users personnal directories."
|
||||
msgstr ""
|
||||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:8001
|
||||
msgid "The path where alternc's users mails will be put"
|
||||
msgstr ""
|
||||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:8001
|
||||
msgid ""
|
||||
"Please enter the directory name where you want to put your users maildirs. "
|
||||
"The default value should be good in most cases."
|
||||
msgstr ""
|
||||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:9001
|
||||
msgid "The path where alternc's logs files will be placed"
|
||||
msgstr ""
|
||||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:9001
|
||||
msgid ""
|
||||
"Please enter the directory name where you want to put your log files. The "
|
||||
"default value should be good in most cases."
|
||||
msgstr ""
|
||||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:10001
|
||||
msgid "Name of the mysql server:"
|
||||
msgstr ""
|
||||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:10001
|
||||
msgid ""
|
||||
"Please enter the fully qualified name of your mysql server host. This server "
|
||||
"MUST be able to access the remote server at standard port (3306). It is "
|
||||
"recommended to use \"127.0.0.1\" instead of \"localhost\" if your postfix "
|
||||
|
@ -153,13 +201,13 @@ msgstr ""
|
|||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:8001
|
||||
#: ../alternc.templates:11001
|
||||
msgid "AlternC's mysql system database:"
|
||||
msgstr ""
|
||||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:8001
|
||||
#: ../alternc.templates:11001
|
||||
msgid ""
|
||||
"AlternC will create a mysql database to store it's system data. Please "
|
||||
"choose the name of this database here. The default value should be good in "
|
||||
|
@ -172,8 +220,8 @@ msgstr ""
|
|||
#. Description
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:9001 ../alternc.templates:10001
|
||||
#: ../alternc.templates:13001
|
||||
#: ../alternc.templates:12001 ../alternc.templates:13001
|
||||
#: ../alternc.templates:16001
|
||||
msgid "AlternC's mysql account:"
|
||||
msgstr ""
|
||||
|
||||
|
@ -181,7 +229,7 @@ msgstr ""
|
|||
#. Description
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:9001 ../alternc.templates:13001
|
||||
#: ../alternc.templates:12001 ../alternc.templates:16001
|
||||
msgid ""
|
||||
"AlternC will create a mysql administrator account. Please choose it's "
|
||||
"username here. The default value should be good in most case."
|
||||
|
@ -189,7 +237,7 @@ msgstr ""
|
|||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:10001
|
||||
#: ../alternc.templates:13001
|
||||
msgid ""
|
||||
"Using a remote mysql installation requires the AlternC user to be configured "
|
||||
"in advance with administrator access to the mysql installation."
|
||||
|
@ -197,7 +245,7 @@ msgstr ""
|
|||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:10001
|
||||
#: ../alternc.templates:13001
|
||||
msgid ""
|
||||
"The alternc sql user is responsible for granting access to user generated "
|
||||
"databases, that is why it needs root access on the mysql installation."
|
||||
|
@ -207,7 +255,7 @@ msgstr ""
|
|||
#. Description
|
||||
#. Type: password
|
||||
#. Description
|
||||
#: ../alternc.templates:11001 ../alternc.templates:14001
|
||||
#: ../alternc.templates:14001 ../alternc.templates:17001
|
||||
msgid "Password of AlternC's mysql account:"
|
||||
msgstr ""
|
||||
|
||||
|
@ -215,7 +263,7 @@ msgstr ""
|
|||
#. Description
|
||||
#. Type: password
|
||||
#. Description
|
||||
#: ../alternc.templates:11001 ../alternc.templates:14001
|
||||
#: ../alternc.templates:14001 ../alternc.templates:17001
|
||||
msgid ""
|
||||
"AlternC requires an administrator account on the mysql server. It will be "
|
||||
"created automatically during the install process. Please choose a password "
|
||||
|
@ -226,7 +274,7 @@ msgstr ""
|
|||
#. Description
|
||||
#. Type: password
|
||||
#. Description
|
||||
#: ../alternc.templates:11001 ../alternc.templates:12001
|
||||
#: ../alternc.templates:14001 ../alternc.templates:15001
|
||||
msgid ""
|
||||
"Please choose a quite complex password since it will have full access to the "
|
||||
"system database! If you enter nothing, a random password will be created."
|
||||
|
@ -234,25 +282,25 @@ msgstr ""
|
|||
|
||||
#. Type: password
|
||||
#. Description
|
||||
#: ../alternc.templates:12001
|
||||
#: ../alternc.templates:15001
|
||||
msgid "Password of the AlternC's mysql account:"
|
||||
msgstr ""
|
||||
|
||||
#. Type: password
|
||||
#. Description
|
||||
#: ../alternc.templates:12001
|
||||
#: ../alternc.templates:15001
|
||||
msgid "Specify the remote mysql user password"
|
||||
msgstr ""
|
||||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:15001
|
||||
#: ../alternc.templates:18001
|
||||
msgid "The server to GRANT permissions to:"
|
||||
msgstr ""
|
||||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:15001
|
||||
#: ../alternc.templates:18001
|
||||
msgid ""
|
||||
"AlternC and MySQL can be installed on different servers. In order to have "
|
||||
"GRANT table properly created and manipulated, this parameter must be set to "
|
||||
|
@ -262,13 +310,13 @@ msgstr ""
|
|||
|
||||
#. Type: select
|
||||
#. Description
|
||||
#: ../alternc.templates:16001
|
||||
#: ../alternc.templates:19001
|
||||
msgid "The way backup rotation is executed"
|
||||
msgstr ""
|
||||
|
||||
#. Type: select
|
||||
#. Description
|
||||
#: ../alternc.templates:16001
|
||||
#: ../alternc.templates:19001
|
||||
msgid ""
|
||||
"AlternC enables users to configure their own backups, on demand, with "
|
||||
"automatic rotation. This option determines how the backups are rotated."
|
||||
|
@ -276,7 +324,7 @@ msgstr ""
|
|||
|
||||
#. Type: select
|
||||
#. Description
|
||||
#: ../alternc.templates:16001
|
||||
#: ../alternc.templates:19001
|
||||
msgid ""
|
||||
"rotate - backup.sql, backup.sql.0, backup.sql.1 date - backup.sql, backup."
|
||||
"sql.20080709, backup.sql.20080708"
|
||||
|
@ -284,13 +332,13 @@ msgstr ""
|
|||
|
||||
#. Type: select
|
||||
#. Description
|
||||
#: ../alternc.templates:17001
|
||||
#: ../alternc.templates:20001
|
||||
msgid "Behavior of the backup script when it encounters a unmanaged file"
|
||||
msgstr ""
|
||||
|
||||
#. Type: select
|
||||
#. Description
|
||||
#: ../alternc.templates:17001
|
||||
#: ../alternc.templates:20001
|
||||
msgid ""
|
||||
"The SQL backups can rename or overwrite existing files it doesn't know about "
|
||||
"when doing backups. The default behavior is to skip those files and ignore "
|
||||
|
@ -299,13 +347,13 @@ msgstr ""
|
|||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:18001
|
||||
#: ../alternc.templates:21001
|
||||
msgid "The primary IP of this server:"
|
||||
msgstr ""
|
||||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:18001
|
||||
#: ../alternc.templates:21001
|
||||
msgid ""
|
||||
"AlternC will default the A records for domains it hosts to this address. In "
|
||||
"other words, this is the address everyone can reach to server at."
|
||||
|
@ -313,13 +361,13 @@ msgstr ""
|
|||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:19001
|
||||
#: ../alternc.templates:22001
|
||||
msgid "The internal IP of this server:"
|
||||
msgstr ""
|
||||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:19001
|
||||
#: ../alternc.templates:22001
|
||||
msgid ""
|
||||
"AlternC will configure Apache and other services to listen to this address. "
|
||||
"This is usually the same as the primary IP of the server, unless the server "
|
||||
|
@ -328,19 +376,19 @@ msgstr ""
|
|||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:19001
|
||||
#: ../alternc.templates:22001
|
||||
msgid "In other words, this is the IP address of eth0."
|
||||
msgstr ""
|
||||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:20001
|
||||
#: ../alternc.templates:23001
|
||||
msgid "The default MX to assign to new domains:"
|
||||
msgstr ""
|
||||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:20001
|
||||
#: ../alternc.templates:23001
|
||||
msgid ""
|
||||
"AlternC will assign this hostname as the MX record for all the domains it "
|
||||
"hosts. It is usually better be left alone."
|
||||
|
@ -348,13 +396,13 @@ msgstr ""
|
|||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:21001
|
||||
#: ../alternc.templates:24001
|
||||
msgid "The default Backup MX to assign to new domains:"
|
||||
msgstr ""
|
||||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:21001
|
||||
#: ../alternc.templates:24001
|
||||
msgid ""
|
||||
"AlternC will assign this hostname as the Backup MX record for all the "
|
||||
"domains it hosts. Don't set it if you don't know what it is about."
|
||||
|
@ -362,13 +410,13 @@ msgstr ""
|
|||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:22001
|
||||
#: ../alternc.templates:25001
|
||||
msgid "The path where AlternC is installed:"
|
||||
msgstr ""
|
||||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:22001
|
||||
#: ../alternc.templates:25001
|
||||
msgid ""
|
||||
"Please enter the partition name where alternc is installed. This is used "
|
||||
"mainly for disk quotas."
|
||||
|
@ -376,19 +424,19 @@ msgstr ""
|
|||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:22001
|
||||
#: ../alternc.templates:25001
|
||||
msgid "Warning: Be careful! It can generate some problems."
|
||||
msgstr ""
|
||||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:23001
|
||||
#: ../alternc.templates:26001
|
||||
msgid "The monitoring server:"
|
||||
msgstr ""
|
||||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:23001
|
||||
#: ../alternc.templates:26001
|
||||
msgid ""
|
||||
"The IP address (or ip/prefix) of the server(s) which must be authorized to "
|
||||
"ping the server and access apache status pages. Completely optional."
|
||||
|
@ -396,61 +444,61 @@ msgstr ""
|
|||
|
||||
#. Type: boolean
|
||||
#. Description
|
||||
#: ../alternc.templates:24001
|
||||
#: ../alternc.templates:27001
|
||||
msgid "Should AlternC remove all databases (/var/lib/mysql/)?"
|
||||
msgstr ""
|
||||
|
||||
#. Type: boolean
|
||||
#. Description
|
||||
#: ../alternc.templates:24001
|
||||
#: ../alternc.templates:27001
|
||||
msgid "All users databases will be trashed"
|
||||
msgstr ""
|
||||
|
||||
#. Type: boolean
|
||||
#. Description
|
||||
#: ../alternc.templates:25001
|
||||
#: ../alternc.templates:28001
|
||||
msgid "Should AlternC remove users datas?"
|
||||
msgstr ""
|
||||
|
||||
#. Type: boolean
|
||||
#. Description
|
||||
#: ../alternc.templates:25001
|
||||
#: ../alternc.templates:28001
|
||||
msgid "The files and apache redirections created by users will be trashed"
|
||||
msgstr ""
|
||||
|
||||
#. Type: boolean
|
||||
#. Description
|
||||
#: ../alternc.templates:26001
|
||||
#: ../alternc.templates:29001
|
||||
msgid "Should AlternC remove bind zones?"
|
||||
msgstr ""
|
||||
|
||||
#. Type: boolean
|
||||
#. Description
|
||||
#: ../alternc.templates:26001
|
||||
#: ../alternc.templates:29001
|
||||
msgid "It will delete all bind zones created by AlternC"
|
||||
msgstr ""
|
||||
|
||||
#. Type: boolean
|
||||
#. Description
|
||||
#: ../alternc.templates:27001
|
||||
#: ../alternc.templates:30001
|
||||
msgid "Should AlternC remove mailboxes?"
|
||||
msgstr ""
|
||||
|
||||
#. Type: boolean
|
||||
#. Description
|
||||
#: ../alternc.templates:27001
|
||||
#: ../alternc.templates:30001
|
||||
msgid "If you accept all users e-mails will be deleted"
|
||||
msgstr ""
|
||||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:28001
|
||||
#: ../alternc.templates:31001
|
||||
msgid "Slave servers"
|
||||
msgstr ""
|
||||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:28001
|
||||
#: ../alternc.templates:31001
|
||||
msgid ""
|
||||
"This is a space-separated list of servers that are \"slaves\" to the master "
|
||||
"server (this server). When writing apache configuration files, the master "
|
||||
|
@ -460,13 +508,13 @@ msgstr ""
|
|||
|
||||
#. Type: boolean
|
||||
#. Description
|
||||
#: ../alternc.templates:29001
|
||||
#: ../alternc.templates:32001
|
||||
msgid "Shall we use locally found MySQL server?"
|
||||
msgstr ""
|
||||
|
||||
#. Type: boolean
|
||||
#. Description
|
||||
#: ../alternc.templates:29001
|
||||
#: ../alternc.templates:32001
|
||||
msgid ""
|
||||
"A local MySQL connection was established on the server. Tell us if you want "
|
||||
"to use it. If not remote MySQL server connection parameters will be needed."
|
||||
|
@ -474,13 +522,13 @@ msgstr ""
|
|||
|
||||
#. Type: boolean
|
||||
#. Description
|
||||
#: ../alternc.templates:30001
|
||||
#: ../alternc.templates:33001
|
||||
msgid "Shall we use a remote MySQL server?"
|
||||
msgstr ""
|
||||
|
||||
#. Type: boolean
|
||||
#. Description
|
||||
#: ../alternc.templates:30001
|
||||
#: ../alternc.templates:33001
|
||||
msgid ""
|
||||
"No local Mysql server was found. Please confirm you want to use a remote "
|
||||
"Mysql Server. If not, AlternC cannot be installed."
|
||||
|
@ -488,13 +536,13 @@ msgstr ""
|
|||
|
||||
#. Type: boolean
|
||||
#. Description
|
||||
#: ../alternc.templates:31001
|
||||
#: ../alternc.templates:34001
|
||||
msgid "MySQL connection error. Try again?"
|
||||
msgstr ""
|
||||
|
||||
#. Type: boolean
|
||||
#. Description
|
||||
#: ../alternc.templates:31001
|
||||
#: ../alternc.templates:34001
|
||||
msgid ""
|
||||
"Remote connection to the MySQL server failed. Please confirm that we shall "
|
||||
"try again."
|
||||
|
@ -502,13 +550,13 @@ msgstr ""
|
|||
|
||||
#. Type: boolean
|
||||
#. Description
|
||||
#: ../alternc.templates:32001
|
||||
#: ../alternc.templates:35001
|
||||
msgid "Private IP detected, use it anyway?"
|
||||
msgstr ""
|
||||
|
||||
#. Type: boolean
|
||||
#. Description
|
||||
#: ../alternc.templates:32001
|
||||
#: ../alternc.templates:35001
|
||||
msgid ""
|
||||
"The IP address you have appears to be private, please confirm you want to "
|
||||
"use it anyway. The server might not be reachable from outside your network."
|
||||
|
|
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: AlternC, hosting control panel\n"
|
||||
"Report-Msgid-Bugs-To: alternc@packages.debian.org\n"
|
||||
"POT-Creation-Date: 2013-02-07 19:01+0100\n"
|
||||
"POT-Creation-Date: 2013-03-22 12:11+0000\n"
|
||||
"PO-Revision-Date: 2013-02-08 14:51+0000\n"
|
||||
"Last-Translator: Benjamin Sonntag <benjamin@sonntag.fr>\n"
|
||||
"Language-Team: English <dev@alternc.org>\n"
|
||||
|
@ -137,13 +137,61 @@ msgstr ""
|
|||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:7001
|
||||
msgid "Name of the mysql server:"
|
||||
msgid "The path where alternc's users html files will be put"
|
||||
msgstr ""
|
||||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:7001
|
||||
msgid ""
|
||||
"Please enter the directory name where you want html user files to be put. "
|
||||
"The default value should be good in most cases."
|
||||
msgstr ""
|
||||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:7001
|
||||
msgid "This directory wil contain every alternc users personnal directories."
|
||||
msgstr ""
|
||||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:8001
|
||||
msgid "The path where alternc's users mails will be put"
|
||||
msgstr ""
|
||||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:8001
|
||||
msgid ""
|
||||
"Please enter the directory name where you want to put your users maildirs. "
|
||||
"The default value should be good in most cases."
|
||||
msgstr ""
|
||||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:9001
|
||||
msgid "The path where alternc's logs files will be placed"
|
||||
msgstr ""
|
||||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:9001
|
||||
msgid ""
|
||||
"Please enter the directory name where you want to put your log files. The "
|
||||
"default value should be good in most cases."
|
||||
msgstr ""
|
||||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:10001
|
||||
msgid "Name of the mysql server:"
|
||||
msgstr ""
|
||||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:10001
|
||||
msgid ""
|
||||
"Please enter the fully qualified name of your mysql server host. This server "
|
||||
"MUST be able to access the remote server at standard port (3306). It is "
|
||||
"recommended to use \"127.0.0.1\" instead of \"localhost\" if your postfix "
|
||||
|
@ -152,13 +200,13 @@ msgstr ""
|
|||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:8001
|
||||
#: ../alternc.templates:11001
|
||||
msgid "AlternC's mysql system database:"
|
||||
msgstr ""
|
||||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:8001
|
||||
#: ../alternc.templates:11001
|
||||
msgid ""
|
||||
"AlternC will create a mysql database to store it's system data. Please "
|
||||
"choose the name of this database here. The default value should be good in "
|
||||
|
@ -171,8 +219,8 @@ msgstr ""
|
|||
#. Description
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:9001 ../alternc.templates:10001
|
||||
#: ../alternc.templates:13001
|
||||
#: ../alternc.templates:12001 ../alternc.templates:13001
|
||||
#: ../alternc.templates:16001
|
||||
msgid "AlternC's mysql account:"
|
||||
msgstr ""
|
||||
|
||||
|
@ -180,7 +228,7 @@ msgstr ""
|
|||
#. Description
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:9001 ../alternc.templates:13001
|
||||
#: ../alternc.templates:12001 ../alternc.templates:16001
|
||||
msgid ""
|
||||
"AlternC will create a mysql administrator account. Please choose it's "
|
||||
"username here. The default value should be good in most case."
|
||||
|
@ -188,7 +236,7 @@ msgstr ""
|
|||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:10001
|
||||
#: ../alternc.templates:13001
|
||||
msgid ""
|
||||
"Using a remote mysql installation requires the AlternC user to be configured "
|
||||
"in advance with administrator access to the mysql installation."
|
||||
|
@ -196,7 +244,7 @@ msgstr ""
|
|||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:10001
|
||||
#: ../alternc.templates:13001
|
||||
msgid ""
|
||||
"The alternc sql user is responsible for granting access to user generated "
|
||||
"databases, that is why it needs root access on the mysql installation."
|
||||
|
@ -206,7 +254,7 @@ msgstr ""
|
|||
#. Description
|
||||
#. Type: password
|
||||
#. Description
|
||||
#: ../alternc.templates:11001 ../alternc.templates:14001
|
||||
#: ../alternc.templates:14001 ../alternc.templates:17001
|
||||
msgid "Password of AlternC's mysql account:"
|
||||
msgstr ""
|
||||
|
||||
|
@ -214,7 +262,7 @@ msgstr ""
|
|||
#. Description
|
||||
#. Type: password
|
||||
#. Description
|
||||
#: ../alternc.templates:11001 ../alternc.templates:14001
|
||||
#: ../alternc.templates:14001 ../alternc.templates:17001
|
||||
msgid ""
|
||||
"AlternC requires an administrator account on the mysql server. It will be "
|
||||
"created automatically during the install process. Please choose a password "
|
||||
|
@ -225,7 +273,7 @@ msgstr ""
|
|||
#. Description
|
||||
#. Type: password
|
||||
#. Description
|
||||
#: ../alternc.templates:11001 ../alternc.templates:12001
|
||||
#: ../alternc.templates:14001 ../alternc.templates:15001
|
||||
msgid ""
|
||||
"Please choose a quite complex password since it will have full access to the "
|
||||
"system database! If you enter nothing, a random password will be created."
|
||||
|
@ -233,25 +281,25 @@ msgstr ""
|
|||
|
||||
#. Type: password
|
||||
#. Description
|
||||
#: ../alternc.templates:12001
|
||||
#: ../alternc.templates:15001
|
||||
msgid "Password of the AlternC's mysql account:"
|
||||
msgstr ""
|
||||
|
||||
#. Type: password
|
||||
#. Description
|
||||
#: ../alternc.templates:12001
|
||||
#: ../alternc.templates:15001
|
||||
msgid "Specify the remote mysql user password"
|
||||
msgstr ""
|
||||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:15001
|
||||
#: ../alternc.templates:18001
|
||||
msgid "The server to GRANT permissions to:"
|
||||
msgstr ""
|
||||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:15001
|
||||
#: ../alternc.templates:18001
|
||||
msgid ""
|
||||
"AlternC and MySQL can be installed on different servers. In order to have "
|
||||
"GRANT table properly created and manipulated, this parameter must be set to "
|
||||
|
@ -261,13 +309,13 @@ msgstr ""
|
|||
|
||||
#. Type: select
|
||||
#. Description
|
||||
#: ../alternc.templates:16001
|
||||
#: ../alternc.templates:19001
|
||||
msgid "The way backup rotation is executed"
|
||||
msgstr ""
|
||||
|
||||
#. Type: select
|
||||
#. Description
|
||||
#: ../alternc.templates:16001
|
||||
#: ../alternc.templates:19001
|
||||
msgid ""
|
||||
"AlternC enables users to configure their own backups, on demand, with "
|
||||
"automatic rotation. This option determines how the backups are rotated."
|
||||
|
@ -275,7 +323,7 @@ msgstr ""
|
|||
|
||||
#. Type: select
|
||||
#. Description
|
||||
#: ../alternc.templates:16001
|
||||
#: ../alternc.templates:19001
|
||||
msgid ""
|
||||
"rotate - backup.sql, backup.sql.0, backup.sql.1 date - backup.sql, backup."
|
||||
"sql.20080709, backup.sql.20080708"
|
||||
|
@ -283,13 +331,13 @@ msgstr ""
|
|||
|
||||
#. Type: select
|
||||
#. Description
|
||||
#: ../alternc.templates:17001
|
||||
#: ../alternc.templates:20001
|
||||
msgid "Behavior of the backup script when it encounters a unmanaged file"
|
||||
msgstr ""
|
||||
|
||||
#. Type: select
|
||||
#. Description
|
||||
#: ../alternc.templates:17001
|
||||
#: ../alternc.templates:20001
|
||||
msgid ""
|
||||
"The SQL backups can rename or overwrite existing files it doesn't know about "
|
||||
"when doing backups. The default behavior is to skip those files and ignore "
|
||||
|
@ -298,13 +346,13 @@ msgstr ""
|
|||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:18001
|
||||
#: ../alternc.templates:21001
|
||||
msgid "The primary IP of this server:"
|
||||
msgstr ""
|
||||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:18001
|
||||
#: ../alternc.templates:21001
|
||||
msgid ""
|
||||
"AlternC will default the A records for domains it hosts to this address. In "
|
||||
"other words, this is the address everyone can reach to server at."
|
||||
|
@ -312,13 +360,13 @@ msgstr ""
|
|||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:19001
|
||||
#: ../alternc.templates:22001
|
||||
msgid "The internal IP of this server:"
|
||||
msgstr ""
|
||||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:19001
|
||||
#: ../alternc.templates:22001
|
||||
msgid ""
|
||||
"AlternC will configure Apache and other services to listen to this address. "
|
||||
"This is usually the same as the primary IP of the server, unless the server "
|
||||
|
@ -327,19 +375,19 @@ msgstr ""
|
|||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:19001
|
||||
#: ../alternc.templates:22001
|
||||
msgid "In other words, this is the IP address of eth0."
|
||||
msgstr ""
|
||||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:20001
|
||||
#: ../alternc.templates:23001
|
||||
msgid "The default MX to assign to new domains:"
|
||||
msgstr ""
|
||||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:20001
|
||||
#: ../alternc.templates:23001
|
||||
msgid ""
|
||||
"AlternC will assign this hostname as the MX record for all the domains it "
|
||||
"hosts. It is usually better be left alone."
|
||||
|
@ -347,13 +395,13 @@ msgstr ""
|
|||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:21001
|
||||
#: ../alternc.templates:24001
|
||||
msgid "The default Backup MX to assign to new domains:"
|
||||
msgstr ""
|
||||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:21001
|
||||
#: ../alternc.templates:24001
|
||||
msgid ""
|
||||
"AlternC will assign this hostname as the Backup MX record for all the "
|
||||
"domains it hosts. Don't set it if you don't know what it is about."
|
||||
|
@ -361,13 +409,13 @@ msgstr ""
|
|||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:22001
|
||||
#: ../alternc.templates:25001
|
||||
msgid "The path where AlternC is installed:"
|
||||
msgstr ""
|
||||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:22001
|
||||
#: ../alternc.templates:25001
|
||||
msgid ""
|
||||
"Please enter the partition name where alternc is installed. This is used "
|
||||
"mainly for disk quotas."
|
||||
|
@ -375,19 +423,19 @@ msgstr ""
|
|||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:22001
|
||||
#: ../alternc.templates:25001
|
||||
msgid "Warning: Be careful! It can generate some problems."
|
||||
msgstr ""
|
||||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:23001
|
||||
#: ../alternc.templates:26001
|
||||
msgid "The monitoring server:"
|
||||
msgstr ""
|
||||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:23001
|
||||
#: ../alternc.templates:26001
|
||||
msgid ""
|
||||
"The IP address (or ip/prefix) of the server(s) which must be authorized to "
|
||||
"ping the server and access apache status pages. Completely optional."
|
||||
|
@ -395,61 +443,61 @@ msgstr ""
|
|||
|
||||
#. Type: boolean
|
||||
#. Description
|
||||
#: ../alternc.templates:24001
|
||||
#: ../alternc.templates:27001
|
||||
msgid "Should AlternC remove all databases (/var/lib/mysql/)?"
|
||||
msgstr ""
|
||||
|
||||
#. Type: boolean
|
||||
#. Description
|
||||
#: ../alternc.templates:24001
|
||||
#: ../alternc.templates:27001
|
||||
msgid "All users databases will be trashed"
|
||||
msgstr ""
|
||||
|
||||
#. Type: boolean
|
||||
#. Description
|
||||
#: ../alternc.templates:25001
|
||||
#: ../alternc.templates:28001
|
||||
msgid "Should AlternC remove users datas?"
|
||||
msgstr ""
|
||||
|
||||
#. Type: boolean
|
||||
#. Description
|
||||
#: ../alternc.templates:25001
|
||||
#: ../alternc.templates:28001
|
||||
msgid "The files and apache redirections created by users will be trashed"
|
||||
msgstr ""
|
||||
|
||||
#. Type: boolean
|
||||
#. Description
|
||||
#: ../alternc.templates:26001
|
||||
#: ../alternc.templates:29001
|
||||
msgid "Should AlternC remove bind zones?"
|
||||
msgstr ""
|
||||
|
||||
#. Type: boolean
|
||||
#. Description
|
||||
#: ../alternc.templates:26001
|
||||
#: ../alternc.templates:29001
|
||||
msgid "It will delete all bind zones created by AlternC"
|
||||
msgstr ""
|
||||
|
||||
#. Type: boolean
|
||||
#. Description
|
||||
#: ../alternc.templates:27001
|
||||
#: ../alternc.templates:30001
|
||||
msgid "Should AlternC remove mailboxes?"
|
||||
msgstr ""
|
||||
|
||||
#. Type: boolean
|
||||
#. Description
|
||||
#: ../alternc.templates:27001
|
||||
#: ../alternc.templates:30001
|
||||
msgid "If you accept all users e-mails will be deleted"
|
||||
msgstr ""
|
||||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:28001
|
||||
#: ../alternc.templates:31001
|
||||
msgid "Slave servers"
|
||||
msgstr ""
|
||||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:28001
|
||||
#: ../alternc.templates:31001
|
||||
msgid ""
|
||||
"This is a space-separated list of servers that are \"slaves\" to the master "
|
||||
"server (this server). When writing apache configuration files, the master "
|
||||
|
@ -459,13 +507,13 @@ msgstr ""
|
|||
|
||||
#. Type: boolean
|
||||
#. Description
|
||||
#: ../alternc.templates:29001
|
||||
#: ../alternc.templates:32001
|
||||
msgid "Shall we use locally found MySQL server?"
|
||||
msgstr ""
|
||||
|
||||
#. Type: boolean
|
||||
#. Description
|
||||
#: ../alternc.templates:29001
|
||||
#: ../alternc.templates:32001
|
||||
msgid ""
|
||||
"A local MySQL connection was established on the server. Tell us if you want "
|
||||
"to use it. If not remote MySQL server connection parameters will be needed."
|
||||
|
@ -473,13 +521,13 @@ msgstr ""
|
|||
|
||||
#. Type: boolean
|
||||
#. Description
|
||||
#: ../alternc.templates:30001
|
||||
#: ../alternc.templates:33001
|
||||
msgid "Shall we use a remote MySQL server?"
|
||||
msgstr ""
|
||||
|
||||
#. Type: boolean
|
||||
#. Description
|
||||
#: ../alternc.templates:30001
|
||||
#: ../alternc.templates:33001
|
||||
msgid ""
|
||||
"No local Mysql server was found. Please confirm you want to use a remote "
|
||||
"Mysql Server. If not, AlternC cannot be installed."
|
||||
|
@ -487,13 +535,13 @@ msgstr ""
|
|||
|
||||
#. Type: boolean
|
||||
#. Description
|
||||
#: ../alternc.templates:31001
|
||||
#: ../alternc.templates:34001
|
||||
msgid "MySQL connection error. Try again?"
|
||||
msgstr ""
|
||||
|
||||
#. Type: boolean
|
||||
#. Description
|
||||
#: ../alternc.templates:31001
|
||||
#: ../alternc.templates:34001
|
||||
msgid ""
|
||||
"Remote connection to the MySQL server failed. Please confirm that we shall "
|
||||
"try again."
|
||||
|
@ -501,13 +549,13 @@ msgstr ""
|
|||
|
||||
#. Type: boolean
|
||||
#. Description
|
||||
#: ../alternc.templates:32001
|
||||
#: ../alternc.templates:35001
|
||||
msgid "Private IP detected, use it anyway?"
|
||||
msgstr ""
|
||||
|
||||
#. Type: boolean
|
||||
#. Description
|
||||
#: ../alternc.templates:32001
|
||||
#: ../alternc.templates:35001
|
||||
msgid ""
|
||||
"The IP address you have appears to be private, please confirm you want to "
|
||||
"use it anyway. The server might not be reachable from outside your network."
|
||||
|
|
|
@ -8,7 +8,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: AlternC, hosting control panel\n"
|
||||
"Report-Msgid-Bugs-To: alternc@packages.debian.org\n"
|
||||
"POT-Creation-Date: 2013-02-07 19:01+0100\n"
|
||||
"POT-Creation-Date: 2013-03-22 12:11+0000\n"
|
||||
"PO-Revision-Date: 2013-02-08 14:51+0000\n"
|
||||
"Last-Translator: Benjamin Sonntag <benjamin@sonntag.fr>\n"
|
||||
"Language-Team: English <dev@alternc.org>\n"
|
||||
|
@ -138,13 +138,61 @@ msgstr ""
|
|||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:7001
|
||||
msgid "Name of the mysql server:"
|
||||
msgid "The path where alternc's users html files will be put"
|
||||
msgstr ""
|
||||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:7001
|
||||
msgid ""
|
||||
"Please enter the directory name where you want html user files to be put. "
|
||||
"The default value should be good in most cases."
|
||||
msgstr ""
|
||||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:7001
|
||||
msgid "This directory wil contain every alternc users personnal directories."
|
||||
msgstr ""
|
||||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:8001
|
||||
msgid "The path where alternc's users mails will be put"
|
||||
msgstr ""
|
||||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:8001
|
||||
msgid ""
|
||||
"Please enter the directory name where you want to put your users maildirs. "
|
||||
"The default value should be good in most cases."
|
||||
msgstr ""
|
||||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:9001
|
||||
msgid "The path where alternc's logs files will be placed"
|
||||
msgstr ""
|
||||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:9001
|
||||
msgid ""
|
||||
"Please enter the directory name where you want to put your log files. The "
|
||||
"default value should be good in most cases."
|
||||
msgstr ""
|
||||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:10001
|
||||
msgid "Name of the mysql server:"
|
||||
msgstr ""
|
||||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:10001
|
||||
msgid ""
|
||||
"Please enter the fully qualified name of your mysql server host. This server "
|
||||
"MUST be able to access the remote server at standard port (3306). It is "
|
||||
"recommended to use \"127.0.0.1\" instead of \"localhost\" if your postfix "
|
||||
|
@ -153,13 +201,13 @@ msgstr ""
|
|||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:8001
|
||||
#: ../alternc.templates:11001
|
||||
msgid "AlternC's mysql system database:"
|
||||
msgstr ""
|
||||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:8001
|
||||
#: ../alternc.templates:11001
|
||||
msgid ""
|
||||
"AlternC will create a mysql database to store it's system data. Please "
|
||||
"choose the name of this database here. The default value should be good in "
|
||||
|
@ -172,8 +220,8 @@ msgstr ""
|
|||
#. Description
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:9001 ../alternc.templates:10001
|
||||
#: ../alternc.templates:13001
|
||||
#: ../alternc.templates:12001 ../alternc.templates:13001
|
||||
#: ../alternc.templates:16001
|
||||
msgid "AlternC's mysql account:"
|
||||
msgstr ""
|
||||
|
||||
|
@ -181,7 +229,7 @@ msgstr ""
|
|||
#. Description
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:9001 ../alternc.templates:13001
|
||||
#: ../alternc.templates:12001 ../alternc.templates:16001
|
||||
msgid ""
|
||||
"AlternC will create a mysql administrator account. Please choose it's "
|
||||
"username here. The default value should be good in most case."
|
||||
|
@ -189,7 +237,7 @@ msgstr ""
|
|||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:10001
|
||||
#: ../alternc.templates:13001
|
||||
msgid ""
|
||||
"Using a remote mysql installation requires the AlternC user to be configured "
|
||||
"in advance with administrator access to the mysql installation."
|
||||
|
@ -197,7 +245,7 @@ msgstr ""
|
|||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:10001
|
||||
#: ../alternc.templates:13001
|
||||
msgid ""
|
||||
"The alternc sql user is responsible for granting access to user generated "
|
||||
"databases, that is why it needs root access on the mysql installation."
|
||||
|
@ -207,7 +255,7 @@ msgstr ""
|
|||
#. Description
|
||||
#. Type: password
|
||||
#. Description
|
||||
#: ../alternc.templates:11001 ../alternc.templates:14001
|
||||
#: ../alternc.templates:14001 ../alternc.templates:17001
|
||||
msgid "Password of AlternC's mysql account:"
|
||||
msgstr ""
|
||||
|
||||
|
@ -215,7 +263,7 @@ msgstr ""
|
|||
#. Description
|
||||
#. Type: password
|
||||
#. Description
|
||||
#: ../alternc.templates:11001 ../alternc.templates:14001
|
||||
#: ../alternc.templates:14001 ../alternc.templates:17001
|
||||
msgid ""
|
||||
"AlternC requires an administrator account on the mysql server. It will be "
|
||||
"created automatically during the install process. Please choose a password "
|
||||
|
@ -226,7 +274,7 @@ msgstr ""
|
|||
#. Description
|
||||
#. Type: password
|
||||
#. Description
|
||||
#: ../alternc.templates:11001 ../alternc.templates:12001
|
||||
#: ../alternc.templates:14001 ../alternc.templates:15001
|
||||
msgid ""
|
||||
"Please choose a quite complex password since it will have full access to the "
|
||||
"system database! If you enter nothing, a random password will be created."
|
||||
|
@ -234,25 +282,25 @@ msgstr ""
|
|||
|
||||
#. Type: password
|
||||
#. Description
|
||||
#: ../alternc.templates:12001
|
||||
#: ../alternc.templates:15001
|
||||
msgid "Password of the AlternC's mysql account:"
|
||||
msgstr ""
|
||||
|
||||
#. Type: password
|
||||
#. Description
|
||||
#: ../alternc.templates:12001
|
||||
#: ../alternc.templates:15001
|
||||
msgid "Specify the remote mysql user password"
|
||||
msgstr ""
|
||||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:15001
|
||||
#: ../alternc.templates:18001
|
||||
msgid "The server to GRANT permissions to:"
|
||||
msgstr ""
|
||||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:15001
|
||||
#: ../alternc.templates:18001
|
||||
msgid ""
|
||||
"AlternC and MySQL can be installed on different servers. In order to have "
|
||||
"GRANT table properly created and manipulated, this parameter must be set to "
|
||||
|
@ -262,13 +310,13 @@ msgstr ""
|
|||
|
||||
#. Type: select
|
||||
#. Description
|
||||
#: ../alternc.templates:16001
|
||||
#: ../alternc.templates:19001
|
||||
msgid "The way backup rotation is executed"
|
||||
msgstr ""
|
||||
|
||||
#. Type: select
|
||||
#. Description
|
||||
#: ../alternc.templates:16001
|
||||
#: ../alternc.templates:19001
|
||||
msgid ""
|
||||
"AlternC enables users to configure their own backups, on demand, with "
|
||||
"automatic rotation. This option determines how the backups are rotated."
|
||||
|
@ -276,7 +324,7 @@ msgstr ""
|
|||
|
||||
#. Type: select
|
||||
#. Description
|
||||
#: ../alternc.templates:16001
|
||||
#: ../alternc.templates:19001
|
||||
msgid ""
|
||||
"rotate - backup.sql, backup.sql.0, backup.sql.1 date - backup.sql, backup."
|
||||
"sql.20080709, backup.sql.20080708"
|
||||
|
@ -284,13 +332,13 @@ msgstr ""
|
|||
|
||||
#. Type: select
|
||||
#. Description
|
||||
#: ../alternc.templates:17001
|
||||
#: ../alternc.templates:20001
|
||||
msgid "Behavior of the backup script when it encounters a unmanaged file"
|
||||
msgstr ""
|
||||
|
||||
#. Type: select
|
||||
#. Description
|
||||
#: ../alternc.templates:17001
|
||||
#: ../alternc.templates:20001
|
||||
msgid ""
|
||||
"The SQL backups can rename or overwrite existing files it doesn't know about "
|
||||
"when doing backups. The default behavior is to skip those files and ignore "
|
||||
|
@ -299,13 +347,13 @@ msgstr ""
|
|||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:18001
|
||||
#: ../alternc.templates:21001
|
||||
msgid "The primary IP of this server:"
|
||||
msgstr ""
|
||||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:18001
|
||||
#: ../alternc.templates:21001
|
||||
msgid ""
|
||||
"AlternC will default the A records for domains it hosts to this address. In "
|
||||
"other words, this is the address everyone can reach to server at."
|
||||
|
@ -313,13 +361,13 @@ msgstr ""
|
|||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:19001
|
||||
#: ../alternc.templates:22001
|
||||
msgid "The internal IP of this server:"
|
||||
msgstr ""
|
||||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:19001
|
||||
#: ../alternc.templates:22001
|
||||
msgid ""
|
||||
"AlternC will configure Apache and other services to listen to this address. "
|
||||
"This is usually the same as the primary IP of the server, unless the server "
|
||||
|
@ -328,19 +376,19 @@ msgstr ""
|
|||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:19001
|
||||
#: ../alternc.templates:22001
|
||||
msgid "In other words, this is the IP address of eth0."
|
||||
msgstr ""
|
||||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:20001
|
||||
#: ../alternc.templates:23001
|
||||
msgid "The default MX to assign to new domains:"
|
||||
msgstr ""
|
||||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:20001
|
||||
#: ../alternc.templates:23001
|
||||
msgid ""
|
||||
"AlternC will assign this hostname as the MX record for all the domains it "
|
||||
"hosts. It is usually better be left alone."
|
||||
|
@ -348,13 +396,13 @@ msgstr ""
|
|||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:21001
|
||||
#: ../alternc.templates:24001
|
||||
msgid "The default Backup MX to assign to new domains:"
|
||||
msgstr ""
|
||||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:21001
|
||||
#: ../alternc.templates:24001
|
||||
msgid ""
|
||||
"AlternC will assign this hostname as the Backup MX record for all the "
|
||||
"domains it hosts. Don't set it if you don't know what it is about."
|
||||
|
@ -362,13 +410,13 @@ msgstr ""
|
|||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:22001
|
||||
#: ../alternc.templates:25001
|
||||
msgid "The path where AlternC is installed:"
|
||||
msgstr ""
|
||||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:22001
|
||||
#: ../alternc.templates:25001
|
||||
msgid ""
|
||||
"Please enter the partition name where alternc is installed. This is used "
|
||||
"mainly for disk quotas."
|
||||
|
@ -376,19 +424,19 @@ msgstr ""
|
|||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:22001
|
||||
#: ../alternc.templates:25001
|
||||
msgid "Warning: Be careful! It can generate some problems."
|
||||
msgstr ""
|
||||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:23001
|
||||
#: ../alternc.templates:26001
|
||||
msgid "The monitoring server:"
|
||||
msgstr ""
|
||||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:23001
|
||||
#: ../alternc.templates:26001
|
||||
msgid ""
|
||||
"The IP address (or ip/prefix) of the server(s) which must be authorized to "
|
||||
"ping the server and access apache status pages. Completely optional."
|
||||
|
@ -396,61 +444,61 @@ msgstr ""
|
|||
|
||||
#. Type: boolean
|
||||
#. Description
|
||||
#: ../alternc.templates:24001
|
||||
#: ../alternc.templates:27001
|
||||
msgid "Should AlternC remove all databases (/var/lib/mysql/)?"
|
||||
msgstr ""
|
||||
|
||||
#. Type: boolean
|
||||
#. Description
|
||||
#: ../alternc.templates:24001
|
||||
#: ../alternc.templates:27001
|
||||
msgid "All users databases will be trashed"
|
||||
msgstr ""
|
||||
|
||||
#. Type: boolean
|
||||
#. Description
|
||||
#: ../alternc.templates:25001
|
||||
#: ../alternc.templates:28001
|
||||
msgid "Should AlternC remove users datas?"
|
||||
msgstr ""
|
||||
|
||||
#. Type: boolean
|
||||
#. Description
|
||||
#: ../alternc.templates:25001
|
||||
#: ../alternc.templates:28001
|
||||
msgid "The files and apache redirections created by users will be trashed"
|
||||
msgstr ""
|
||||
|
||||
#. Type: boolean
|
||||
#. Description
|
||||
#: ../alternc.templates:26001
|
||||
#: ../alternc.templates:29001
|
||||
msgid "Should AlternC remove bind zones?"
|
||||
msgstr ""
|
||||
|
||||
#. Type: boolean
|
||||
#. Description
|
||||
#: ../alternc.templates:26001
|
||||
#: ../alternc.templates:29001
|
||||
msgid "It will delete all bind zones created by AlternC"
|
||||
msgstr ""
|
||||
|
||||
#. Type: boolean
|
||||
#. Description
|
||||
#: ../alternc.templates:27001
|
||||
#: ../alternc.templates:30001
|
||||
msgid "Should AlternC remove mailboxes?"
|
||||
msgstr ""
|
||||
|
||||
#. Type: boolean
|
||||
#. Description
|
||||
#: ../alternc.templates:27001
|
||||
#: ../alternc.templates:30001
|
||||
msgid "If you accept all users e-mails will be deleted"
|
||||
msgstr ""
|
||||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:28001
|
||||
#: ../alternc.templates:31001
|
||||
msgid "Slave servers"
|
||||
msgstr ""
|
||||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:28001
|
||||
#: ../alternc.templates:31001
|
||||
msgid ""
|
||||
"This is a space-separated list of servers that are \"slaves\" to the master "
|
||||
"server (this server). When writing apache configuration files, the master "
|
||||
|
@ -460,13 +508,13 @@ msgstr ""
|
|||
|
||||
#. Type: boolean
|
||||
#. Description
|
||||
#: ../alternc.templates:29001
|
||||
#: ../alternc.templates:32001
|
||||
msgid "Shall we use locally found MySQL server?"
|
||||
msgstr ""
|
||||
|
||||
#. Type: boolean
|
||||
#. Description
|
||||
#: ../alternc.templates:29001
|
||||
#: ../alternc.templates:32001
|
||||
msgid ""
|
||||
"A local MySQL connection was established on the server. Tell us if you want "
|
||||
"to use it. If not remote MySQL server connection parameters will be needed."
|
||||
|
@ -474,13 +522,13 @@ msgstr ""
|
|||
|
||||
#. Type: boolean
|
||||
#. Description
|
||||
#: ../alternc.templates:30001
|
||||
#: ../alternc.templates:33001
|
||||
msgid "Shall we use a remote MySQL server?"
|
||||
msgstr ""
|
||||
|
||||
#. Type: boolean
|
||||
#. Description
|
||||
#: ../alternc.templates:30001
|
||||
#: ../alternc.templates:33001
|
||||
msgid ""
|
||||
"No local Mysql server was found. Please confirm you want to use a remote "
|
||||
"Mysql Server. If not, AlternC cannot be installed."
|
||||
|
@ -488,13 +536,13 @@ msgstr ""
|
|||
|
||||
#. Type: boolean
|
||||
#. Description
|
||||
#: ../alternc.templates:31001
|
||||
#: ../alternc.templates:34001
|
||||
msgid "MySQL connection error. Try again?"
|
||||
msgstr ""
|
||||
|
||||
#. Type: boolean
|
||||
#. Description
|
||||
#: ../alternc.templates:31001
|
||||
#: ../alternc.templates:34001
|
||||
msgid ""
|
||||
"Remote connection to the MySQL server failed. Please confirm that we shall "
|
||||
"try again."
|
||||
|
@ -502,13 +550,13 @@ msgstr ""
|
|||
|
||||
#. Type: boolean
|
||||
#. Description
|
||||
#: ../alternc.templates:32001
|
||||
#: ../alternc.templates:35001
|
||||
msgid "Private IP detected, use it anyway?"
|
||||
msgstr ""
|
||||
|
||||
#. Type: boolean
|
||||
#. Description
|
||||
#: ../alternc.templates:32001
|
||||
#: ../alternc.templates:35001
|
||||
msgid ""
|
||||
"The IP address you have appears to be private, please confirm you want to "
|
||||
"use it anyway. The server might not be reachable from outside your network."
|
||||
|
|
|
@ -8,7 +8,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: alternc@packages.debian.org\n"
|
||||
"POT-Creation-Date: 2013-02-07 19:01+0100\n"
|
||||
"POT-Creation-Date: 2013-03-22 12:11+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
@ -137,13 +137,61 @@ msgstr ""
|
|||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:7001
|
||||
msgid "Name of the mysql server:"
|
||||
msgid "The path where alternc's users html files will be put"
|
||||
msgstr ""
|
||||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:7001
|
||||
msgid ""
|
||||
"Please enter the directory name where you want html user files to be put. "
|
||||
"The default value should be good in most cases."
|
||||
msgstr ""
|
||||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:7001
|
||||
msgid "This directory wil contain every alternc users personnal directories."
|
||||
msgstr ""
|
||||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:8001
|
||||
msgid "The path where alternc's users mails will be put"
|
||||
msgstr ""
|
||||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:8001
|
||||
msgid ""
|
||||
"Please enter the directory name where you want to put your users maildirs. "
|
||||
"The default value should be good in most cases."
|
||||
msgstr ""
|
||||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:9001
|
||||
msgid "The path where alternc's logs files will be placed"
|
||||
msgstr ""
|
||||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:9001
|
||||
msgid ""
|
||||
"Please enter the directory name where you want to put your log files. The "
|
||||
"default value should be good in most cases."
|
||||
msgstr ""
|
||||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:10001
|
||||
msgid "Name of the mysql server:"
|
||||
msgstr ""
|
||||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:10001
|
||||
msgid ""
|
||||
"Please enter the fully qualified name of your mysql server host. This server "
|
||||
"MUST be able to access the remote server at standard port (3306). It is "
|
||||
"recommended to use \"127.0.0.1\" instead of \"localhost\" if your postfix "
|
||||
|
@ -152,13 +200,13 @@ msgstr ""
|
|||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:8001
|
||||
#: ../alternc.templates:11001
|
||||
msgid "AlternC's mysql system database:"
|
||||
msgstr ""
|
||||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:8001
|
||||
#: ../alternc.templates:11001
|
||||
msgid ""
|
||||
"AlternC will create a mysql database to store it's system data. Please "
|
||||
"choose the name of this database here. The default value should be good in "
|
||||
|
@ -171,8 +219,8 @@ msgstr ""
|
|||
#. Description
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:9001 ../alternc.templates:10001
|
||||
#: ../alternc.templates:13001
|
||||
#: ../alternc.templates:12001 ../alternc.templates:13001
|
||||
#: ../alternc.templates:16001
|
||||
msgid "AlternC's mysql account:"
|
||||
msgstr ""
|
||||
|
||||
|
@ -180,7 +228,7 @@ msgstr ""
|
|||
#. Description
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:9001 ../alternc.templates:13001
|
||||
#: ../alternc.templates:12001 ../alternc.templates:16001
|
||||
msgid ""
|
||||
"AlternC will create a mysql administrator account. Please choose it's "
|
||||
"username here. The default value should be good in most case."
|
||||
|
@ -188,7 +236,7 @@ msgstr ""
|
|||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:10001
|
||||
#: ../alternc.templates:13001
|
||||
msgid ""
|
||||
"Using a remote mysql installation requires the AlternC user to be configured "
|
||||
"in advance with administrator access to the mysql installation."
|
||||
|
@ -196,7 +244,7 @@ msgstr ""
|
|||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:10001
|
||||
#: ../alternc.templates:13001
|
||||
msgid ""
|
||||
"The alternc sql user is responsible for granting access to user generated "
|
||||
"databases, that is why it needs root access on the mysql installation."
|
||||
|
@ -206,7 +254,7 @@ msgstr ""
|
|||
#. Description
|
||||
#. Type: password
|
||||
#. Description
|
||||
#: ../alternc.templates:11001 ../alternc.templates:14001
|
||||
#: ../alternc.templates:14001 ../alternc.templates:17001
|
||||
msgid "Password of AlternC's mysql account:"
|
||||
msgstr ""
|
||||
|
||||
|
@ -214,7 +262,7 @@ msgstr ""
|
|||
#. Description
|
||||
#. Type: password
|
||||
#. Description
|
||||
#: ../alternc.templates:11001 ../alternc.templates:14001
|
||||
#: ../alternc.templates:14001 ../alternc.templates:17001
|
||||
msgid ""
|
||||
"AlternC requires an administrator account on the mysql server. It will be "
|
||||
"created automatically during the install process. Please choose a password "
|
||||
|
@ -225,7 +273,7 @@ msgstr ""
|
|||
#. Description
|
||||
#. Type: password
|
||||
#. Description
|
||||
#: ../alternc.templates:11001 ../alternc.templates:12001
|
||||
#: ../alternc.templates:14001 ../alternc.templates:15001
|
||||
msgid ""
|
||||
"Please choose a quite complex password since it will have full access to the "
|
||||
"system database! If you enter nothing, a random password will be created."
|
||||
|
@ -233,25 +281,25 @@ msgstr ""
|
|||
|
||||
#. Type: password
|
||||
#. Description
|
||||
#: ../alternc.templates:12001
|
||||
#: ../alternc.templates:15001
|
||||
msgid "Password of the AlternC's mysql account:"
|
||||
msgstr ""
|
||||
|
||||
#. Type: password
|
||||
#. Description
|
||||
#: ../alternc.templates:12001
|
||||
#: ../alternc.templates:15001
|
||||
msgid "Specify the remote mysql user password"
|
||||
msgstr ""
|
||||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:15001
|
||||
#: ../alternc.templates:18001
|
||||
msgid "The server to GRANT permissions to:"
|
||||
msgstr ""
|
||||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:15001
|
||||
#: ../alternc.templates:18001
|
||||
msgid ""
|
||||
"AlternC and MySQL can be installed on different servers. In order to have "
|
||||
"GRANT table properly created and manipulated, this parameter must be set to "
|
||||
|
@ -261,13 +309,13 @@ msgstr ""
|
|||
|
||||
#. Type: select
|
||||
#. Description
|
||||
#: ../alternc.templates:16001
|
||||
#: ../alternc.templates:19001
|
||||
msgid "The way backup rotation is executed"
|
||||
msgstr ""
|
||||
|
||||
#. Type: select
|
||||
#. Description
|
||||
#: ../alternc.templates:16001
|
||||
#: ../alternc.templates:19001
|
||||
msgid ""
|
||||
"AlternC enables users to configure their own backups, on demand, with "
|
||||
"automatic rotation. This option determines how the backups are rotated."
|
||||
|
@ -275,7 +323,7 @@ msgstr ""
|
|||
|
||||
#. Type: select
|
||||
#. Description
|
||||
#: ../alternc.templates:16001
|
||||
#: ../alternc.templates:19001
|
||||
msgid ""
|
||||
"rotate - backup.sql, backup.sql.0, backup.sql.1 date - backup.sql, backup."
|
||||
"sql.20080709, backup.sql.20080708"
|
||||
|
@ -283,13 +331,13 @@ msgstr ""
|
|||
|
||||
#. Type: select
|
||||
#. Description
|
||||
#: ../alternc.templates:17001
|
||||
#: ../alternc.templates:20001
|
||||
msgid "Behavior of the backup script when it encounters a unmanaged file"
|
||||
msgstr ""
|
||||
|
||||
#. Type: select
|
||||
#. Description
|
||||
#: ../alternc.templates:17001
|
||||
#: ../alternc.templates:20001
|
||||
msgid ""
|
||||
"The SQL backups can rename or overwrite existing files it doesn't know about "
|
||||
"when doing backups. The default behavior is to skip those files and ignore "
|
||||
|
@ -298,13 +346,13 @@ msgstr ""
|
|||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:18001
|
||||
#: ../alternc.templates:21001
|
||||
msgid "The primary IP of this server:"
|
||||
msgstr ""
|
||||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:18001
|
||||
#: ../alternc.templates:21001
|
||||
msgid ""
|
||||
"AlternC will default the A records for domains it hosts to this address. In "
|
||||
"other words, this is the address everyone can reach to server at."
|
||||
|
@ -312,13 +360,13 @@ msgstr ""
|
|||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:19001
|
||||
#: ../alternc.templates:22001
|
||||
msgid "The internal IP of this server:"
|
||||
msgstr ""
|
||||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:19001
|
||||
#: ../alternc.templates:22001
|
||||
msgid ""
|
||||
"AlternC will configure Apache and other services to listen to this address. "
|
||||
"This is usually the same as the primary IP of the server, unless the server "
|
||||
|
@ -327,19 +375,19 @@ msgstr ""
|
|||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:19001
|
||||
#: ../alternc.templates:22001
|
||||
msgid "In other words, this is the IP address of eth0."
|
||||
msgstr ""
|
||||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:20001
|
||||
#: ../alternc.templates:23001
|
||||
msgid "The default MX to assign to new domains:"
|
||||
msgstr ""
|
||||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:20001
|
||||
#: ../alternc.templates:23001
|
||||
msgid ""
|
||||
"AlternC will assign this hostname as the MX record for all the domains it "
|
||||
"hosts. It is usually better be left alone."
|
||||
|
@ -347,13 +395,13 @@ msgstr ""
|
|||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:21001
|
||||
#: ../alternc.templates:24001
|
||||
msgid "The default Backup MX to assign to new domains:"
|
||||
msgstr ""
|
||||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:21001
|
||||
#: ../alternc.templates:24001
|
||||
msgid ""
|
||||
"AlternC will assign this hostname as the Backup MX record for all the "
|
||||
"domains it hosts. Don't set it if you don't know what it is about."
|
||||
|
@ -361,13 +409,13 @@ msgstr ""
|
|||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:22001
|
||||
#: ../alternc.templates:25001
|
||||
msgid "The path where AlternC is installed:"
|
||||
msgstr ""
|
||||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:22001
|
||||
#: ../alternc.templates:25001
|
||||
msgid ""
|
||||
"Please enter the partition name where alternc is installed. This is used "
|
||||
"mainly for disk quotas."
|
||||
|
@ -375,19 +423,19 @@ msgstr ""
|
|||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:22001
|
||||
#: ../alternc.templates:25001
|
||||
msgid "Warning: Be careful! It can generate some problems."
|
||||
msgstr ""
|
||||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:23001
|
||||
#: ../alternc.templates:26001
|
||||
msgid "The monitoring server:"
|
||||
msgstr ""
|
||||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:23001
|
||||
#: ../alternc.templates:26001
|
||||
msgid ""
|
||||
"The IP address (or ip/prefix) of the server(s) which must be authorized to "
|
||||
"ping the server and access apache status pages. Completely optional."
|
||||
|
@ -395,61 +443,61 @@ msgstr ""
|
|||
|
||||
#. Type: boolean
|
||||
#. Description
|
||||
#: ../alternc.templates:24001
|
||||
#: ../alternc.templates:27001
|
||||
msgid "Should AlternC remove all databases (/var/lib/mysql/)?"
|
||||
msgstr ""
|
||||
|
||||
#. Type: boolean
|
||||
#. Description
|
||||
#: ../alternc.templates:24001
|
||||
#: ../alternc.templates:27001
|
||||
msgid "All users databases will be trashed"
|
||||
msgstr ""
|
||||
|
||||
#. Type: boolean
|
||||
#. Description
|
||||
#: ../alternc.templates:25001
|
||||
#: ../alternc.templates:28001
|
||||
msgid "Should AlternC remove users datas?"
|
||||
msgstr ""
|
||||
|
||||
#. Type: boolean
|
||||
#. Description
|
||||
#: ../alternc.templates:25001
|
||||
#: ../alternc.templates:28001
|
||||
msgid "The files and apache redirections created by users will be trashed"
|
||||
msgstr ""
|
||||
|
||||
#. Type: boolean
|
||||
#. Description
|
||||
#: ../alternc.templates:26001
|
||||
#: ../alternc.templates:29001
|
||||
msgid "Should AlternC remove bind zones?"
|
||||
msgstr ""
|
||||
|
||||
#. Type: boolean
|
||||
#. Description
|
||||
#: ../alternc.templates:26001
|
||||
#: ../alternc.templates:29001
|
||||
msgid "It will delete all bind zones created by AlternC"
|
||||
msgstr ""
|
||||
|
||||
#. Type: boolean
|
||||
#. Description
|
||||
#: ../alternc.templates:27001
|
||||
#: ../alternc.templates:30001
|
||||
msgid "Should AlternC remove mailboxes?"
|
||||
msgstr ""
|
||||
|
||||
#. Type: boolean
|
||||
#. Description
|
||||
#: ../alternc.templates:27001
|
||||
#: ../alternc.templates:30001
|
||||
msgid "If you accept all users e-mails will be deleted"
|
||||
msgstr ""
|
||||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:28001
|
||||
#: ../alternc.templates:31001
|
||||
msgid "Slave servers"
|
||||
msgstr ""
|
||||
|
||||
#. Type: string
|
||||
#. Description
|
||||
#: ../alternc.templates:28001
|
||||
#: ../alternc.templates:31001
|
||||
msgid ""
|
||||
"This is a space-separated list of servers that are \"slaves\" to the master "
|
||||
"server (this server). When writing apache configuration files, the master "
|
||||
|
@ -459,13 +507,13 @@ msgstr ""
|
|||
|
||||
#. Type: boolean
|
||||
#. Description
|
||||
#: ../alternc.templates:29001
|
||||
#: ../alternc.templates:32001
|
||||
msgid "Shall we use locally found MySQL server?"
|
||||
msgstr ""
|
||||
|
||||
#. Type: boolean
|
||||
#. Description
|
||||
#: ../alternc.templates:29001
|
||||
#: ../alternc.templates:32001
|
||||
msgid ""
|
||||
"A local MySQL connection was established on the server. Tell us if you want "
|
||||
"to use it. If not remote MySQL server connection parameters will be needed."
|
||||
|
@ -473,13 +521,13 @@ msgstr ""
|
|||
|
||||
#. Type: boolean
|
||||
#. Description
|
||||
#: ../alternc.templates:30001
|
||||
#: ../alternc.templates:33001
|
||||
msgid "Shall we use a remote MySQL server?"
|
||||
msgstr ""
|
||||
|
||||
#. Type: boolean
|
||||
#. Description
|
||||
#: ../alternc.templates:30001
|
||||
#: ../alternc.templates:33001
|
||||
msgid ""
|
||||
"No local Mysql server was found. Please confirm you want to use a remote "
|
||||
"Mysql Server. If not, AlternC cannot be installed."
|
||||
|
@ -487,13 +535,13 @@ msgstr ""
|
|||
|
||||
#. Type: boolean
|
||||
#. Description
|
||||
#: ../alternc.templates:31001
|
||||
#: ../alternc.templates:34001
|
||||
msgid "MySQL connection error. Try again?"
|
||||
msgstr ""
|
||||
|
||||
#. Type: boolean
|
||||
#. Description
|
||||
#: ../alternc.templates:31001
|
||||
#: ../alternc.templates:34001
|
||||
msgid ""
|
||||
"Remote connection to the MySQL server failed. Please confirm that we shall "
|
||||
"try again."
|
||||
|
@ -501,13 +549,13 @@ msgstr ""
|
|||
|
||||
#. Type: boolean
|
||||
#. Description
|
||||
#: ../alternc.templates:32001
|
||||
#: ../alternc.templates:35001
|
||||
msgid "Private IP detected, use it anyway?"
|
||||
msgstr ""
|
||||
|
||||
#. Type: boolean
|
||||
#. Description
|
||||
#: ../alternc.templates:32001
|
||||
#: ../alternc.templates:35001
|
||||
msgid ""
|
||||
"The IP address you have appears to be private, please confirm you want to "
|
||||
"use it anyway. The server might not be reachable from outside your network."
|
||||
|
|
Loading…
Reference in New Issue