Removed warning on deactivation of safemode since it is deprecated and will be removed, fixes #812, fixes #556
Signed-off-by: Florian Aders (EleRas) <eleras@froxlor.org>
This commit is contained in:
@@ -227,23 +227,23 @@ if($page == 'domains'
|
|||||||
|
|
||||||
$domain = $idna_convert->encode(preg_replace(Array('/\:(\d)+$/', '/^https?\:\/\//'), '', validate($_POST['domain'], 'domain')));
|
$domain = $idna_convert->encode(preg_replace(Array('/\:(\d)+$/', '/^https?\:\/\//'), '', validate($_POST['domain'], 'domain')));
|
||||||
$subcanemaildomain = intval($_POST['subcanemaildomain']);
|
$subcanemaildomain = intval($_POST['subcanemaildomain']);
|
||||||
|
|
||||||
$isemaildomain = 0;
|
$isemaildomain = 0;
|
||||||
if(isset($_POST['isemaildomain']))
|
if(isset($_POST['isemaildomain']))
|
||||||
$isemaildomain = intval($_POST['isemaildomain']);
|
$isemaildomain = intval($_POST['isemaildomain']);
|
||||||
|
|
||||||
$email_only = 0;
|
$email_only = 0;
|
||||||
if(isset($_POST['email_only']))
|
if(isset($_POST['email_only']))
|
||||||
$email_only = intval($_POST['email_only']);
|
$email_only = intval($_POST['email_only']);
|
||||||
|
|
||||||
$wwwserveralias = 0;
|
$wwwserveralias = 0;
|
||||||
if(isset($_POST['wwwserveralias']))
|
if(isset($_POST['wwwserveralias']))
|
||||||
$wwwserveralias = intval($_POST['wwwserveralias']);
|
$wwwserveralias = intval($_POST['wwwserveralias']);
|
||||||
|
|
||||||
$speciallogfile = 0;
|
$speciallogfile = 0;
|
||||||
if(isset($_POST['speciallogfile']))
|
if(isset($_POST['speciallogfile']))
|
||||||
$speciallogfile = intval($_POST['speciallogfile']);
|
$speciallogfile = intval($_POST['speciallogfile']);
|
||||||
|
|
||||||
$aliasdomain = intval($_POST['alias']);
|
$aliasdomain = intval($_POST['alias']);
|
||||||
$issubof = intval($_POST['issubof']);
|
$issubof = intval($_POST['issubof']);
|
||||||
$customerid = intval($_POST['customerid']);
|
$customerid = intval($_POST['customerid']);
|
||||||
@@ -480,7 +480,7 @@ if($page == 'domains'
|
|||||||
{
|
{
|
||||||
$caneditdomain = '0';
|
$caneditdomain = '0';
|
||||||
}
|
}
|
||||||
|
|
||||||
if($issubof <= '0')
|
if($issubof <= '0')
|
||||||
{
|
{
|
||||||
$issubof = '0';
|
$issubof = '0';
|
||||||
@@ -545,7 +545,7 @@ if($page == 'domains'
|
|||||||
);
|
);
|
||||||
|
|
||||||
$security_questions = array(
|
$security_questions = array(
|
||||||
'reallydisablesecuritysetting' => (($openbasedir == '0' || $safemode == '0') && $userinfo['change_serversettings'] == '1'),
|
'reallydisablesecuritysetting' => ($openbasedir == '0' && $userinfo['change_serversettings'] == '1'),
|
||||||
'reallydocrootoutofcustomerroot' => (substr($documentroot, 0, strlen($customer['documentroot'])) != $customer['documentroot'] && !preg_match('/^https?\:\/\//', $documentroot))
|
'reallydocrootoutofcustomerroot' => (substr($documentroot, 0, strlen($customer['documentroot'])) != $customer['documentroot'] && !preg_match('/^https?\:\/\//', $documentroot))
|
||||||
);
|
);
|
||||||
$question_nr = 1;
|
$question_nr = 1;
|
||||||
@@ -656,7 +656,7 @@ if($page == 'domains'
|
|||||||
{
|
{
|
||||||
$domains.= makeoption($idna_convert->decode($row_domain['domain']) . ' (' . $row_domain['loginname'] . ')', $row_domain['id']);
|
$domains.= makeoption($idna_convert->decode($row_domain['domain']) . ' (' . $row_domain['loginname'] . ')', $row_domain['id']);
|
||||||
}
|
}
|
||||||
|
|
||||||
$subtodomains = makeoption($lng['domains']['nosubtomaindomain'], 0, NULL, true);
|
$subtodomains = makeoption($lng['domains']['nosubtomaindomain'], 0, NULL, true);
|
||||||
$result_domains = $db->query("SELECT `d`.`id`, `d`.`domain`, `c`.`loginname` FROM `" . TABLE_PANEL_DOMAINS . "` `d`, `" . TABLE_PANEL_CUSTOMERS . "` `c` WHERE `d`.`aliasdomain` IS NULL AND `d`.`parentdomainid`=0 AND `d`.`ismainbutsubto`=0 " . $standardsubdomains . ($userinfo['customers_see_all'] ? '' : " AND `d`.`adminid` = '" . (int)$userinfo['adminid'] . "'") . " AND `d`.`customerid`=`c`.`customerid` ORDER BY `loginname`, `domain` ASC");
|
$result_domains = $db->query("SELECT `d`.`id`, `d`.`domain`, `c`.`loginname` FROM `" . TABLE_PANEL_DOMAINS . "` `d`, `" . TABLE_PANEL_CUSTOMERS . "` `c` WHERE `d`.`aliasdomain` IS NULL AND `d`.`parentdomainid`=0 AND `d`.`ismainbutsubto`=0 " . $standardsubdomains . ($userinfo['customers_see_all'] ? '' : " AND `d`.`adminid` = '" . (int)$userinfo['adminid'] . "'") . " AND `d`.`customerid`=`c`.`customerid` ORDER BY `loginname`, `domain` ASC");
|
||||||
|
|
||||||
@@ -684,7 +684,7 @@ if($page == 'domains'
|
|||||||
#$safemode = makeyesno('safemode', '1', '0', '1');
|
#$safemode = makeyesno('safemode', '1', '0', '1');
|
||||||
#$speciallogfile = makeyesno('speciallogfile', '1', '0', '0');
|
#$speciallogfile = makeyesno('speciallogfile', '1', '0', '0');
|
||||||
#$ssl = makeyesno('ssl', '1', '0', '0');
|
#$ssl = makeyesno('ssl', '1', '0', '0');
|
||||||
#$ssl_redirect = makeyesno('ssl_redirect', '1', '0', '0');
|
#$ssl_redirect = makeyesno('ssl_redirect', '1', '0', '0');
|
||||||
$add_date = date('Y-m-d');
|
$add_date = date('Y-m-d');
|
||||||
|
|
||||||
$domain_add_data = include_once dirname(__FILE__).'/lib/formfields/admin/domains/formfield.domains_add.php';
|
$domain_add_data = include_once dirname(__FILE__).'/lib/formfields/admin/domains/formfield.domains_add.php';
|
||||||
@@ -700,10 +700,10 @@ if($page == 'domains'
|
|||||||
elseif($action == 'edit'
|
elseif($action == 'edit'
|
||||||
&& $id != 0)
|
&& $id != 0)
|
||||||
{
|
{
|
||||||
$result = $db->query_first("SELECT `d`.*, `c`.`customerid` FROM `" . TABLE_PANEL_DOMAINS . "` `d`
|
$result = $db->query_first("SELECT `d`.*, `c`.`customerid` FROM `" . TABLE_PANEL_DOMAINS . "` `d`
|
||||||
LEFT JOIN `" . TABLE_PANEL_CUSTOMERS . "` `c` USING(`customerid`)
|
LEFT JOIN `" . TABLE_PANEL_CUSTOMERS . "` `c` USING(`customerid`)
|
||||||
WHERE `d`.`parentdomainid`='0'
|
WHERE `d`.`parentdomainid`='0'
|
||||||
AND `d`.`id`='" . (int)$id . "'"
|
AND `d`.`id`='" . (int)$id . "'"
|
||||||
. ($userinfo['customers_see_all'] ? '' : " AND `d`.`adminid` = '" . (int)$userinfo['adminid'] . "' "));
|
. ($userinfo['customers_see_all'] ? '' : " AND `d`.`adminid` = '" . (int)$userinfo['adminid'] . "' "));
|
||||||
|
|
||||||
if($result['domain'] != '')
|
if($result['domain'] != '')
|
||||||
@@ -790,15 +790,15 @@ if($page == 'domains'
|
|||||||
$isemaildomain = 0;
|
$isemaildomain = 0;
|
||||||
if(isset($_POST['isemaildomain']))
|
if(isset($_POST['isemaildomain']))
|
||||||
$isemaildomain = intval($_POST['isemaildomain']);
|
$isemaildomain = intval($_POST['isemaildomain']);
|
||||||
|
|
||||||
$email_only = 0;
|
$email_only = 0;
|
||||||
if(isset($_POST['email_only']))
|
if(isset($_POST['email_only']))
|
||||||
$email_only = intval($_POST['email_only']);
|
$email_only = intval($_POST['email_only']);
|
||||||
|
|
||||||
$wwwserveralias = 0;
|
$wwwserveralias = 0;
|
||||||
if(isset($_POST['wwwserveralias']))
|
if(isset($_POST['wwwserveralias']))
|
||||||
$wwwserveralias = intval($_POST['wwwserveralias']);
|
$wwwserveralias = intval($_POST['wwwserveralias']);
|
||||||
|
|
||||||
if($userinfo['change_serversettings'] == '1')
|
if($userinfo['change_serversettings'] == '1')
|
||||||
{
|
{
|
||||||
$isbinddomain = intval($_POST['isbinddomain']);
|
$isbinddomain = intval($_POST['isbinddomain']);
|
||||||
@@ -986,7 +986,7 @@ if($page == 'domains'
|
|||||||
{
|
{
|
||||||
standard_error('domainisaliasorothercustomer');
|
standard_error('domainisaliasorothercustomer');
|
||||||
}
|
}
|
||||||
|
|
||||||
if($issubof <= '0')
|
if($issubof <= '0')
|
||||||
{
|
{
|
||||||
$issubof = '0';
|
$issubof = '0';
|
||||||
@@ -1023,7 +1023,7 @@ if($page == 'domains'
|
|||||||
);
|
);
|
||||||
|
|
||||||
$security_questions = array(
|
$security_questions = array(
|
||||||
'reallydisablesecuritysetting' => (($openbasedir == '0' || $safemode == '0') && $userinfo['change_serversettings'] == '1'),
|
'reallydisablesecuritysetting' => ($openbasedir == '0' && $userinfo['change_serversettings'] == '1'),
|
||||||
'reallydocrootoutofcustomerroot' => (substr($documentroot, 0, strlen($customer['documentroot'])) != $customer['documentroot'] && !preg_match('/^https?\:\/\//', $documentroot))
|
'reallydocrootoutofcustomerroot' => (substr($documentroot, 0, strlen($customer['documentroot'])) != $customer['documentroot'] && !preg_match('/^https?\:\/\//', $documentroot))
|
||||||
);
|
);
|
||||||
foreach($security_questions as $question_name => $question_launch)
|
foreach($security_questions as $question_name => $question_launch)
|
||||||
@@ -1108,14 +1108,14 @@ if($page == 'domains'
|
|||||||
if($ssfs == 1)
|
if($ssfs == 1)
|
||||||
{
|
{
|
||||||
$upd_specialsettings = ", `specialsettings`='" . $db->escape($specialsettings) . "' ";
|
$upd_specialsettings = ", `specialsettings`='" . $db->escape($specialsettings) . "' ";
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
$upd_specialsettings = '';
|
$upd_specialsettings = '';
|
||||||
$db->query("UPDATE `" . TABLE_PANEL_DOMAINS . "` SET `specialsettings`='' WHERE `parentdomainid`='" . (int)$id . "'");
|
$db->query("UPDATE `" . TABLE_PANEL_DOMAINS . "` SET `specialsettings`='' WHERE `parentdomainid`='" . (int)$id . "'");
|
||||||
$log->logAction(ADM_ACTION, LOG_INFO, "removed specialsettings on all subdomains of domain #" . $id);
|
$log->logAction(ADM_ACTION, LOG_INFO, "removed specialsettings on all subdomains of domain #" . $id);
|
||||||
}
|
}
|
||||||
|
|
||||||
$result = $db->query("UPDATE `" . TABLE_PANEL_DOMAINS . "` SET `customerid` = '" . (int)$customerid . "', `adminid` = '" . (int)$adminid . "', `documentroot`='" . $db->escape($documentroot) . "', `ipandport`='" . $db->escape($ipandport) . "', `ssl`='" . (int)$ssl . "', `ssl_redirect`='" . (int)$ssl_redirect . "', `ssl_ipandport`='" . (int)$ssl_ipandport . "', `aliasdomain`=" . (($aliasdomain != 0 && $alias_check == 0) ? '\'' . $db->escape($aliasdomain) . '\'' : 'NULL') . ", `isbinddomain`='" . $db->escape($isbinddomain) . "', `isemaildomain`='" . $db->escape($isemaildomain) . "', `email_only`='" . $db->escape($email_only) . "', `subcanemaildomain`='" . $db->escape($subcanemaildomain) . "', `dkim`='" . $db->escape($dkim) . "', `caneditdomain`='" . $db->escape($caneditdomain) . "', `zonefile`='" . $db->escape($zonefile) . "', `wwwserveralias`='" . $db->escape($wwwserveralias) . "', `openbasedir`='" . $db->escape($openbasedir) . "', `safemode`='" . $db->escape($safemode) . "', `phpsettingid`='" . $db->escape($phpsettingid) . "', `mod_fcgid_starter`='" . $db->escape($mod_fcgid_starter) . "', `mod_fcgid_maxrequests`='" . $db->escape($mod_fcgid_maxrequests) . "', `specialsettings`='" . $db->escape($specialsettings) . "', `registration_date`='" . $db->escape($registration_date) . "', `ismainbutsubto`='" . (int)$issubof . "' WHERE `id`='" . (int)$id . "'");
|
$result = $db->query("UPDATE `" . TABLE_PANEL_DOMAINS . "` SET `customerid` = '" . (int)$customerid . "', `adminid` = '" . (int)$adminid . "', `documentroot`='" . $db->escape($documentroot) . "', `ipandport`='" . $db->escape($ipandport) . "', `ssl`='" . (int)$ssl . "', `ssl_redirect`='" . (int)$ssl_redirect . "', `ssl_ipandport`='" . (int)$ssl_ipandport . "', `aliasdomain`=" . (($aliasdomain != 0 && $alias_check == 0) ? '\'' . $db->escape($aliasdomain) . '\'' : 'NULL') . ", `isbinddomain`='" . $db->escape($isbinddomain) . "', `isemaildomain`='" . $db->escape($isemaildomain) . "', `email_only`='" . $db->escape($email_only) . "', `subcanemaildomain`='" . $db->escape($subcanemaildomain) . "', `dkim`='" . $db->escape($dkim) . "', `caneditdomain`='" . $db->escape($caneditdomain) . "', `zonefile`='" . $db->escape($zonefile) . "', `wwwserveralias`='" . $db->escape($wwwserveralias) . "', `openbasedir`='" . $db->escape($openbasedir) . "', `safemode`='" . $db->escape($safemode) . "', `phpsettingid`='" . $db->escape($phpsettingid) . "', `mod_fcgid_starter`='" . $db->escape($mod_fcgid_starter) . "', `mod_fcgid_maxrequests`='" . $db->escape($mod_fcgid_maxrequests) . "', `specialsettings`='" . $db->escape($specialsettings) . "', `registration_date`='" . $db->escape($registration_date) . "', `ismainbutsubto`='" . (int)$issubof . "' WHERE `id`='" . (int)$id . "'");
|
||||||
$result = $db->query("UPDATE `" . TABLE_PANEL_DOMAINS . "` SET `customerid` = '" . (int)$customerid . "', `adminid` = '" . (int)$adminid . "', `ipandport`='" . $db->escape($ipandport) . "', `openbasedir`='" . $db->escape($openbasedir) . "', `safemode`='" . $db->escape($safemode) . "', `phpsettingid`='" . $db->escape($phpsettingid) . "', `mod_fcgid_starter`='" . $db->escape($mod_fcgid_starter) . "', `mod_fcgid_maxrequests`='" . $db->escape($mod_fcgid_maxrequests) . "'" . $upd_specialsettings . $updatechildren . " WHERE `parentdomainid`='" . (int)$id . "'");
|
$result = $db->query("UPDATE `" . TABLE_PANEL_DOMAINS . "` SET `customerid` = '" . (int)$customerid . "', `adminid` = '" . (int)$adminid . "', `ipandport`='" . $db->escape($ipandport) . "', `openbasedir`='" . $db->escape($openbasedir) . "', `safemode`='" . $db->escape($safemode) . "', `phpsettingid`='" . $db->escape($phpsettingid) . "', `mod_fcgid_starter`='" . $db->escape($mod_fcgid_starter) . "', `mod_fcgid_maxrequests`='" . $db->escape($mod_fcgid_maxrequests) . "'" . $upd_specialsettings . $updatechildren . " WHERE `parentdomainid`='" . (int)$id . "'");
|
||||||
$log->logAction(ADM_ACTION, LOG_INFO, "edited domain #" . $id);
|
$log->logAction(ADM_ACTION, LOG_INFO, "edited domain #" . $id);
|
||||||
@@ -1243,7 +1243,7 @@ if($page == 'domains'
|
|||||||
}
|
}
|
||||||
|
|
||||||
#$specialsettingsforsubdomains = makeyesno('specialsettingsforsubdomains', '1', '0', '1');
|
#$specialsettingsforsubdomains = makeyesno('specialsettingsforsubdomains', '1', '0', '1');
|
||||||
|
|
||||||
$result = htmlentities_array($result);
|
$result = htmlentities_array($result);
|
||||||
|
|
||||||
$domain_edit_data = include_once dirname(__FILE__).'/lib/formfields/admin/domains/formfield.domains_edit.php';
|
$domain_edit_data = include_once dirname(__FILE__).'/lib/formfields/admin/domains/formfield.domains_edit.php';
|
||||||
|
|||||||
@@ -289,7 +289,7 @@ $lng['error']['stringformaterror'] = 'Стойността в полето "
|
|||||||
$lng['question']['question'] = 'Таен въпрос';
|
$lng['question']['question'] = 'Таен въпрос';
|
||||||
$lng['question']['admin_customer_reallydelete'] = 'Наистина ли искате да изтриете клиент %s? Това е необратимо!';
|
$lng['question']['admin_customer_reallydelete'] = 'Наистина ли искате да изтриете клиент %s? Това е необратимо!';
|
||||||
$lng['question']['admin_domain_reallydelete'] = 'Наистина ли искате да изтриете домейн %s?';
|
$lng['question']['admin_domain_reallydelete'] = 'Наистина ли искате да изтриете домейн %s?';
|
||||||
$lng['question']['admin_domain_reallydisablesecuritysetting'] = 'Наистина ли искате да деактивирате тези настройки на сигурността (OpenBasedir и/или SafeMode)?';
|
$lng['question']['admin_domain_reallydisablesecuritysetting'] = 'Наистина ли искате да деактивирате тези настройки на сигурността (OpenBasedir)?';
|
||||||
$lng['question']['admin_admin_reallydelete'] = 'Наистина ли искате да изтриете администраторът %s? Всеки негов клиент и домейн ще бъдат прикрепени към главния администратор.';
|
$lng['question']['admin_admin_reallydelete'] = 'Наистина ли искате да изтриете администраторът %s? Всеки негов клиент и домейн ще бъдат прикрепени към главния администратор.';
|
||||||
$lng['question']['admin_template_reallydelete'] = 'Наистина ли искате да изтриете шаблона \'%s\'?';
|
$lng['question']['admin_template_reallydelete'] = 'Наистина ли искате да изтриете шаблона \'%s\'?';
|
||||||
$lng['question']['domains_reallydelete'] = 'Наистина ли искате да изтриете домейна %s?';
|
$lng['question']['domains_reallydelete'] = 'Наистина ли искате да изтриете домейна %s?';
|
||||||
|
|||||||
@@ -242,7 +242,7 @@ $lng['error']['domainname'] = $lng['domains']['domainname'];
|
|||||||
$lng['question']['question'] = 'Preguntes de seguretat..';
|
$lng['question']['question'] = 'Preguntes de seguretat..';
|
||||||
$lng['question']['admin_customer_reallydelete'] = 'Estas segur que vols esborrar el client %s? Aquesta acció és irreversible!';
|
$lng['question']['admin_customer_reallydelete'] = 'Estas segur que vols esborrar el client %s? Aquesta acció és irreversible!';
|
||||||
$lng['question']['admin_domain_reallydelete'] = 'Segur que vols esborrar el domini %s?';
|
$lng['question']['admin_domain_reallydelete'] = 'Segur que vols esborrar el domini %s?';
|
||||||
$lng['question']['admin_domain_reallydisablesecuritysetting'] = 'Segur que vols desactivar aquesta opció de seguretat? (OpenBasedir and/or SafeMode)?';
|
$lng['question']['admin_domain_reallydisablesecuritysetting'] = 'Segur que vols desactivar aquesta opció de seguretat? (OpenBasedir)?';
|
||||||
$lng['question']['admin_admin_reallydelete'] = 'Segur que vols esborrar l\'administrador %s? Tots els seus clients aniran a parar a l\'administrador principal.';
|
$lng['question']['admin_admin_reallydelete'] = 'Segur que vols esborrar l\'administrador %s? Tots els seus clients aniran a parar a l\'administrador principal.';
|
||||||
$lng['question']['admin_template_reallydelete'] = 'Segur que vols esborrar aquesta plantilla \'%s\'?';
|
$lng['question']['admin_template_reallydelete'] = 'Segur que vols esborrar aquesta plantilla \'%s\'?';
|
||||||
$lng['question']['domains_reallydelete'] = 'Segur que vols esborrar el domini %s?';
|
$lng['question']['domains_reallydelete'] = 'Segur que vols esborrar el domini %s?';
|
||||||
|
|||||||
@@ -243,7 +243,7 @@ $lng['error']['domainname'] = $lng['domains']['domainname'];
|
|||||||
$lng['question']['question'] = 'Bezpeènostní otázka';
|
$lng['question']['question'] = 'Bezpeènostní otázka';
|
||||||
$lng['question']['admin_customer_reallydelete'] = 'Chcete opravdu smazat uživatele %s? Akci nelze vzít zpì t!';
|
$lng['question']['admin_customer_reallydelete'] = 'Chcete opravdu smazat uživatele %s? Akci nelze vzít zpì t!';
|
||||||
$lng['question']['admin_domain_reallydelete'] = 'Chcete opravdu smazat doménu %s?';
|
$lng['question']['admin_domain_reallydelete'] = 'Chcete opravdu smazat doménu %s?';
|
||||||
$lng['question']['admin_domain_reallydisablesecuritysetting'] = 'Chcete opravdu deaktivovat tato Bezpeènostní nastavení (OpenBasedir a/nebo SafeMode)?';
|
$lng['question']['admin_domain_reallydisablesecuritysetting'] = 'Chcete opravdu deaktivovat tato Bezpeènostní nastavení (OpenBasedir)?';
|
||||||
$lng['question']['admin_admin_reallydelete'] = 'Chcete opravdu smazat administrátory %s? Každý zákazník a doména bude nastavena k Vašemu Úètu.';
|
$lng['question']['admin_admin_reallydelete'] = 'Chcete opravdu smazat administrátory %s? Každý zákazník a doména bude nastavena k Vašemu Úètu.';
|
||||||
$lng['question']['admin_template_reallydelete'] = 'Chcete opravdu smazat šablonu \'%s\'?';
|
$lng['question']['admin_template_reallydelete'] = 'Chcete opravdu smazat šablonu \'%s\'?';
|
||||||
$lng['question']['domains_reallydelete'] = 'Chcete opravdu smazat doménu %s?';
|
$lng['question']['domains_reallydelete'] = 'Chcete opravdu smazat doménu %s?';
|
||||||
|
|||||||
@@ -243,7 +243,7 @@ $lng['error']['domainname'] = $lng['domains']['domainname'];
|
|||||||
$lng['question']['question'] = 'Sikkerhedsspørgsmål';
|
$lng['question']['question'] = 'Sikkerhedsspørgsmål';
|
||||||
$lng['question']['admin_customer_reallydelete'] = 'Er du sikker på du vil slette kunden %s? Dette kan ikke fortrydes!';
|
$lng['question']['admin_customer_reallydelete'] = 'Er du sikker på du vil slette kunden %s? Dette kan ikke fortrydes!';
|
||||||
$lng['question']['admin_domain_reallydelete'] = 'Er du sikker på du vil slette domænet %s?';
|
$lng['question']['admin_domain_reallydelete'] = 'Er du sikker på du vil slette domænet %s?';
|
||||||
$lng['question']['admin_domain_reallydisablesecuritysetting'] = 'Er du sikker på du vil deaktivere disse sikkerheds indstillinger (OpenBasedir og/eller SafeMode)?';
|
$lng['question']['admin_domain_reallydisablesecuritysetting'] = 'Er du sikker på du vil deaktivere disse sikkerheds indstillinger (OpenBasedir)?';
|
||||||
$lng['question']['admin_admin_reallydelete'] = 'Er du sikker på du vil slette administrator %s? Alle kunder og domæner som hører hertil vil blive allokeret til øverste adminstartor.';
|
$lng['question']['admin_admin_reallydelete'] = 'Er du sikker på du vil slette administrator %s? Alle kunder og domæner som hører hertil vil blive allokeret til øverste adminstartor.';
|
||||||
$lng['question']['admin_template_reallydelete'] = 'Er du sikker på du vil slette skabelonen \'%s*\'?';
|
$lng['question']['admin_template_reallydelete'] = 'Er du sikker på du vil slette skabelonen \'%s*\'?';
|
||||||
$lng['question']['domains_reallydelete'] = 'Er du sikker på du vil slette domænet %s?';
|
$lng['question']['domains_reallydelete'] = 'Er du sikker på du vil slette domænet %s?';
|
||||||
|
|||||||
@@ -243,7 +243,7 @@ $lng['error']['domainname'] = $lng['domains']['domainname'];
|
|||||||
$lng['question']['question'] = 'Beveiligings vraag';
|
$lng['question']['question'] = 'Beveiligings vraag';
|
||||||
$lng['question']['admin_customer_reallydelete'] = 'Weet u zeker dat u de klant %s wilt verwijderen? Dit kan niet ongedaan worden gemaakt!';
|
$lng['question']['admin_customer_reallydelete'] = 'Weet u zeker dat u de klant %s wilt verwijderen? Dit kan niet ongedaan worden gemaakt!';
|
||||||
$lng['question']['admin_domain_reallydelete'] = 'Weet u zeker dat u het domein %s wilt verwijderen?';
|
$lng['question']['admin_domain_reallydelete'] = 'Weet u zeker dat u het domein %s wilt verwijderen?';
|
||||||
$lng['question']['admin_domain_reallydisablesecuritysetting'] = 'Weet u echt heel zeker dat deze beveiligings instellingen wilt deactiveren (OpenBasedir en/of SafeMode)?';
|
$lng['question']['admin_domain_reallydisablesecuritysetting'] = 'Weet u echt heel zeker dat deze beveiligings instellingen wilt deactiveren (OpenBasedir)?';
|
||||||
$lng['question']['admin_admin_reallydelete'] = 'Weet u zeker dat u de admin %s verwijderen wilt? Iedere klant en domein zal worden toegewezen aan de hoofd administrator.';
|
$lng['question']['admin_admin_reallydelete'] = 'Weet u zeker dat u de admin %s verwijderen wilt? Iedere klant en domein zal worden toegewezen aan de hoofd administrator.';
|
||||||
$lng['question']['admin_template_reallydelete'] = 'Weet u zeker dat u het sjabloon \'%s\' verwijderen wilt?';
|
$lng['question']['admin_template_reallydelete'] = 'Weet u zeker dat u het sjabloon \'%s\' verwijderen wilt?';
|
||||||
$lng['question']['domains_reallydelete'] = 'Weet u zeker dat u het domein %s verwijderen wilt?';
|
$lng['question']['domains_reallydelete'] = 'Weet u zeker dat u het domein %s verwijderen wilt?';
|
||||||
@@ -1286,7 +1286,7 @@ $lng['serversettings']['panel_password_min_length']['title'] = 'Minimumlengte wa
|
|||||||
$lng['serversettings']['panel_password_min_length']['description'] = 'Hier kunt u een minimumlengte voor wachtwoorden opgeven. \'0\' betekent geen minimumlengte.';
|
$lng['serversettings']['panel_password_min_length']['description'] = 'Hier kunt u een minimumlengte voor wachtwoorden opgeven. \'0\' betekent geen minimumlengte.';
|
||||||
$lng['error']['notrequiredpasswordlength'] = 'Het opgegeven wachtwoord is te kort. Geef tenminste %s tekens op.';
|
$lng['error']['notrequiredpasswordlength'] = 'Het opgegeven wachtwoord is te kort. Geef tenminste %s tekens op.';
|
||||||
$lng['serversettings']['system_store_index_file_subs']['title'] = 'Standaard indexbestand ook plaatsen in nieuwe submappen';
|
$lng['serversettings']['system_store_index_file_subs']['title'] = 'Standaard indexbestand ook plaatsen in nieuwe submappen';
|
||||||
$lng['serversettings']['system_store_index_file_subs']['description'] = 'Indiend actief wordt dit bestand automatisch geplaatst in nieuw aangemaakte submappen (indien deze nog niet bestaat).';
|
$lng['serversettings']['system_store_index_file_subs']['description'] = 'Indiend actief wordt dit bestand automatisch geplaatst in nieuw aangemaakte submappen (indien deze nog niet bestaat).';
|
||||||
|
|
||||||
// ADDED IN FROXLOR 0.9.3-svn2
|
// ADDED IN FROXLOR 0.9.3-svn2
|
||||||
|
|
||||||
@@ -1498,7 +1498,7 @@ $lng['serversettings']['login_domain_login'] = 'Login met domeinen toestaan';
|
|||||||
|
|
||||||
// ADDED IN FROXLOR 0.9.14
|
// ADDED IN FROXLOR 0.9.14
|
||||||
$lng['panel']['unlock'] = 'ontgrendelen';
|
$lng['panel']['unlock'] = 'ontgrendelen';
|
||||||
$lng['question']['customer_reallyunlock'] = 'Weet u zeker dat u klant %s? wilt ontgrendelen';
|
$lng['question']['customer_reallyunlock'] = 'Weet u zeker dat u klant %s? wilt ontgrendelen';
|
||||||
|
|
||||||
// ADDED IN FROXLOR 0.9.15-svn1
|
// ADDED IN FROXLOR 0.9.15-svn1
|
||||||
$lng['serversettings']['perl_server']['title'] = 'Server locatie Perl';
|
$lng['serversettings']['perl_server']['title'] = 'Server locatie Perl';
|
||||||
|
|||||||
@@ -243,7 +243,7 @@ $lng['error']['domainname'] = $lng['domains']['domainname'];
|
|||||||
$lng['question']['question'] = 'Security question';
|
$lng['question']['question'] = 'Security question';
|
||||||
$lng['question']['admin_customer_reallydelete'] = 'Do you really want to delete the customer %s? This cannot be undone!';
|
$lng['question']['admin_customer_reallydelete'] = 'Do you really want to delete the customer %s? This cannot be undone!';
|
||||||
$lng['question']['admin_domain_reallydelete'] = 'Do you really want to delete the domain %s?';
|
$lng['question']['admin_domain_reallydelete'] = 'Do you really want to delete the domain %s?';
|
||||||
$lng['question']['admin_domain_reallydisablesecuritysetting'] = 'Do you really want to disable these security settings (OpenBasedir and/or SafeMode)?';
|
$lng['question']['admin_domain_reallydisablesecuritysetting'] = 'Do you really want to disable these security setting (OpenBasedir)?';
|
||||||
$lng['question']['admin_admin_reallydelete'] = 'Do you really want to delete the admin %s? Every customer and domain will be reassigned to your account.';
|
$lng['question']['admin_admin_reallydelete'] = 'Do you really want to delete the admin %s? Every customer and domain will be reassigned to your account.';
|
||||||
$lng['question']['admin_template_reallydelete'] = 'Do you really want to delete the template \'%s\'?';
|
$lng['question']['admin_template_reallydelete'] = 'Do you really want to delete the template \'%s\'?';
|
||||||
$lng['question']['domains_reallydelete'] = 'Do you really want to delete the domain %s?';
|
$lng['question']['domains_reallydelete'] = 'Do you really want to delete the domain %s?';
|
||||||
|
|||||||
@@ -255,7 +255,7 @@ $lng['error']['loginnameissystemaccount'] = 'Vous ne pouvez pas cr<63>er un compt
|
|||||||
$lng['question']['question'] = 'Question de s<>curit<69>';
|
$lng['question']['question'] = 'Question de s<>curit<69>';
|
||||||
$lng['question']['admin_customer_reallydelete'] = 'Etes-vous s<>r de vouloir supprimer le compte "%s" ?<br />ATTENTION ! Toutes ses informations seront supprim<69>es ! Une fois fait, il vous appartiendra de supprimer manuellement tous les dossiers du compte sur le syst<73>me de fichiers.';
|
$lng['question']['admin_customer_reallydelete'] = 'Etes-vous s<>r de vouloir supprimer le compte "%s" ?<br />ATTENTION ! Toutes ses informations seront supprim<69>es ! Une fois fait, il vous appartiendra de supprimer manuellement tous les dossiers du compte sur le syst<73>me de fichiers.';
|
||||||
$lng['question']['admin_domain_reallydelete'] = 'Etes-vous s<>r de vouloir supprimer le domaine "%s" ?';
|
$lng['question']['admin_domain_reallydelete'] = 'Etes-vous s<>r de vouloir supprimer le domaine "%s" ?';
|
||||||
$lng['question']['admin_domain_reallydisablesecuritysetting'] = 'Etes-vous s<>r de vouloir d<>sactiver les modes de s<>curit<69> suivants : OpenBasedir et / o<> SafeMode ?';
|
$lng['question']['admin_domain_reallydisablesecuritysetting'] = 'Etes-vous s<>r de vouloir d<>sactiver les modes de s<>curit<69> suivant : OpenBasedir?';
|
||||||
$lng['question']['admin_admin_reallydelete'] = 'Etes-vous s<>r de vouloir supprimer l\'administrateur "%s" ?<br />Tous ses comptes seront affect<63>s <20> l\'administrateur principal.';
|
$lng['question']['admin_admin_reallydelete'] = 'Etes-vous s<>r de vouloir supprimer l\'administrateur "%s" ?<br />Tous ses comptes seront affect<63>s <20> l\'administrateur principal.';
|
||||||
$lng['question']['admin_template_reallydelete'] = 'Etes-vous s<>r de vouloir supprimer le mod<6F>le "%s" ?';
|
$lng['question']['admin_template_reallydelete'] = 'Etes-vous s<>r de vouloir supprimer le mod<6F>le "%s" ?';
|
||||||
$lng['question']['domains_reallydelete'] = 'Etes-vous s<>r de vouloir supprimer le domaine "%s" ?';
|
$lng['question']['domains_reallydelete'] = 'Etes-vous s<>r de vouloir supprimer le domaine "%s" ?';
|
||||||
|
|||||||
@@ -243,7 +243,7 @@ $lng['error']['domainname'] = $lng['domains']['domainname'];
|
|||||||
$lng['question']['question'] = 'Sicherheitsabfrage';
|
$lng['question']['question'] = 'Sicherheitsabfrage';
|
||||||
$lng['question']['admin_customer_reallydelete'] = 'Wollen Sie den Kunden %s wirklich löschen?<br />ACHTUNG! Alle Daten gehen unwiderruflich verloren! Nach dem Vorgang müssen Sie die Daten aus dem Dateisystem noch manuell entfernen.';
|
$lng['question']['admin_customer_reallydelete'] = 'Wollen Sie den Kunden %s wirklich löschen?<br />ACHTUNG! Alle Daten gehen unwiderruflich verloren! Nach dem Vorgang müssen Sie die Daten aus dem Dateisystem noch manuell entfernen.';
|
||||||
$lng['question']['admin_domain_reallydelete'] = 'Wollen Sie die Domain %s wirklich löschen?';
|
$lng['question']['admin_domain_reallydelete'] = 'Wollen Sie die Domain %s wirklich löschen?';
|
||||||
$lng['question']['admin_domain_reallydisablesecuritysetting'] = 'Wollen Sie diese wichtigen Sicherheitseinstellungen (OpenBasedir und/oder SafeMode) wirklich deaktivieren?';
|
$lng['question']['admin_domain_reallydisablesecuritysetting'] = 'Wollen Sie diese wichtigen Sicherheitseinstellung (OpenBasedir) wirklich deaktivieren?';
|
||||||
$lng['question']['admin_admin_reallydelete'] = 'Wollen Sie den Admin %s wirklich löschen?<br />Alle Kunden und Domains werden Ihrem Account zugeteilt.';
|
$lng['question']['admin_admin_reallydelete'] = 'Wollen Sie den Admin %s wirklich löschen?<br />Alle Kunden und Domains werden Ihrem Account zugeteilt.';
|
||||||
$lng['question']['admin_template_reallydelete'] = 'Wollen Sie die Vorlage \'%s\' wirklich löschen?';
|
$lng['question']['admin_template_reallydelete'] = 'Wollen Sie die Vorlage \'%s\' wirklich löschen?';
|
||||||
$lng['question']['domains_reallydelete'] = 'Wollen Sie die Domain %s wirklich löschen?';
|
$lng['question']['domains_reallydelete'] = 'Wollen Sie die Domain %s wirklich löschen?';
|
||||||
|
|||||||
@@ -242,7 +242,7 @@ $lng['error']['domainname'] = $lng['domains']['domainname'];
|
|||||||
$lng['question']['question'] = 'Biztonsági kérdés';
|
$lng['question']['question'] = 'Biztonsági kérdés';
|
||||||
$lng['question']['admin_customer_reallydelete'] = 'Tényleg törölni akarja a(z) %s felhasználót? Ezt a lépést nem lehet visszavonni!';
|
$lng['question']['admin_customer_reallydelete'] = 'Tényleg törölni akarja a(z) %s felhasználót? Ezt a lépést nem lehet visszavonni!';
|
||||||
$lng['question']['admin_domain_reallydelete'] = 'Tényleg törölni akarja a(z) %s domain?';
|
$lng['question']['admin_domain_reallydelete'] = 'Tényleg törölni akarja a(z) %s domain?';
|
||||||
$lng['question']['admin_domain_reallydisablesecuritysetting'] = 'Tényleg hatástalanítani akarja ezeket a biztonsági beállításokat (OpenBasedir és/vagy SafeMode)?';
|
$lng['question']['admin_domain_reallydisablesecuritysetting'] = 'Tényleg hatástalanítani akarja ezeket a biztonsági beállításokat (OpenBasedir)?';
|
||||||
$lng['question']['admin_admin_reallydelete'] = 'Tényleg törölni akarja a(z) %s adminisztrátort? Minden hozzá tartozó felhasználó és domain a főadminisztrátorhoz lesz rendelve.';
|
$lng['question']['admin_admin_reallydelete'] = 'Tényleg törölni akarja a(z) %s adminisztrátort? Minden hozzá tartozó felhasználó és domain a főadminisztrátorhoz lesz rendelve.';
|
||||||
$lng['question']['admin_template_reallydelete'] = 'Tényleg törölni akarja a(z) \'%s\' sablont?';
|
$lng['question']['admin_template_reallydelete'] = 'Tényleg törölni akarja a(z) \'%s\' sablont?';
|
||||||
$lng['question']['domains_reallydelete'] = 'Tényleg törölni akarja a(z) %s domain-t?';
|
$lng['question']['domains_reallydelete'] = 'Tényleg törölni akarja a(z) %s domain-t?';
|
||||||
|
|||||||
@@ -246,7 +246,7 @@ $lng['error']['domainname'] = $lng['domains']['domainname'];
|
|||||||
$lng['question']['question'] = 'Domanda di sicurezza';
|
$lng['question']['question'] = 'Domanda di sicurezza';
|
||||||
$lng['question']['admin_customer_reallydelete'] = 'Sei sicuro di voler cancellare il cliente %s? Quest\'azione non potrà essere annullata!';
|
$lng['question']['admin_customer_reallydelete'] = 'Sei sicuro di voler cancellare il cliente %s? Quest\'azione non potrà essere annullata!';
|
||||||
$lng['question']['admin_domain_reallydelete'] = 'Sei sicuro di voler cancellare il dominio %s?';
|
$lng['question']['admin_domain_reallydelete'] = 'Sei sicuro di voler cancellare il dominio %s?';
|
||||||
$lng['question']['admin_domain_reallydisablesecuritysetting'] = 'Sei sicuro di voler disattivare queste opzioni di sicurezza (OpenBasedir e/o SafeMode)?';
|
$lng['question']['admin_domain_reallydisablesecuritysetting'] = 'Sei sicuro di voler disattivare queste opzioni di sicurezza (OpenBasedir)?';
|
||||||
$lng['question']['admin_admin_reallydelete'] = 'Sei sicuro di voler cancellare l\'admin %s? Tutti i clienti e i domini saranno affidati all\'amministratore principale.';
|
$lng['question']['admin_admin_reallydelete'] = 'Sei sicuro di voler cancellare l\'admin %s? Tutti i clienti e i domini saranno affidati all\'amministratore principale.';
|
||||||
$lng['question']['admin_template_reallydelete'] = 'Sei sicuro di voler cancellare il template \'%s\'?';
|
$lng['question']['admin_template_reallydelete'] = 'Sei sicuro di voler cancellare il template \'%s\'?';
|
||||||
$lng['question']['domains_reallydelete'] = 'Sei sicuro di voler cancellare il dominio %s?';
|
$lng['question']['domains_reallydelete'] = 'Sei sicuro di voler cancellare il dominio %s?';
|
||||||
|
|||||||
@@ -242,7 +242,7 @@ $lng['error']['domainname'] = $lng['domains']['domainname'];
|
|||||||
$lng['question']['question'] = 'Pytanie bezpieczeństwa';
|
$lng['question']['question'] = 'Pytanie bezpieczeństwa';
|
||||||
$lng['question']['admin_customer_reallydelete'] = 'Czy na pewno chcesz skasować klienta %s? Ta czynność jest niedwracalna!';
|
$lng['question']['admin_customer_reallydelete'] = 'Czy na pewno chcesz skasować klienta %s? Ta czynność jest niedwracalna!';
|
||||||
$lng['question']['admin_domain_reallydelete'] = 'Czy na pewno chcesz skasować domenę %s?';
|
$lng['question']['admin_domain_reallydelete'] = 'Czy na pewno chcesz skasować domenę %s?';
|
||||||
$lng['question']['admin_domain_reallydisablesecuritysetting'] = 'Czy na pewno chcesz deaktywowa<77> ustawienia bezpiecze<7A>stwa (OpenBasedir i/lub SafeMode)?';
|
$lng['question']['admin_domain_reallydisablesecuritysetting'] = 'Czy na pewno chcesz deaktywowa<77> ustawienia bezpiecze<7A>stwa (OpenBasedir)?';
|
||||||
$lng['question']['admin_admin_reallydelete'] = 'Czy na pewno chcesz skasować administratora %s? Wszystcy klienci i domeny zostaną przypisani do Twojego konta.';
|
$lng['question']['admin_admin_reallydelete'] = 'Czy na pewno chcesz skasować administratora %s? Wszystcy klienci i domeny zostaną przypisani do Twojego konta.';
|
||||||
$lng['question']['admin_template_reallydelete'] = 'Czy na pewno chcesz skasować szablon \'%s\'?';
|
$lng['question']['admin_template_reallydelete'] = 'Czy na pewno chcesz skasować szablon \'%s\'?';
|
||||||
$lng['question']['domains_reallydelete'] = 'Czy na pewno chcesz skasować domenę %s?';
|
$lng['question']['domains_reallydelete'] = 'Czy na pewno chcesz skasować domenę %s?';
|
||||||
|
|||||||
@@ -246,7 +246,7 @@ $lng['error']['domainname'] = $lng['domains']['domainname'];
|
|||||||
$lng['question']['question'] = 'Pergunta de segurança';
|
$lng['question']['question'] = 'Pergunta de segurança';
|
||||||
$lng['question']['admin_customer_reallydelete'] = 'Voce realmente deseja deletar o cliente %s? Este comando não poderá ser cancelado!';
|
$lng['question']['admin_customer_reallydelete'] = 'Voce realmente deseja deletar o cliente %s? Este comando não poderá ser cancelado!';
|
||||||
$lng['question']['admin_domain_reallydelete'] = 'Voce realmente deseja deletar o dominio %s?';
|
$lng['question']['admin_domain_reallydelete'] = 'Voce realmente deseja deletar o dominio %s?';
|
||||||
$lng['question']['admin_domain_reallydisablesecuritysetting'] = 'Voce realmente deseja desativar estas configurações de segurança (OpenBasedir e/ou SafeMode)?';
|
$lng['question']['admin_domain_reallydisablesecuritysetting'] = 'Voce realmente deseja desativar estas configurações de segurança (OpenBasedir)?';
|
||||||
$lng['question']['admin_admin_reallydelete'] = 'Voce realmente deseja deletar o administrador %s? Todos clientes e dominios serão realocados para o administrador principal.';
|
$lng['question']['admin_admin_reallydelete'] = 'Voce realmente deseja deletar o administrador %s? Todos clientes e dominios serão realocados para o administrador principal.';
|
||||||
$lng['question']['admin_template_reallydelete'] = 'Voce realmente deseja deletar o template \'%s\'?';
|
$lng['question']['admin_template_reallydelete'] = 'Voce realmente deseja deletar o template \'%s\'?';
|
||||||
$lng['question']['domains_reallydelete'] = 'Voce realmente deseja deletar o dominio %s?';
|
$lng['question']['domains_reallydelete'] = 'Voce realmente deseja deletar o dominio %s?';
|
||||||
|
|||||||
@@ -684,7 +684,7 @@ $lng['question']['admin_domain_reallydelete'] = 'Вы ув&#
|
|||||||
|
|
||||||
// Wollen Sie die Domain %s wirklich loeschen?
|
// Wollen Sie die Domain %s wirklich loeschen?
|
||||||
|
|
||||||
$lng['question']['admin_domain_reallydisablesecuritysetting'] = 'Вы уверены, что хотите отключить эти важные для безопасности настройки (OpenBasedir и/или SafeMode)?';
|
$lng['question']['admin_domain_reallydisablesecuritysetting'] = 'Вы уверены, что хотите отключить эти важные для безопасности настройки (OpenBasedir)?';
|
||||||
|
|
||||||
// ollen Sie diese wichtigen Sicherheitseinstellungen (OpenBasedir und/oder SafeMode) wirklich deaktivieren?
|
// ollen Sie diese wichtigen Sicherheitseinstellungen (OpenBasedir und/oder SafeMode) wirklich deaktivieren?
|
||||||
|
|
||||||
|
|||||||
@@ -242,7 +242,7 @@ $lng['error']['domainname'] = $lng['domains']['domainname'];
|
|||||||
$lng['question']['question'] = 'Ot<4F>zky bezpe<70>nosti';
|
$lng['question']['question'] = 'Ot<4F>zky bezpe<70>nosti';
|
||||||
$lng['question']['admin_customer_reallydelete'] = 'Naozaj chcete zmaza<7A> klienta %s? Nemo<6D>no vr<76>ti<74> sp<73>!';
|
$lng['question']['admin_customer_reallydelete'] = 'Naozaj chcete zmaza<7A> klienta %s? Nemo<6D>no vr<76>ti<74> sp<73>!';
|
||||||
$lng['question']['admin_domain_reallydelete'] = 'Naozaj chcete zmaza<7A> dom<6F>nu %s?';
|
$lng['question']['admin_domain_reallydelete'] = 'Naozaj chcete zmaza<7A> dom<6F>nu %s?';
|
||||||
$lng['question']['admin_domain_reallydisablesecuritysetting'] = 'Naozaj chcete deaktivova<76> tieto bezbe<62>nostn<74> nastavenias (OpenBasedir a/alebo SafeMode)?';
|
$lng['question']['admin_domain_reallydisablesecuritysetting'] = 'Naozaj chcete deaktivova<76> tieto bezbe<62>nostn<74> nastavenias (OpenBasedir)?';
|
||||||
$lng['question']['admin_admin_reallydelete'] = 'Naozaj chcete zmaza<7A> admina %s? Ka<4B>d<EFBFBD> klient a dom<6F>na bude preraden<65> hlavn<76>mu administr<74>torovi.';
|
$lng['question']['admin_admin_reallydelete'] = 'Naozaj chcete zmaza<7A> admina %s? Ka<4B>d<EFBFBD> klient a dom<6F>na bude preraden<65> hlavn<76>mu administr<74>torovi.';
|
||||||
$lng['question']['admin_template_reallydelete'] = 'Naozaj chcete zmaza<7A> <20>abl<62>nu \'%s\'?';
|
$lng['question']['admin_template_reallydelete'] = 'Naozaj chcete zmaza<7A> <20>abl<62>nu \'%s\'?';
|
||||||
$lng['question']['domains_reallydelete'] = 'Naozaj chcete zmaza<7A> dom<6F>nu %s?';
|
$lng['question']['domains_reallydelete'] = 'Naozaj chcete zmaza<7A> dom<6F>nu %s?';
|
||||||
|
|||||||
@@ -243,7 +243,7 @@ $lng['error']['domainname'] = $lng['domains']['domainname'];
|
|||||||
$lng['question']['question'] = 'Pregunta de seguridad';
|
$lng['question']['question'] = 'Pregunta de seguridad';
|
||||||
$lng['question']['admin_customer_reallydelete'] = '¿Usted realmente desea suprimir el %s del cliente? ATENCIÒN!todos los datos se perderán definitivamente, deberá borar los datos manualmente del sistema!';
|
$lng['question']['admin_customer_reallydelete'] = '¿Usted realmente desea suprimir el %s del cliente? ATENCIÒN!todos los datos se perderán definitivamente, deberá borar los datos manualmente del sistema!';
|
||||||
$lng['question']['admin_domain_reallydelete'] = '¿Usted realmente desea suprimir el dominio %s?';
|
$lng['question']['admin_domain_reallydelete'] = '¿Usted realmente desea suprimir el dominio %s?';
|
||||||
$lng['question']['admin_domain_reallydisablesecuritysetting'] = '¿Usted realmente desea desactivar estas configuraciones de seguridad (OpenBasedir y/o SafeMode)?';
|
$lng['question']['admin_domain_reallydisablesecuritysetting'] = '¿Usted realmente desea desactivar estas configuraciones de seguridad (OpenBasedir)?';
|
||||||
$lng['question']['admin_admin_reallydelete'] = '¿Usted realmente desea suprimir al administrador %s? todos los clientes y dominios serán reasignados al administrador principal.';
|
$lng['question']['admin_admin_reallydelete'] = '¿Usted realmente desea suprimir al administrador %s? todos los clientes y dominios serán reasignados al administrador principal.';
|
||||||
$lng['question']['admin_template_reallydelete'] = 'desea usted realmente suprimir el modelo \'%s\'?';
|
$lng['question']['admin_template_reallydelete'] = 'desea usted realmente suprimir el modelo \'%s\'?';
|
||||||
$lng['question']['domains_reallydelete'] = '¿desea Usted realmente suprimir el dominio %s?';
|
$lng['question']['domains_reallydelete'] = '¿desea Usted realmente suprimir el dominio %s?';
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* This file is part of the Froxlor project.
|
* This file is part of the Froxlor project.
|
||||||
* Copyright (c) 2003-2009 the SysCP Team (see authors).
|
* Copyright (c) 2003-2009 the SysCP Team (see authors).
|
||||||
* Copyright (c) 2010 the Froxlor Team (see authors).
|
* Copyright (c) 2010 the Froxlor Team (see authors).
|
||||||
@@ -243,7 +243,7 @@ $lng['error']['domainname'] = $lng['domains']['domainname'];
|
|||||||
$lng['question']['question'] = 'S<>kerhetsfr<66>ga';
|
$lng['question']['question'] = 'S<>kerhetsfr<66>ga';
|
||||||
$lng['question']['admin_customer_reallydelete'] = '<27>r du s<>ker p<> att du vill radera kunden %s? Om du v<>ljer att radera g<>r det inte att <20>ngra sig efter<65>t!';
|
$lng['question']['admin_customer_reallydelete'] = '<27>r du s<>ker p<> att du vill radera kunden %s? Om du v<>ljer att radera g<>r det inte att <20>ngra sig efter<65>t!';
|
||||||
$lng['question']['admin_domain_reallydelete'] = '<27>r du riktigt s<>ker p<> att du vill radera dom<6F>nen %s?';
|
$lng['question']['admin_domain_reallydelete'] = '<27>r du riktigt s<>ker p<> att du vill radera dom<6F>nen %s?';
|
||||||
$lng['question']['admin_domain_reallydisablesecuritysetting'] = '<27>r du riktigt s<>ker p<> att du vill avaktivera s<>kerhetsinst<73>llningarna (OpenBasedir and/or SafeMode)?';
|
$lng['question']['admin_domain_reallydisablesecuritysetting'] = '<27>r du riktigt s<>ker p<> att du vill avaktivera s<>kerhetsinst<73>llningarna (OpenBasedir)?';
|
||||||
$lng['question']['admin_admin_reallydelete'] = '<27>r du riktigt s<>ker p<> att du vill radera adminkontot %s? Alla kunder och dom<6F>ner kommer att flyttas till ditt konto ist<73>llet.';
|
$lng['question']['admin_admin_reallydelete'] = '<27>r du riktigt s<>ker p<> att du vill radera adminkontot %s? Alla kunder och dom<6F>ner kommer att flyttas till ditt konto ist<73>llet.';
|
||||||
$lng['question']['admin_template_reallydelete'] = '<27>r du riktigt s<>ker p<> att du vill radera mallen \'%s\'?';
|
$lng['question']['admin_template_reallydelete'] = '<27>r du riktigt s<>ker p<> att du vill radera mallen \'%s\'?';
|
||||||
$lng['question']['domains_reallydelete'] = '<27>r du riktigt s<>ker p<> att du vill radera dom<6F>nen %s?';
|
$lng['question']['domains_reallydelete'] = '<27>r du riktigt s<>ker p<> att du vill radera dom<6F>nen %s?';
|
||||||
|
|||||||
Reference in New Issue
Block a user