removed unused htpasswd-htaccess-remover script; removed non-existing language-string-indeces from langfile
Signed-off-by: Michael Kaufmann (d00p) <d00p@froxlor.org>
This commit is contained in:
@@ -1,106 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
/**
|
|
||||||
* This file is part of the SysCP project.
|
|
||||||
* Copyright (c) 2003-2007 the SysCP Team (see authors).
|
|
||||||
*
|
|
||||||
* For the full copyright and license information, please view the COPYING
|
|
||||||
* file that was distributed with this source code. You can also view the
|
|
||||||
* COPYING file online at http://files.syscp.org/misc/COPYING.txt
|
|
||||||
*
|
|
||||||
* @copyright (c) the authors
|
|
||||||
* @author Michael Duergner <michael@duergner.com>
|
|
||||||
* @license GPLv2 http://files.syscp.org/misc/COPYING.txt
|
|
||||||
* @package System
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
if(@php_sapi_name() != 'cli'
|
|
||||||
&& @php_sapi_name() != 'cgi'
|
|
||||||
&& @php_sapi_name() != 'cgi-fcgi')
|
|
||||||
{
|
|
||||||
die('This script will only work in the shell.');
|
|
||||||
}
|
|
||||||
|
|
||||||
$pathtophpfiles = '/var/www/syscp';
|
|
||||||
$filename = 'htpasswd-htaccess-remover.php';
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Includes the Usersettings eg. MySQL-Username/Passwort etc.
|
|
||||||
*/
|
|
||||||
|
|
||||||
require ("$pathtophpfiles/lib/userdata.inc.php");
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Includes the MySQL-Tabledefinitions etc.
|
|
||||||
*/
|
|
||||||
|
|
||||||
require ("$pathtophpfiles/lib/tables.inc.php");
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Includes the MySQL-Connection-Class
|
|
||||||
*/
|
|
||||||
|
|
||||||
require ("$pathtophpfiles/lib/class_mysqldb.php");
|
|
||||||
$debugMsg[] = 'Database Class has been loaded';
|
|
||||||
$db = new db($sql['host'], $sql['user'], $sql['password'], $sql['db']);
|
|
||||||
$db_root = new db($sql['host'], $sql['root_user'], $sql['root_password'], '');
|
|
||||||
|
|
||||||
if($db->link_id == 0
|
|
||||||
|| $db_root->link_id == 0)
|
|
||||||
{
|
|
||||||
/**
|
|
||||||
* Do not proceed further if no database connection could be established (either normal or root)
|
|
||||||
*/
|
|
||||||
|
|
||||||
die('Cant connect to mysqlserver. Please check userdata.inc.php! Exiting...');
|
|
||||||
}
|
|
||||||
|
|
||||||
unset($sql['password']);
|
|
||||||
unset($db->password);
|
|
||||||
$result = $db->query("SELECT `settingid`, `settinggroup`, `varname`, `value` FROM `" . TABLE_PANEL_SETTINGS . "`");
|
|
||||||
|
|
||||||
while($row = $db->fetch_array($result))
|
|
||||||
{
|
|
||||||
$settings["$row[settinggroup]"]["$row[varname]"] = $row['value'];
|
|
||||||
}
|
|
||||||
|
|
||||||
unset($row);
|
|
||||||
unset($result);
|
|
||||||
|
|
||||||
if(!isset($settings['panel']['version'])
|
|
||||||
|| $settings['panel']['version'] != $version)
|
|
||||||
{
|
|
||||||
/**
|
|
||||||
* Do not proceed further if the Database version is not the same as the script version
|
|
||||||
*/
|
|
||||||
|
|
||||||
die('Version of File doesnt match Version of Database. Exiting...');
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Includes the Functions
|
|
||||||
*/
|
|
||||||
|
|
||||||
require ("$pathtophpfiles/lib/functions.php");
|
|
||||||
$result = $db->query('SELECT * FROM `' . TABLE_PANEL_HTACCESS . '` ');
|
|
||||||
|
|
||||||
while($row = $db->fetch_array($result))
|
|
||||||
{
|
|
||||||
if(file_exists($row['path'] . '.htaccess'))
|
|
||||||
{
|
|
||||||
unlink($row['path'] . '.htaccess');
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
$result = $db->query('SELECT * FROM `' . TABLE_PANEL_HTPASSWDS . '` ');
|
|
||||||
|
|
||||||
while($row = $db->fetch_array($result))
|
|
||||||
{
|
|
||||||
if(file_exists($row['path'] . '.htpasswd'))
|
|
||||||
{
|
|
||||||
unlink($row['path'] . '.htpasswd');
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
?>
|
|
||||||
@@ -475,10 +475,6 @@ $lng['question']['admin_counters_reallyupdate'] = 'Opravdu chcete přepočítat
|
|||||||
$lng['panel']['pathDescription'] = 'Pokud adresář neexistuje, bude vytvořen automaticky.';
|
$lng['panel']['pathDescription'] = 'Pokud adresář neexistuje, bude vytvořen automaticky.';
|
||||||
|
|
||||||
// ADDED IN 1.2.16-svn6
|
// ADDED IN 1.2.16-svn6
|
||||||
|
|
||||||
$lng['mails']['trafficninetypercent']['mailbody'] = 'Vážený uživateli {NAME},\n\nPoužil jste {TRAFFICUSED} MB z Vámi dostupných {TRAFFIC} MB přenosů.\nTo je více jak 90%.\n\nPřejeme hezký den, váš správce';
|
|
||||||
$lng['mails']['trafficninetypercent']['subject'] = 'Dosahujíc vašeho limitu přenosů';
|
|
||||||
$lng['admin']['templates']['trafficninetypercent'] = 'Upozorňovací mail pro zákazníky, pokud vyčerpají 90% z přenosů';
|
|
||||||
$lng['admin']['templates']['TRAFFIC'] = 'Nahrazeno přenosy, které byly přiděleny uživateli.';
|
$lng['admin']['templates']['TRAFFIC'] = 'Nahrazeno přenosy, které byly přiděleny uživateli.';
|
||||||
$lng['admin']['templates']['TRAFFICUSED'] = 'Nahrazeno přenosy, které byly vyčerpány zákazníkem.';
|
$lng['admin']['templates']['TRAFFICUSED'] = 'Nahrazeno přenosy, které byly vyčerpány zákazníkem.';
|
||||||
|
|
||||||
|
|||||||
@@ -453,10 +453,6 @@ $lng['question']['admin_counters_reallyupdate'] = 'Weet u zeker dat u gebruikte
|
|||||||
$lng['panel']['pathDescription'] = 'Indien de map niet bestaat wordt deze automatisch aangemaakt.<br /><br />Indien u wilt doorverwijzen naar een ander domein dient deze te beginnen met http:// of https://';
|
$lng['panel']['pathDescription'] = 'Indien de map niet bestaat wordt deze automatisch aangemaakt.<br /><br />Indien u wilt doorverwijzen naar een ander domein dient deze te beginnen met http:// of https://';
|
||||||
|
|
||||||
// ADDED IN 1.2.16-svn6
|
// ADDED IN 1.2.16-svn6
|
||||||
|
|
||||||
$lng['mails']['trafficninetypercent']['mailbody'] = 'Beste {NAME},\n\nU hebt {TRAFFICUSED} MB van de beschikbare {TRAFFIC} MB verbruikt.\nDit is meer dan 90%.\n\nMet vriendelijke groet, uw beheerder';
|
|
||||||
$lng['mails']['trafficninetypercent']['subject'] = 'Limiet dataverkeer bereikt';
|
|
||||||
$lng['admin']['templates']['trafficninetypercent'] = 'E-mail ter notificatie aan klanten indien zij 90 procent van het dataverkeer is verbruikt';
|
|
||||||
$lng['admin']['templates']['TRAFFIC'] = 'Wordt vervangen door aan klant toegewezen dataverkeer.';
|
$lng['admin']['templates']['TRAFFIC'] = 'Wordt vervangen door aan klant toegewezen dataverkeer.';
|
||||||
$lng['admin']['templates']['TRAFFICUSED'] = 'Wordt vervangen door het verbruikte dataverkeer.';
|
$lng['admin']['templates']['TRAFFICUSED'] = 'Wordt vervangen door het verbruikte dataverkeer.';
|
||||||
|
|
||||||
@@ -708,9 +704,6 @@ $lng['logger']['user'] = 'Gebruiker';
|
|||||||
$lng['logger']['truncate'] = 'Log legen';
|
$lng['logger']['truncate'] = 'Log legen';
|
||||||
|
|
||||||
// ADDED IN 1.2.19-svn7
|
// ADDED IN 1.2.19-svn7
|
||||||
|
|
||||||
$lng['serversettings']['ssl']['use_ssl'] = 'Gebruik SSL';
|
|
||||||
$lng['serversettings']['ssl']['ssl_cert_file'] = 'Pad naar SSL-certificaat';
|
|
||||||
$lng['serversettings']['ssl']['openssl_cnf'] = 'Standaardinstellingen certificaat';
|
$lng['serversettings']['ssl']['openssl_cnf'] = 'Standaardinstellingen certificaat';
|
||||||
$lng['panel']['reseller'] = 'wederverkoper';
|
$lng['panel']['reseller'] = 'wederverkoper';
|
||||||
$lng['panel']['admin'] = 'beheerder';
|
$lng['panel']['admin'] = 'beheerder';
|
||||||
@@ -810,11 +803,6 @@ $lng['pwdreminder']['success'] = 'Wachtwoord opnieuw ingesteld.<br />U ontvangt
|
|||||||
$lng['serversettings']['allow_password_reset']['title'] = 'Klanten toestaan hun wachtwoord opnieuw in te stellen';
|
$lng['serversettings']['allow_password_reset']['title'] = 'Klanten toestaan hun wachtwoord opnieuw in te stellen';
|
||||||
$lng['pwdreminder']['notallowed'] = 'Het opnieuw instellen van wachtwoorden is uitgeschakeld';
|
$lng['pwdreminder']['notallowed'] = 'Het opnieuw instellen van wachtwoorden is uitgeschakeld';
|
||||||
|
|
||||||
// ADDED IN 1.2.19-svn20
|
|
||||||
|
|
||||||
$lng['serversettings']['awstats_updateall_command']['title'] = 'Pad naar "awstats_updateall.pl"';
|
|
||||||
$lng['serversettings']['awstats_updateall_command']['description'] = 'bijvoorbeeld /usr/bin/awstats_updateall.pl';
|
|
||||||
|
|
||||||
// ADDED IN 1.2.19-svn21
|
// ADDED IN 1.2.19-svn21
|
||||||
|
|
||||||
$lng['customer']['title'] = 'Titel';
|
$lng['customer']['title'] = 'Titel';
|
||||||
@@ -1123,9 +1111,6 @@ $lng['error']['customerdoesntexist'] = 'De gekozen klant bestaat niet.';
|
|||||||
$lng['error']['admindoesntexist'] = 'De gekozen beheerder bestaat niet.';
|
$lng['error']['admindoesntexist'] = 'De gekozen beheerder bestaat niet.';
|
||||||
|
|
||||||
// ADDED IN 1.2.19-svn37
|
// ADDED IN 1.2.19-svn37
|
||||||
|
|
||||||
$lng['serversettings']['system_realtime_port']['title'] = 'Poort voor realtime Froxlor';
|
|
||||||
$lng['serversettings']['system_realtime_port']['description'] = 'Froxlor maakt verbinding met deze poort wanneer een nieuwe taak gepland wordt. Indien deze waarde 0 (nul) is, is deze uitgeschakeld.<br />Zie ook: <a target="blank" href="http://redmine.froxlor.org/projects/froxlor/wiki/En-realtime">Make Froxlor work in realtime (Froxlor Wiki)</a>';
|
|
||||||
$lng['serversettings']['session_allow_multiple_login']['title'] = 'Meerdere logins toestaan';
|
$lng['serversettings']['session_allow_multiple_login']['title'] = 'Meerdere logins toestaan';
|
||||||
$lng['serversettings']['session_allow_multiple_login']['description'] = 'Indien dit is ingeschakeld kan een klant meerdere malen tegelijkertijd inloggen.';
|
$lng['serversettings']['session_allow_multiple_login']['description'] = 'Indien dit is ingeschakeld kan een klant meerdere malen tegelijkertijd inloggen.';
|
||||||
$lng['serversettings']['panel_allow_domain_change_admin']['title'] = 'Het verplaatsen van domeinen tussen beheerders toestaan';
|
$lng['serversettings']['panel_allow_domain_change_admin']['title'] = 'Het verplaatsen van domeinen tussen beheerders toestaan';
|
||||||
@@ -1159,8 +1144,6 @@ $lng['admin']['ipsandports']['webserverssldomainconfig'] = 'SSL-configuratie web
|
|||||||
$lng['admin']['ipsandports']['ssl_key_file'] = 'Pad naar SSL keyfile';
|
$lng['admin']['ipsandports']['ssl_key_file'] = 'Pad naar SSL keyfile';
|
||||||
$lng['admin']['ipsandports']['ssl_ca_file'] = 'Pad naar SSL CA certificaat';
|
$lng['admin']['ipsandports']['ssl_ca_file'] = 'Pad naar SSL CA certificaat';
|
||||||
$lng['admin']['ipsandports']['default_vhostconf_domain'] = 'Standaard VHost-instellingen voor iedere domeincontainer';
|
$lng['admin']['ipsandports']['default_vhostconf_domain'] = 'Standaard VHost-instellingen voor iedere domeincontainer';
|
||||||
$lng['serversettings']['ssl']['ssl_key_file'] = 'Pad naar SSL keyfile';
|
|
||||||
$lng['serversettings']['ssl']['ssl_ca_file'] = 'Pad naar SSL CA certificaat';
|
|
||||||
|
|
||||||
$lng['error']['usernamealreadyexists'] = 'De gebruikersnaam %s is reeds in gebruik.';
|
$lng['error']['usernamealreadyexists'] = 'De gebruikersnaam %s is reeds in gebruik.';
|
||||||
|
|
||||||
@@ -1424,9 +1407,6 @@ $lng['serversettings']['mod_fcgid']['defaultini_ownvhost'] = 'Standaard configur
|
|||||||
$lng['serversettings']['awstats_icons']['title'] = 'Pad naar iconen AWstats icons';
|
$lng['serversettings']['awstats_icons']['title'] = 'Pad naar iconen AWstats icons';
|
||||||
$lng['serversettings']['awstats_icons']['description'] = 'bijvoorbeeld /usr/share/awstats/htdocs/icon/';
|
$lng['serversettings']['awstats_icons']['description'] = 'bijvoorbeeld /usr/share/awstats/htdocs/icon/';
|
||||||
|
|
||||||
// ADDED IN FROXLOR 0.9.14-svn4
|
|
||||||
$lng['admin']['ipsandports']['ssl_cert_chainfile'] = 'Pad naar SSL CertificateChainFile';
|
|
||||||
|
|
||||||
// ADDED IN FROXLOR 0.9.14-svn5
|
// ADDED IN FROXLOR 0.9.14-svn5
|
||||||
$lng['admin']['ipsandports']['docroot']['title'] = 'Aangepaste docroot (leeg = verwijzing naar Froxlor)';
|
$lng['admin']['ipsandports']['docroot']['title'] = 'Aangepaste docroot (leeg = verwijzing naar Froxlor)';
|
||||||
$lng['admin']['ipsandports']['docroot']['description'] = 'U kunt voor deze IP/poortcombinatie een aangepaste document-root opgeven.<br /><strong>LET OP:</strong> Pas op wat u hier neerzet!';
|
$lng['admin']['ipsandports']['docroot']['description'] = 'U kunt voor deze IP/poortcombinatie een aangepaste document-root opgeven.<br /><strong>LET OP:</strong> Pas op wat u hier neerzet!';
|
||||||
|
|||||||
@@ -486,10 +486,6 @@ $lng['question']['admin_counters_reallyupdate'] = 'Etes-vous sûr de vouloir rec
|
|||||||
$lng['panel']['pathDescription'] = 'Si le dossier n\'existe pas, il sera créé automatiquement.';
|
$lng['panel']['pathDescription'] = 'Si le dossier n\'existe pas, il sera créé automatiquement.';
|
||||||
|
|
||||||
// ADDED IN 1.2.16-svn6
|
// ADDED IN 1.2.16-svn6
|
||||||
|
|
||||||
$lng['mails']['trafficninetypercent']['mailbody'] = 'Bonjour {FIRSTNAME} {NAME},\n\nVous utilisez {TRAFFICUSED} Mo sur {TRAFFIC} Mo de votre quota de trafic.\nCe dernier est à plus de 90%.\n\nCordialement,\nL\'équipe Froxlor.';
|
|
||||||
$lng['mails']['trafficninetypercent']['subject'] = 'Limite de trafic bientôt atteinte.';
|
|
||||||
$lng['admin']['templates']['trafficninetypercent'] = 'E-mail de notification pour les utilisateurs, lorsque leur taux de trafic atteint plus de 90%.';
|
|
||||||
$lng['admin']['templates']['TRAFFIC'] = 'Sera remplacé par le taux de trafic qui a été attribué à l\'utilisateur.';
|
$lng['admin']['templates']['TRAFFIC'] = 'Sera remplacé par le taux de trafic qui a été attribué à l\'utilisateur.';
|
||||||
$lng['admin']['templates']['TRAFFICUSED'] = 'Sera remplacé par le taux de trafic qui a été consommé par l\'utilisateur.';
|
$lng['admin']['templates']['TRAFFICUSED'] = 'Sera remplacé par le taux de trafic qui a été consommé par l\'utilisateur.';
|
||||||
|
|
||||||
@@ -747,9 +743,6 @@ $lng['logger']['user'] = 'Utilisateur';
|
|||||||
$lng['logger']['truncate'] = 'Vider les logs';
|
$lng['logger']['truncate'] = 'Vider les logs';
|
||||||
|
|
||||||
// ADDED IN 1.2.19-svn7
|
// ADDED IN 1.2.19-svn7
|
||||||
|
|
||||||
$lng['serversettings']['ssl']['use_ssl'] = 'Utiliser SSL ?';
|
|
||||||
$lng['serversettings']['ssl']['ssl_cert_file'] = 'Oû est situé le fichier de certificat ?';
|
|
||||||
$lng['serversettings']['ssl']['openssl_cnf'] = 'Paramètres par défaut pour créer le certificat';
|
$lng['serversettings']['ssl']['openssl_cnf'] = 'Paramètres par défaut pour créer le certificat';
|
||||||
$lng['panel']['reseller'] = 'revendeur';
|
$lng['panel']['reseller'] = 'revendeur';
|
||||||
$lng['panel']['admin'] = 'administrateur';
|
$lng['panel']['admin'] = 'administrateur';
|
||||||
|
|||||||
@@ -485,10 +485,6 @@ $lng['question']['admin_counters_reallyupdate'] = 'Sei sicuro di voler ricacolar
|
|||||||
$lng['panel']['pathDescription'] = 'Se la cartella non esiste, viene creata automaticamente.';
|
$lng['panel']['pathDescription'] = 'Se la cartella non esiste, viene creata automaticamente.';
|
||||||
|
|
||||||
// ADDED IN 1.2.16-svn6
|
// ADDED IN 1.2.16-svn6
|
||||||
|
|
||||||
$lng['mails']['trafficninetypercent']['mailbody'] = 'Salve {NAME},\n\nHai usato {TRAFFICUSED} MB su {TRAFFIC} MB di traffico disponibile.\nPiù del 90%.\n\nCordiali Saluti, Amministratore.';
|
|
||||||
$lng['mails']['trafficninetypercent']['subject'] = 'Hai raggiunto il limite di Traffico';
|
|
||||||
$lng['admin']['templates']['trafficninetypercent'] = 'Notifica email per i clienti che hanno superato il 90% del traffico';
|
|
||||||
$lng['admin']['templates']['TRAFFIC'] = 'Sostituito con il traffico che è stato assegnato al cliente.';
|
$lng['admin']['templates']['TRAFFIC'] = 'Sostituito con il traffico che è stato assegnato al cliente.';
|
||||||
$lng['admin']['templates']['TRAFFICUSED'] = 'Sostituito con il traffico che è stato usato dal cliente.';
|
$lng['admin']['templates']['TRAFFICUSED'] = 'Sostituito con il traffico che è stato usato dal cliente.';
|
||||||
|
|
||||||
@@ -738,9 +734,6 @@ $lng['logger']['user'] = 'Utente';
|
|||||||
$lng['logger']['truncate'] = 'Log vuoto';
|
$lng['logger']['truncate'] = 'Log vuoto';
|
||||||
|
|
||||||
// ADDED IN 1.2.19-svn7
|
// ADDED IN 1.2.19-svn7
|
||||||
|
|
||||||
$lng['serversettings']['ssl']['use_ssl'] = 'Usa SSL';
|
|
||||||
$lng['serversettings']['ssl']['ssl_cert_file'] = 'Percorso del certificato SSL (SSL certificate)';
|
|
||||||
$lng['serversettings']['ssl']['openssl_cnf'] = 'Defaults per la creazione del file Cert';
|
$lng['serversettings']['ssl']['openssl_cnf'] = 'Defaults per la creazione del file Cert';
|
||||||
$lng['panel']['reseller'] = 'rivenditore';
|
$lng['panel']['reseller'] = 'rivenditore';
|
||||||
$lng['panel']['admin'] = 'amministratore';
|
$lng['panel']['admin'] = 'amministratore';
|
||||||
@@ -1145,9 +1138,6 @@ $lng['error']['customerdoesntexist'] = 'Il cliente che si è selezionato non esi
|
|||||||
$lng['error']['admindoesntexist'] = 'L\'amministratore che si è selezionato non esiste.';
|
$lng['error']['admindoesntexist'] = 'L\'amministratore che si è selezionato non esiste.';
|
||||||
|
|
||||||
// ADDED IN 1.2.19-svn37
|
// ADDED IN 1.2.19-svn37
|
||||||
|
|
||||||
$lng['serversettings']['system_realtime_port']['title'] = 'Porta per il realtime di Froxlor';
|
|
||||||
$lng['serversettings']['system_realtime_port']['description'] = 'Froxlor si connette a questa porta in localhost ogni volta che un nuovo task cron viene programmato. Se il valore è 0 (zero), questa funzionalità è disabilitata.<br />Vedi anche: <a target="blank" href="http://redmine.froxlor.org/projects/froxlor/wiki/En-realtime">Make Froxlor work in realtime (Froxlor Wiki)</a>';
|
|
||||||
$lng['serversettings']['session_allow_multiple_login']['title'] = 'Permettere login multipli';
|
$lng['serversettings']['session_allow_multiple_login']['title'] = 'Permettere login multipli';
|
||||||
$lng['serversettings']['session_allow_multiple_login']['description'] = 'Se attivato un utente può accedere più volte.';
|
$lng['serversettings']['session_allow_multiple_login']['description'] = 'Se attivato un utente può accedere più volte.';
|
||||||
$lng['serversettings']['panel_allow_domain_change_admin']['title'] = 'Permettere di spostare domini tra gli amministratori';
|
$lng['serversettings']['panel_allow_domain_change_admin']['title'] = 'Permettere di spostare domini tra gli amministratori';
|
||||||
@@ -1185,8 +1175,6 @@ $lng['admin']['ipsandports']['webserverssldomainconfig'] = 'COnfigura SSL Webser
|
|||||||
$lng['admin']['ipsandports']['ssl_key_file'] = 'Percorso al Keyfile SSL';
|
$lng['admin']['ipsandports']['ssl_key_file'] = 'Percorso al Keyfile SSL';
|
||||||
$lng['admin']['ipsandports']['ssl_ca_file'] = 'Percorso al CA certificate SSL';
|
$lng['admin']['ipsandports']['ssl_ca_file'] = 'Percorso al CA certificate SSL';
|
||||||
$lng['admin']['ipsandports']['default_vhostconf_domain'] = 'Impostazioni predefinite vhost per ogni contenitore di dominio';
|
$lng['admin']['ipsandports']['default_vhostconf_domain'] = 'Impostazioni predefinite vhost per ogni contenitore di dominio';
|
||||||
$lng['serversettings']['ssl']['ssl_key_file'] = 'Percorso al Keyfile SSL';
|
|
||||||
$lng['serversettings']['ssl']['ssl_ca_file'] = 'Percorso al CA certificate SSL';
|
|
||||||
|
|
||||||
$lng['error']['usernamealreadyexists'] = 'Esiste già il nome utente: %s';
|
$lng['error']['usernamealreadyexists'] = 'Esiste già il nome utente: %s';
|
||||||
|
|
||||||
@@ -1309,7 +1297,6 @@ $lng['ftp']['account_edit'] = 'Modifica acocunt FTP';
|
|||||||
$lng['ftp']['editpassdescription'] = 'Imposta una nuova password o lascia vuoto per non cambiarla.';
|
$lng['ftp']['editpassdescription'] = 'Imposta una nuova password o lascia vuoto per non cambiarla.';
|
||||||
$lng['customer']['sendinfomail'] = 'Inviami i dati via email';
|
$lng['customer']['sendinfomail'] = 'Inviami i dati via email';
|
||||||
$lng['customer']['mysql_add']['infomail_subject'] = '[Froxlor] Nuovo database creato';
|
$lng['customer']['mysql_add']['infomail_subject'] = '[Froxlor] Nuovo database creato';
|
||||||
$lng['customer']['mysql_add']['infomail_body']['pma'] = "\nPuoi accedere ai database da phpMyAdmin all\'indirizzo {URI}\n";
|
|
||||||
$lng['customer']['mysql_add']['infomail_body']['main'] = "Hello {CUST_NAME},\n\nhai appena aggiunto un nuovo database. Ecco le informazioni inserite:\n\nNome database: {DB_NAME}\nPassword: {DB_PASS}\nDescrizione: {DB_DESC}\nDB-Hostname: {DB_SRV}\n{PMA_URI}\nCordiali Saluti, Team Froxlor";
|
$lng['customer']['mysql_add']['infomail_body']['main'] = "Hello {CUST_NAME},\n\nhai appena aggiunto un nuovo database. Ecco le informazioni inserite:\n\nNome database: {DB_NAME}\nPassword: {DB_PASS}\nDescrizione: {DB_DESC}\nDB-Hostname: {DB_SRV}\n{PMA_URI}\nCordiali Saluti, Team Froxlor";
|
||||||
$lng['error']['domains_cantdeletedomainwithapsinstances'] = 'Non è possibile eliminare un dominio che è utilizzato da un pacchetto installato da APS. È necessario disinstallare prima il pacchetto APS.';
|
$lng['error']['domains_cantdeletedomainwithapsinstances'] = 'Non è possibile eliminare un dominio che è utilizzato da un pacchetto installato da APS. È necessario disinstallare prima il pacchetto APS.';
|
||||||
$lng['serversettings']['awstats_path'] = 'Percorso a AWStats \'awstats_buildstaticpages.pl\'';
|
$lng['serversettings']['awstats_path'] = 'Percorso a AWStats \'awstats_buildstaticpages.pl\'';
|
||||||
@@ -1462,9 +1449,6 @@ $lng['serversettings']['mod_fcgid']['defaultini_ownvhost'] = 'Configurazione di
|
|||||||
$lng['serversettings']['awstats_icons']['title'] = 'Percorso della cartella delle icone di AWstats';
|
$lng['serversettings']['awstats_icons']['title'] = 'Percorso della cartella delle icone di AWstats';
|
||||||
$lng['serversettings']['awstats_icons']['description'] = 'es. /usr/share/awstats/htdocs/icon/';
|
$lng['serversettings']['awstats_icons']['description'] = 'es. /usr/share/awstats/htdocs/icon/';
|
||||||
|
|
||||||
// ADDED IN FROXLOR 0.9.14-svn4
|
|
||||||
$lng['admin']['ipsandports']['ssl_cert_chainfile'] = 'Percorso SSL CertificateChainFile';
|
|
||||||
|
|
||||||
// ADDED IN FROXLOR 0.9.14-svn5
|
// ADDED IN FROXLOR 0.9.14-svn5
|
||||||
$lng['admin']['ipsandports']['docroot']['title'] = 'Imposta Cartella principale (vuoto = va in Froxlor)';
|
$lng['admin']['ipsandports']['docroot']['title'] = 'Imposta Cartella principale (vuoto = va in Froxlor)';
|
||||||
$lng['admin']['ipsandports']['docroot']['description'] = 'Qui puoi definire una tua cartella principale (la destinazione di una richiesta) per questa combinazione IP/Porta.<br /><strong>ATTENZIONE:</strong> Fai molta attenzione a quello che scrivi qui!';
|
$lng['admin']['ipsandports']['docroot']['description'] = 'Qui puoi definire una tua cartella principale (la destinazione di una richiesta) per questa combinazione IP/Porta.<br /><strong>ATTENZIONE:</strong> Fai molta attenzione a quello che scrivi qui!';
|
||||||
|
|||||||
@@ -438,13 +438,8 @@ $lng['question']['ticket_reallydelete'] = 'Czy na pewno chcesz skasowac zgło
|
|||||||
$lng['question']['ticket_reallydeletecat'] = 'Czy na pewno chcesz skasowac kategorię "%s"?';
|
$lng['question']['ticket_reallydeletecat'] = 'Czy na pewno chcesz skasowac kategorię "%s"?';
|
||||||
$lng['admin']['ticketsettings'] = 'Ustawienia wsparcia technicznego';
|
$lng['admin']['ticketsettings'] = 'Ustawienia wsparcia technicznego';
|
||||||
$lng['admin']['archivelastrun'] = 'Ostatnia archiwizacja zgłoszeń pomocy technicznej';
|
$lng['admin']['archivelastrun'] = 'Ostatnia archiwizacja zgłoszeń pomocy technicznej';
|
||||||
$lng['serversettings']['ticket']['worktime_begin'] = 'Początek czasu wsparcia technicznego (hh:mm)';
|
|
||||||
$lng['serversettings']['ticket']['worktime_begin_desc'] = 'Początek czasu od kiedy wsparcie techniczne jest dostępne';
|
|
||||||
$lng['serversettings']['ticket']['worktime_end'] = 'Koniec czasu wsparcia technicznego (hh:mm)';
|
|
||||||
$lng['serversettings']['ticket']['worktime_end_desc'] = 'Koniec czasu do kiedy wsparcie techniczne jest dostępne';
|
|
||||||
$lng['serversettings']['ticket']['worktime_sat'] = 'Dział pomocy technicznej dostępny w soboty?';
|
$lng['serversettings']['ticket']['worktime_sat'] = 'Dział pomocy technicznej dostępny w soboty?';
|
||||||
$lng['serversettings']['ticket']['worktime_sun'] = 'Dział pomocy technicznej dostępny w niedziele?';
|
$lng['serversettings']['ticket']['worktime_sun'] = 'Dział pomocy technicznej dostępny w niedziele?';
|
||||||
$lng['serversettings']['ticket']['worktime_all'] = 'Dział pomocy technicznej działa bez przerwy';
|
|
||||||
$lng['customer']['tickets'] = 'Zgłoszenia wsparcia technicznego';
|
$lng['customer']['tickets'] = 'Zgłoszenia wsparcia technicznego';
|
||||||
|
|
||||||
// ADDED IN 1.2.18-svn4
|
// ADDED IN 1.2.18-svn4
|
||||||
@@ -454,14 +449,7 @@ $lng['serversettings']['ticket']['enable'] = 'Wspracie techniczne włączo
|
|||||||
$lng['serversettings']['ticket']['concurrentlyopen'] = 'Ile zgłoszeń może być otwartych w jednym czasie?';
|
$lng['serversettings']['ticket']['concurrentlyopen'] = 'Ile zgłoszeń może być otwartych w jednym czasie?';
|
||||||
$lng['ticket']['awaitingticketreply'] = 'Masz %s zgłoszeń do pomocy technicznej';
|
$lng['ticket']['awaitingticketreply'] = 'Masz %s zgłoszeń do pomocy technicznej';
|
||||||
|
|
||||||
// ADDED IN 1.2.19-svn1
|
|
||||||
|
|
||||||
$lng['serversettings']['mod_fcgid']['tmpdir'] = 'Katalog plików tymczasowych';
|
|
||||||
|
|
||||||
// ADDED IN 1.2.19-svn3
|
// ADDED IN 1.2.19-svn3
|
||||||
|
|
||||||
$lng['serversettings']['ticket']['reset_cycle'] = 'Okresowe reset licznika użycia zgłoszeń pomocy technicznej';
|
|
||||||
$lng['serversettings']['ticket']['reset_cycle_desc'] = 'Resetowanie zgłoszeń pomocy technicznej powoduje ustawienie licznika na wartość 0 przy każdym cyklu';
|
|
||||||
$lng['admin']['tickets']['daily'] = 'Dziennie';
|
$lng['admin']['tickets']['daily'] = 'Dziennie';
|
||||||
$lng['admin']['tickets']['weekly'] = 'Wygodniowo';
|
$lng['admin']['tickets']['weekly'] = 'Wygodniowo';
|
||||||
$lng['admin']['tickets']['monthly'] = 'Miesięcznie';
|
$lng['admin']['tickets']['monthly'] = 'Miesięcznie';
|
||||||
@@ -501,7 +489,6 @@ $lng['serversettings']['logger']['enable'] = 'Logowanie włączone/wył
|
|||||||
$lng['serversettings']['logger']['severity'] = 'Poziom logowania';
|
$lng['serversettings']['logger']['severity'] = 'Poziom logowania';
|
||||||
$lng['admin']['logger']['normal'] = 'normalny';
|
$lng['admin']['logger']['normal'] = 'normalny';
|
||||||
$lng['admin']['logger']['paranoid'] = 'paranoidalny';
|
$lng['admin']['logger']['paranoid'] = 'paranoidalny';
|
||||||
$lng['serversettings']['logger']['types'] = 'Rodzaj(e) logów';
|
|
||||||
$lng['error']['logerror'] = 'System logowania błędów: %s';
|
$lng['error']['logerror'] = 'System logowania błędów: %s';
|
||||||
$lng['question']['logger_reallytruncate'] = 'Czy na pewno chcesz wyszyścić tabelę "%s"?';
|
$lng['question']['logger_reallytruncate'] = 'Czy na pewno chcesz wyszyścić tabelę "%s"?';
|
||||||
$lng['admin']['loggersystem'] = 'System logowania';
|
$lng['admin']['loggersystem'] = 'System logowania';
|
||||||
@@ -513,9 +500,6 @@ $lng['logger']['user'] = 'Użytkownik';
|
|||||||
$lng['logger']['truncate'] = 'Wyszyść logi';
|
$lng['logger']['truncate'] = 'Wyszyść logi';
|
||||||
|
|
||||||
// ADDED IN 1.2.19-svn7
|
// ADDED IN 1.2.19-svn7
|
||||||
|
|
||||||
$lng['serversettings']['ssl']['use_ssl'] = 'Użyj SSL';
|
|
||||||
$lng['serversettings']['ssl']['ssl_cert_file'] = 'Gdzie jest zlokalizowany Certyfikat';
|
|
||||||
$lng['serversettings']['ssl']['openssl_cnf'] = 'Standardowe dane do tworzenia pliku certyfikatu';
|
$lng['serversettings']['ssl']['openssl_cnf'] = 'Standardowe dane do tworzenia pliku certyfikatu';
|
||||||
$lng['panel']['customer'] = 'klient/ci';
|
$lng['panel']['customer'] = 'klient/ci';
|
||||||
$lng['error']['nomessagetosend'] = 'Nie wprowadzono wiadomości.';
|
$lng['error']['nomessagetosend'] = 'Nie wprowadzono wiadomości.';
|
||||||
|
|||||||
@@ -449,9 +449,6 @@ $lng['admin']['nameserversettings'] = 'Configurações dos Servidores de Nomes';
|
|||||||
$lng['admin']['updatecounters'] = 'Recalcular utilização de recursos';
|
$lng['admin']['updatecounters'] = 'Recalcular utilização de recursos';
|
||||||
$lng['question']['admin_counters_reallyupdate'] = 'Voce deseja recalcular os recursos utilizados?';
|
$lng['question']['admin_counters_reallyupdate'] = 'Voce deseja recalcular os recursos utilizados?';
|
||||||
$lng['panel']['pathDescription'] = 'Se o diretório não existir, será criado automaticamente';
|
$lng['panel']['pathDescription'] = 'Se o diretório não existir, será criado automaticamente';
|
||||||
$lng['mails']['trafficninetypercent']['mailbody'] = 'Querido {NAME},\n\nVocê usou {TRAFFICUSED} MB do seu disponível {TRAFFIC} MB de tráfego.\nisto é mais que 90%.\n\nHonestamente, Equipe Froxlor';
|
|
||||||
$lng['mails']['trafficninetypercent']['subject'] = 'Atingindo o seu limite de tráfego';
|
|
||||||
$lng['admin']['templates']['trafficninetypercent'] = 'Email de notificação para clientes quando atingirem 90% do uso do tráfego';
|
|
||||||
$lng['admin']['templates']['TRAFFIC'] = 'Substituído com o tráfego, o que foi atribuído ao cliente.';
|
$lng['admin']['templates']['TRAFFIC'] = 'Substituído com o tráfego, o que foi atribuído ao cliente.';
|
||||||
$lng['admin']['templates']['TRAFFICUSED'] = 'Substituído com o tráfego, que foi esgotado pela cliente.';
|
$lng['admin']['templates']['TRAFFICUSED'] = 'Substituído com o tráfego, que foi esgotado pela cliente.';
|
||||||
$lng['admin']['subcanemaildomain']['never'] = 'Nunca';
|
$lng['admin']['subcanemaildomain']['never'] = 'Nunca';
|
||||||
@@ -651,8 +648,6 @@ $lng['logger']['type'] = 'Tipo';
|
|||||||
$lng['logger']['action'] = 'Ação';
|
$lng['logger']['action'] = 'Ação';
|
||||||
$lng['logger']['user'] = 'Usuário';
|
$lng['logger']['user'] = 'Usuário';
|
||||||
$lng['logger']['truncate'] = 'Log Vazio';
|
$lng['logger']['truncate'] = 'Log Vazio';
|
||||||
$lng['serversettings']['ssl']['use_ssl'] = 'Usar SSL';
|
|
||||||
$lng['serversettings']['ssl']['ssl_cert_file'] = 'Aonde estão localizados os certificados';
|
|
||||||
$lng['serversettings']['ssl']['openssl_cnf'] = 'Padrão para criar o arquivo de certificado';
|
$lng['serversettings']['ssl']['openssl_cnf'] = 'Padrão para criar o arquivo de certificado';
|
||||||
$lng['panel']['reseller'] = 'Revenda';
|
$lng['panel']['reseller'] = 'Revenda';
|
||||||
$lng['panel']['admin'] = 'Administrador';
|
$lng['panel']['admin'] = 'Administrador';
|
||||||
@@ -1008,8 +1003,6 @@ $lng['aps']['allpackagesused'] = '<strong>Erro</strong><br/><br/>Você já ating
|
|||||||
$lng['aps']['noinstancesexisting'] = 'Não existem estâncias para administrar.';
|
$lng['aps']['noinstancesexisting'] = 'Não existem estâncias para administrar.';
|
||||||
$lng['error']['customerdoesntexist'] = 'O cliente que você escolheu não existe';
|
$lng['error']['customerdoesntexist'] = 'O cliente que você escolheu não existe';
|
||||||
$lng['error']['admindoesntexist'] = 'O administrador que você escolheu não existe';
|
$lng['error']['admindoesntexist'] = 'O administrador que você escolheu não existe';
|
||||||
$lng['serversettings']['system_realtime_port']['title'] = 'Porta para Froxlor em tempo real';
|
|
||||||
$lng['serversettings']['system_realtime_port']['description'] = 'Froxlor connects to this port at localhost everytime a new cron task is scheduled. If value is 0 (zero), this feature is disabled.<br />See also: <a target="blank" href="http://redmine.froxlor.org/projects/froxlor/wiki/En-realtime">Make Froxlor work in realtime (Froxlor Wiki)</a>';
|
|
||||||
$lng['serversettings']['session_allow_multiple_login']['title'] = 'AAtiva login múltiplo';
|
$lng['serversettings']['session_allow_multiple_login']['title'] = 'AAtiva login múltiplo';
|
||||||
$lng['serversettings']['session_allow_multiple_login']['description'] = 'Se ativado um usuário pode ter múltiplos logins';
|
$lng['serversettings']['session_allow_multiple_login']['description'] = 'Se ativado um usuário pode ter múltiplos logins';
|
||||||
$lng['serversettings']['panel_allow_domain_change_admin']['title'] = 'Ativa mover domínios entre admins';
|
$lng['serversettings']['panel_allow_domain_change_admin']['title'] = 'Ativa mover domínios entre admins';
|
||||||
|
|||||||
@@ -367,7 +367,6 @@ $lng['mysql']['description'] = 'Tu môŸete vytvára» a meni» Va¹e MySQL data
|
|||||||
* ADDED BETWEEN 1.2.12 and 1.2.13
|
* ADDED BETWEEN 1.2.12 and 1.2.13
|
||||||
*/
|
*/
|
||||||
|
|
||||||
$lng['admin']['cronlastrun'] = 'Posledný Cron';
|
|
||||||
$lng['serversettings']['paging']['title'] = 'Záznamov na stránku';
|
$lng['serversettings']['paging']['title'] = 'Záznamov na stránku';
|
||||||
$lng['serversettings']['paging']['description'] = 'Koµko záznamov bude zobrazených na jednej stránke? (0 = zakázané stránkovanie)';
|
$lng['serversettings']['paging']['description'] = 'Koµko záznamov bude zobrazených na jednej stránke? (0 = zakázané stránkovanie)';
|
||||||
$lng['error']['ipstillhasdomains'] = 'IP/Port kombinácia ktorú chcete zmaza» má stále priradené domenény. Pred zmazaním tejto IP/Port kombinácie prosím znovu priraïte tieto k ostatným IP/Port kombináciam.';
|
$lng['error']['ipstillhasdomains'] = 'IP/Port kombinácia ktorú chcete zmaza» má stále priradené domenény. Pred zmazaním tejto IP/Port kombinácie prosím znovu priraïte tieto k ostatným IP/Port kombináciam.';
|
||||||
|
|||||||
@@ -369,8 +369,6 @@ $lng['mysql']['description'] = 'Här ändras eller skapas MySQL-Databaser.<br />
|
|||||||
/**
|
/**
|
||||||
* ADDED BETWEEN 1.2.12 and 1.2.13
|
* ADDED BETWEEN 1.2.12 and 1.2.13
|
||||||
*/
|
*/
|
||||||
|
|
||||||
$lng['admin']['cronlastrun'] = 'Konfigurerinsfilerna skapades sist';
|
|
||||||
$lng['serversettings']['paging']['title'] = 'Antal rader per sida';
|
$lng['serversettings']['paging']['title'] = 'Antal rader per sida';
|
||||||
$lng['serversettings']['paging']['description'] = 'Hur många rader skall det vara på en sida? (0 = Stäng av sidbrytning)';
|
$lng['serversettings']['paging']['description'] = 'Hur många rader skall det vara på en sida? (0 = Stäng av sidbrytning)';
|
||||||
$lng['error']['ipstillhasdomains'] = 'IP/Port kombinationen som du vill radera har fortfarande domäner anslutna till sig, Flytta dessa till någon annan IP/Port kombination innan du raderar denna IP/Port kombination.';
|
$lng['error']['ipstillhasdomains'] = 'IP/Port kombinationen som du vill radera har fortfarande domäner anslutna till sig, Flytta dessa till någon annan IP/Port kombination innan du raderar denna IP/Port kombination.';
|
||||||
@@ -474,10 +472,6 @@ $lng['question']['admin_counters_reallyupdate'] = 'Vill du uppdatera alla status
|
|||||||
$lng['panel']['pathDescription'] = 'Katalogen kommer att skapas om den inte redan finns.';
|
$lng['panel']['pathDescription'] = 'Katalogen kommer att skapas om den inte redan finns.';
|
||||||
|
|
||||||
// ADDED IN 1.2.16-svn6
|
// ADDED IN 1.2.16-svn6
|
||||||
|
|
||||||
$lng['mails']['trafficninetypercent']['mailbody'] = 'Varning {NAME},\n\nDu har nu använt {TRAFFICUSED} MB av ditt tillgängliga {TRAFFIC} MB för trafik.\nDetta är mer än 90%.\n\nHälsningar, Froxlor team';
|
|
||||||
$lng['mails']['trafficninetypercent']['subject'] = 'Du är på väg att nå din tillåtna trafikgräns';
|
|
||||||
$lng['admin']['templates']['trafficninetypercent'] = 'Meddelande till kund när mer än nittio procent av trafiken utnyttjas';
|
|
||||||
$lng['admin']['templates']['TRAFFIC'] = 'Ersatt med trafikbegrnsningen som var tilldelad till kunden.';
|
$lng['admin']['templates']['TRAFFIC'] = 'Ersatt med trafikbegrnsningen som var tilldelad till kunden.';
|
||||||
$lng['admin']['templates']['TRAFFICUSED'] = 'Ersatt med trafikbegrnsningen som var överskriden av kunden.';
|
$lng['admin']['templates']['TRAFFICUSED'] = 'Ersatt med trafikbegrnsningen som var överskriden av kunden.';
|
||||||
|
|
||||||
@@ -499,7 +493,6 @@ $lng['admin']['configfiles']['overview'] = 'Översikt';
|
|||||||
$lng['admin']['configfiles']['wizard'] = 'Guide';
|
$lng['admin']['configfiles']['wizard'] = 'Guide';
|
||||||
$lng['admin']['configfiles']['mail'] = 'E-postserver (POP3/IMAP)';
|
$lng['admin']['configfiles']['mail'] = 'E-postserver (POP3/IMAP)';
|
||||||
$lng['admin']['configfiles']['smtp'] = 'E-postserver (SMTP)';
|
$lng['admin']['configfiles']['smtp'] = 'E-postserver (SMTP)';
|
||||||
$lng['admin']['trafficlastrun'] = 'Senaste trafikberäkningen gjordes';
|
|
||||||
|
|
||||||
// ADDED IN 1.2.16-svn10
|
// ADDED IN 1.2.16-svn10
|
||||||
|
|
||||||
@@ -576,9 +569,6 @@ $lng['ticket']['priority'] = 'Prioritet';
|
|||||||
$lng['ticket']['low'] = '<span class="Ärende_låg">Låg</span>';
|
$lng['ticket']['low'] = '<span class="Ärende_låg">Låg</span>';
|
||||||
$lng['ticket']['normal'] = '<span class="Ärende_norm">Normal</span>';
|
$lng['ticket']['normal'] = '<span class="Ärende_norm">Normal</span>';
|
||||||
$lng['ticket']['high'] = '<span class="Ärende_hög">Hög</span>';
|
$lng['ticket']['high'] = '<span class="Ärende_hög">Hög</span>';
|
||||||
$lng['ticket']['unf_low'] = 'Låg';
|
|
||||||
$lng['ticket']['unf_normal'] = 'Normal';
|
|
||||||
$lng['ticket']['unf_high'] = 'Hög';
|
|
||||||
$lng['ticket']['lastchange'] = 'Ändrad';
|
$lng['ticket']['lastchange'] = 'Ändrad';
|
||||||
$lng['ticket']['lastchange_from'] = 'Från datum (dd.mm.yyyy)';
|
$lng['ticket']['lastchange_from'] = 'Från datum (dd.mm.yyyy)';
|
||||||
$lng['ticket']['lastchange_to'] = 'Till datum (dd.mm.yyyy)';
|
$lng['ticket']['lastchange_to'] = 'Till datum (dd.mm.yyyy)';
|
||||||
|
|||||||
Reference in New Issue
Block a user