1904 lines
120 KiB
PHP
1904 lines
120 KiB
PHP
<?php
|
|
|
|
/**
|
|
* This file is part of the Froxlor project.
|
|
* Copyright (c) 2003-2009 the SysCP Team (see authors).
|
|
* Copyright (c) 2010 the Froxlor 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.froxlor.org/misc/COPYING.txt
|
|
*
|
|
* @copyright (c) the authors
|
|
* @author Florian Lippert <flo@syscp.org>
|
|
* @author Froxlor Team <team@froxlor.org>
|
|
* @license GPLv2 http://files.froxlor.org/misc/COPYING.txt
|
|
* @package Language
|
|
*
|
|
*/
|
|
|
|
/**
|
|
* Global
|
|
*/
|
|
|
|
$lng['translator'] = '';
|
|
$lng['panel']['edit'] = 'edit';
|
|
$lng['panel']['delete'] = 'delete';
|
|
$lng['panel']['create'] = 'create';
|
|
$lng['panel']['save'] = 'save';
|
|
$lng['panel']['yes'] = 'yes';
|
|
$lng['panel']['no'] = 'no';
|
|
$lng['panel']['emptyfornochanges'] = 'empty for no changes';
|
|
$lng['panel']['emptyfordefault'] = 'empty for defaults';
|
|
$lng['panel']['path'] = 'Path';
|
|
$lng['panel']['toggle'] = 'Toggle';
|
|
$lng['panel']['next'] = 'next';
|
|
$lng['panel']['dirsmissing'] = 'Can not find or read the directory!';
|
|
|
|
/**
|
|
* Login
|
|
*/
|
|
|
|
$lng['login']['username'] = 'Username';
|
|
$lng['login']['password'] = 'Password';
|
|
$lng['login']['language'] = 'Language';
|
|
$lng['login']['login'] = 'Login';
|
|
$lng['login']['logout'] = 'Logout';
|
|
$lng['login']['profile_lng'] = 'Profile language';
|
|
|
|
/**
|
|
* Customer
|
|
*/
|
|
|
|
$lng['customer']['documentroot'] = 'Home directory';
|
|
$lng['customer']['name'] = 'Name';
|
|
$lng['customer']['firstname'] = 'First name';
|
|
$lng['customer']['company'] = 'Company';
|
|
$lng['customer']['street'] = 'Street';
|
|
$lng['customer']['zipcode'] = 'Zipcode';
|
|
$lng['customer']['city'] = 'City';
|
|
$lng['customer']['phone'] = 'Phone';
|
|
$lng['customer']['fax'] = 'Fax';
|
|
$lng['customer']['email'] = 'Email';
|
|
$lng['customer']['customernumber'] = 'Customer ID';
|
|
$lng['customer']['diskspace'] = 'Webspace (MB)';
|
|
$lng['customer']['traffic'] = 'Traffic (GB)';
|
|
$lng['customer']['mysqls'] = 'MySQL-databases';
|
|
$lng['customer']['emails'] = 'E-mail-Addresses';
|
|
$lng['customer']['accounts'] = 'E-mail-Accounts';
|
|
$lng['customer']['forwarders'] = 'E-mail-Forwarders';
|
|
$lng['customer']['ftps'] = 'FTP-Accounts';
|
|
$lng['customer']['subdomains'] = 'Sub-Domain';
|
|
$lng['customer']['domains'] = 'Domain';
|
|
$lng['customer']['unlimited'] = '∞';
|
|
|
|
/**
|
|
* Customermenue
|
|
*/
|
|
|
|
$lng['menue']['main']['main'] = 'Main';
|
|
$lng['menue']['main']['changepassword'] = 'Change password';
|
|
$lng['menue']['main']['changelanguage'] = 'Change language';
|
|
$lng['menue']['email']['email'] = 'E-mail';
|
|
$lng['menue']['email']['emails'] = 'Addresses';
|
|
$lng['menue']['email']['webmail'] = 'webmail';
|
|
$lng['menue']['mysql']['mysql'] = 'MySQL';
|
|
$lng['menue']['mysql']['databases'] = 'Databases';
|
|
$lng['menue']['mysql']['phpmyadmin'] = 'phpMyAdmin';
|
|
$lng['menue']['domains']['domains'] = 'Domains';
|
|
$lng['menue']['domains']['settings'] = 'Settings';
|
|
$lng['menue']['ftp']['ftp'] = 'FTP';
|
|
$lng['menue']['ftp']['accounts'] = 'Accounts';
|
|
$lng['menue']['ftp']['webftp'] = 'WebFTP';
|
|
$lng['menue']['extras']['extras'] = 'Extras';
|
|
$lng['menue']['extras']['directoryprotection'] = 'Directory protection';
|
|
$lng['menue']['extras']['pathoptions'] = 'Path options';
|
|
|
|
/**
|
|
* Index
|
|
*/
|
|
|
|
$lng['index']['customerdetails'] = 'Customer details';
|
|
$lng['index']['accountdetails'] = 'Account details';
|
|
|
|
/**
|
|
* Change Password
|
|
*/
|
|
|
|
$lng['changepassword']['old_password'] = 'Old password';
|
|
$lng['changepassword']['new_password'] = 'New password';
|
|
$lng['changepassword']['new_password_confirm'] = 'New password (confirm)';
|
|
$lng['changepassword']['new_password_ifnotempty'] = 'New password (empty = no change)';
|
|
$lng['changepassword']['also_change_ftp'] = ' also change password of the main FTP account';
|
|
|
|
/**
|
|
* Domains
|
|
*/
|
|
|
|
$lng['domains']['description'] = 'Here you can create (sub-)domains and change their paths.<br />The system will need some time to apply the new settings after every change.';
|
|
$lng['domains']['domainsettings'] = 'Domain settings';
|
|
$lng['domains']['domainname'] = 'Domain name';
|
|
$lng['domains']['subdomain_add'] = 'Create subdomain';
|
|
$lng['domains']['subdomain_edit'] = 'Edit (sub)domain';
|
|
$lng['domains']['wildcarddomain'] = 'Create as wildcarddomain?';
|
|
$lng['domains']['aliasdomain'] = 'Alias for domain';
|
|
$lng['domains']['noaliasdomain'] = 'No alias domain';
|
|
|
|
/**
|
|
* E-mails
|
|
*/
|
|
|
|
$lng['emails']['description'] = 'Here you can create and change your e-mail addresses.<br />An account is like your letterbox in front of your house. If someone sends you an email, it will be dropped into the account.<br /><br />To download your emails use the following settings in your mailprogram: (The data in <i>italics</i> has to be changed to the equivalents you typed in!)<br />Hostname: <b><i>domainname</i></b><br />Username: <b><i>account name / e-mail address</i></b><br />password: <b><i>the password you\'ve chosen</i></b>';
|
|
$lng['emails']['emailaddress'] = 'E-mail-address';
|
|
$lng['emails']['emails_add'] = 'Create e-mail-address';
|
|
$lng['emails']['emails_edit'] = 'Edit e-mail-address';
|
|
$lng['emails']['catchall'] = 'Catchall';
|
|
$lng['emails']['iscatchall'] = 'Define as catchall-address?';
|
|
$lng['emails']['account'] = 'Account';
|
|
$lng['emails']['account_add'] = 'Create account';
|
|
$lng['emails']['account_delete'] = 'Delete account';
|
|
$lng['emails']['from'] = 'Source';
|
|
$lng['emails']['to'] = 'Destination';
|
|
$lng['emails']['forwarders'] = 'Forwarders';
|
|
$lng['emails']['forwarder_add'] = 'Create forwarder';
|
|
|
|
/**
|
|
* FTP
|
|
*/
|
|
|
|
$lng['ftp']['description'] = 'Here you can create and change your FTP accounts.<br />The changes are made instantly and the accounts can be used immediately.';
|
|
$lng['ftp']['account_add'] = 'Create Account';
|
|
|
|
/**
|
|
* MySQL
|
|
*/
|
|
|
|
$lng['mysql']['databasename'] = 'User/Database name';
|
|
$lng['mysql']['databasedescription'] = 'Database description';
|
|
$lng['mysql']['database_create'] = 'Create database';
|
|
|
|
/**
|
|
* Extras
|
|
*/
|
|
|
|
$lng['extras']['description'] = 'Here you can add some extras, for example directory protection.<br />The system will need some time to apply the new settings after every change.';
|
|
$lng['extras']['directoryprotection_add'] = 'Add directory protection';
|
|
$lng['extras']['view_directory'] = 'display directory content';
|
|
$lng['extras']['pathoptions_add'] = 'add path options';
|
|
$lng['extras']['directory_browsing'] = 'directory content browsing';
|
|
$lng['extras']['pathoptions_edit'] = 'edit path options';
|
|
$lng['extras']['error404path'] = '404';
|
|
$lng['extras']['error403path'] = '403';
|
|
$lng['extras']['error500path'] = '500';
|
|
$lng['extras']['error401path'] = '401';
|
|
$lng['extras']['errordocument404path'] = 'ErrorDocument 404';
|
|
$lng['extras']['errordocument403path'] = 'ErrorDocument 403';
|
|
$lng['extras']['errordocument500path'] = 'ErrorDocument 500';
|
|
$lng['extras']['errordocument401path'] = 'ErrorDocument 401';
|
|
|
|
/**
|
|
* Errors
|
|
*/
|
|
|
|
$lng['error']['error'] = 'Error';
|
|
$lng['error']['directorymustexist'] = 'The directory %s must exist. Please create it with your FTP client.';
|
|
$lng['error']['filemustexist'] = 'The file %s must exist.';
|
|
$lng['error']['allresourcesused'] = 'You have already used all of your resources.';
|
|
$lng['error']['domains_cantdeletemaindomain'] = 'You cannot delete a domain which is used as an email-domain.';
|
|
$lng['error']['domains_canteditdomain'] = 'You cannot edit this domain. It has been disabled by the admin.';
|
|
$lng['error']['domains_cantdeletedomainwithemail'] = 'You cannot delete a domain which is used as an email-domain. Delete all email addresses first.';
|
|
$lng['error']['firstdeleteallsubdomains'] = 'You have to delete all subdomains first before you can create a wildcard domain.';
|
|
$lng['error']['youhavealreadyacatchallforthisdomain'] = 'You have already defined a catchall for this domain.';
|
|
$lng['error']['ftp_cantdeletemainaccount'] = 'You cannot delete your main FTP account';
|
|
$lng['error']['login'] = 'The username or password you typed in is wrong. Please try it again!';
|
|
$lng['error']['login_blocked'] = 'This account has been suspended because of too many login errors. <br />Please try again in ' . $settings['login']['deactivatetime'] . ' seconds.';
|
|
$lng['error']['notallreqfieldsorerrors'] = 'You have not filled in all or filled in some fields incorrectly.';
|
|
$lng['error']['oldpasswordnotcorrect'] = 'The old password is not correct.';
|
|
$lng['error']['youcantallocatemorethanyouhave'] = 'You cannot allocate more resources than you own for yourself.';
|
|
$lng['error']['mustbeurl'] = 'You have not typed a valid or complete url (e.g. http://somedomain.com/error404.htm)';
|
|
$lng['error']['invalidpath'] = 'You have not chosen a valid URL (maybe problems with the dirlisting?)';
|
|
$lng['error']['stringisempty'] = 'Missing Input in Field';
|
|
$lng['error']['stringiswrong'] = 'Wrong Input in Field';
|
|
$lng['error']['myloginname'] = '\'' . $lng['login']['username'] . '\'';
|
|
$lng['error']['mypassword'] = '\'' . $lng['login']['password'] . '\'';
|
|
$lng['error']['oldpassword'] = '\'' . $lng['changepassword']['old_password'] . '\'';
|
|
$lng['error']['newpassword'] = '\'' . $lng['changepassword']['new_password'] . '\'';
|
|
$lng['error']['newpasswordconfirm'] = '\'' . $lng['changepassword']['new_password_confirm'] . '\'';
|
|
$lng['error']['newpasswordconfirmerror'] = 'New password and confirmation does not match';
|
|
$lng['error']['myname'] = '\'' . $lng['customer']['name'] . '\'';
|
|
$lng['error']['myfirstname'] = '\'' . $lng['customer']['firstname'] . '\'';
|
|
$lng['error']['emailadd'] = '\'' . $lng['customer']['email'] . '\'';
|
|
$lng['error']['mydomain'] = '\'Domain\'';
|
|
$lng['error']['mydocumentroot'] = '\'Documentroot\'';
|
|
$lng['error']['loginnameexists'] = 'Login-Name %s already exists';
|
|
$lng['error']['emailiswrong'] = 'E-mail-Address %s contains invalid characters or is incomplete';
|
|
$lng['error']['loginnameiswrong'] = 'Login-Name %s contains invalid characters';
|
|
$lng['error']['userpathcombinationdupe'] = 'Combination of username and path already exists';
|
|
$lng['error']['patherror'] = 'General Error! Path cannot be empty';
|
|
$lng['error']['errordocpathdupe'] = 'Option for path %s already exists';
|
|
$lng['error']['adduserfirst'] = 'Please create a customer first';
|
|
$lng['error']['domainalreadyexists'] = 'The domain %s is already assigned to a customer';
|
|
$lng['error']['nolanguageselect'] = 'No language selected.';
|
|
$lng['error']['nosubjectcreate'] = 'You must define a topic for this mail template.';
|
|
$lng['error']['nomailbodycreate'] = 'You must define a mail-text for this mail template.';
|
|
$lng['error']['templatenotfound'] = 'Template was not found.';
|
|
$lng['error']['alltemplatesdefined'] = 'You cant define more templates, all languages are supported already.';
|
|
$lng['error']['wwwnotallowed'] = 'www is not allowed for subdomains.';
|
|
$lng['error']['subdomainiswrong'] = 'The subdomain %s contains invalid characters.';
|
|
$lng['error']['domaincantbeempty'] = 'The domain-name can not be empty.';
|
|
$lng['error']['domainexistalready'] = 'The domain %s already exists.';
|
|
$lng['error']['domainisaliasorothercustomer'] = 'The selected alias domain is either itself an alias domain, has a different ip/port combination or belongs to another customer.';
|
|
$lng['error']['emailexistalready'] = 'The e-mail-Address %s already exists.';
|
|
$lng['error']['maindomainnonexist'] = 'The main-domain %s does not exist.';
|
|
$lng['error']['destinationnonexist'] = 'Please create your forwarder in the field \'Destination\'.';
|
|
$lng['error']['destinationalreadyexistasmail'] = 'The forwarder to %s already exists as active e-mail-address.';
|
|
$lng['error']['destinationalreadyexist'] = 'You have already defined a forwarder to %s .';
|
|
$lng['error']['destinationiswrong'] = 'The forwarder %s contains invalid character(s) or is incomplete.';
|
|
$lng['error']['domainname'] = $lng['domains']['domainname'];
|
|
|
|
/**
|
|
* Questions
|
|
*/
|
|
|
|
$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_domain_reallydelete'] = 'Do you really want to delete the domain %s?';
|
|
$lng['question']['admin_domain_reallydisablesecuritysetting'] = 'Do you really want to disable this 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_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']['email_reallydelete'] = 'Do you really want to delete the email-address %s?';
|
|
$lng['question']['email_reallydelete_account'] = 'Do you really want to delete the email-account of %s?';
|
|
$lng['question']['email_reallydelete_forwarder'] = 'Do you really want to delete the forwarder %s?';
|
|
$lng['question']['extras_reallydelete'] = 'Do you really want to delete the directory protection for %s?';
|
|
$lng['question']['extras_reallydelete_pathoptions'] = 'Do you really want to delete the path options for %s?';
|
|
$lng['question']['ftp_reallydelete'] = 'Do you really want to delete the FTP account %s?';
|
|
$lng['question']['mysql_reallydelete'] = 'Do you really want to delete the database %s? This cannot be undone!';
|
|
$lng['question']['admin_configs_reallyrebuild'] = 'Do you really want to rebuild all config files?';
|
|
$lng['question']['admin_customer_alsoremovefiles'] = 'Remove user files too?';
|
|
$lng['question']['admin_customer_alsoremovemail'] = 'Completely remove email data from filesystem?';
|
|
$lng['question']['admin_customer_alsoremoveftphomedir'] = 'Also remove FTP-user homedir?';
|
|
|
|
/**
|
|
* Mails
|
|
*/
|
|
|
|
$lng['mails']['pop_success']['mailbody'] = 'Hello,\n\nyour mail account {EMAIL}\nwas set up successfully.\n\nThis is an automatically created\ne-mail, please do not answer!\n\nYours sincerely, the Froxlor-Team';
|
|
$lng['mails']['pop_success']['subject'] = 'Mail account set up successfully';
|
|
$lng['mails']['createcustomer']['mailbody'] = 'Hello {FIRSTNAME} {NAME},\n\nhere is your account information:\n\nUsername: {USERNAME}\nPassword: {PASSWORD}\n\nThank you,\nthe Froxlor-Team';
|
|
$lng['mails']['createcustomer']['subject'] = 'Account information';
|
|
|
|
/**
|
|
* Admin
|
|
*/
|
|
|
|
$lng['admin']['overview'] = 'Overview';
|
|
$lng['admin']['ressourcedetails'] = 'Used resources';
|
|
$lng['admin']['systemdetails'] = 'System details';
|
|
$lng['admin']['froxlordetails'] = 'Froxlor details';
|
|
$lng['admin']['installedversion'] = 'Installed version';
|
|
$lng['admin']['latestversion'] = 'Latest version';
|
|
$lng['admin']['lookfornewversion']['clickhere'] = 'search via webservice';
|
|
$lng['admin']['lookfornewversion']['error'] = 'Error while reading';
|
|
$lng['admin']['resources'] = 'Resources';
|
|
$lng['admin']['customer'] = 'Customer';
|
|
$lng['admin']['customers'] = 'Customers';
|
|
$lng['admin']['customer_add'] = 'Create customer';
|
|
$lng['admin']['customer_edit'] = 'Edit customer';
|
|
$lng['admin']['domains'] = 'Domains';
|
|
$lng['admin']['domain_add'] = 'Create domain';
|
|
$lng['admin']['domain_edit'] = 'Edit domain';
|
|
$lng['admin']['subdomainforemail'] = 'Subdomains as emaildomains';
|
|
$lng['admin']['admin'] = 'Admin';
|
|
$lng['admin']['admins'] = 'Admins';
|
|
$lng['admin']['admin_add'] = 'Create admin';
|
|
$lng['admin']['admin_edit'] = 'Edit admin';
|
|
$lng['admin']['customers_see_all'] = 'Can see all customers?';
|
|
$lng['admin']['domains_see_all'] = 'Can see all domains?';
|
|
$lng['admin']['change_serversettings'] = 'Can change server settings?';
|
|
$lng['admin']['server'] = 'Server';
|
|
$lng['admin']['serversettings'] = 'Settings';
|
|
$lng['admin']['rebuildconf'] = 'Rebuild config files';
|
|
$lng['admin']['stdsubdomain'] = 'Standard subdomain';
|
|
$lng['admin']['stdsubdomain_add'] = 'Create standard subdomain';
|
|
$lng['admin']['phpenabled'] = 'PHP enabled';
|
|
$lng['admin']['deactivated'] = 'Deactivated';
|
|
$lng['admin']['deactivated_user'] = 'Deactivate user';
|
|
$lng['admin']['sendpassword'] = 'Send password';
|
|
$lng['admin']['ownvhostsettings'] = 'Own vHost-settings';
|
|
$lng['admin']['configfiles']['serverconfiguration'] = 'Configuration';
|
|
$lng['admin']['configfiles']['files'] = '<b>Configfiles:</b> Please change the following files or create them with<br />the following content if they do not exist.<br /><b>Please note:</b> The MySQL-password has not been replaced for security reasons.<br />Please replace "MYSQL_PASSWORD" on your own. If you forgot your MySQL-password<br />you\'ll find it in "lib/userdata.inc.php".';
|
|
$lng['admin']['configfiles']['commands'] = '<b>Commands:</b> Please execute the following commands in a shell.';
|
|
$lng['admin']['configfiles']['restart'] = '<b>Restart:</b> Please execute the following commands in a shell in order to reload the new configuration.';
|
|
$lng['admin']['templates']['templates'] = 'E-Mail-templates';
|
|
$lng['admin']['templates']['template_add'] = 'Add template';
|
|
$lng['admin']['templates']['template_edit'] = 'Edit template';
|
|
$lng['admin']['templates']['action'] = 'Action';
|
|
$lng['admin']['templates']['email'] = 'E-mail & file templates';
|
|
$lng['admin']['templates']['subject'] = 'Subject';
|
|
$lng['admin']['templates']['mailbody'] = 'Mail body';
|
|
$lng['admin']['templates']['createcustomer'] = 'Welcome mail for new customers';
|
|
$lng['admin']['templates']['pop_success'] = 'Welcome mail for new email accounts';
|
|
$lng['admin']['templates']['template_replace_vars'] = 'Variables to be replaced in the template:';
|
|
$lng['admin']['templates']['SALUTATION'] = 'Replaced with a correct salutation (name or company)';
|
|
$lng['admin']['templates']['FIRSTNAME'] = 'Replaced with the customers firstname.';
|
|
$lng['admin']['templates']['NAME'] = 'Replaced with the customers name.';
|
|
$lng['admin']['templates']['COMPANY'] = 'Replaces with the customers company name';
|
|
$lng['admin']['templates']['USERNAME'] = 'Replaced with the customers account username.';
|
|
$lng['admin']['templates']['PASSWORD'] = 'Replaced with the customers account password.';
|
|
$lng['admin']['templates']['EMAIL'] = 'Replaced with the address of the POP3/IMAP account.';
|
|
$lng['admin']['webserver'] = 'Webserver';
|
|
|
|
/**
|
|
* Serversettings
|
|
*/
|
|
|
|
$lng['serversettings']['session_timeout']['title'] = 'Session Timeout';
|
|
$lng['serversettings']['session_timeout']['description'] = 'How long does a user have to be inactive before a session gets invalid (seconds)?';
|
|
$lng['serversettings']['accountprefix']['title'] = 'Customer prefix';
|
|
$lng['serversettings']['accountprefix']['description'] = 'Which prefix should customer accounts have?';
|
|
$lng['serversettings']['mysqlprefix']['title'] = 'SQL Prefix';
|
|
$lng['serversettings']['mysqlprefix']['description'] = 'Which prefix should MySQL accounts have?';
|
|
$lng['serversettings']['ftpprefix']['title'] = 'FTP Prefix';
|
|
$lng['serversettings']['ftpprefix']['description'] = 'Which prefix should ftp accounts have?';
|
|
$lng['serversettings']['documentroot_prefix']['title'] = 'Home directory';
|
|
$lng['serversettings']['documentroot_prefix']['description'] = 'Where should all home directories be stored?';
|
|
$lng['serversettings']['logfiles_directory']['title'] = 'Logfiles directory';
|
|
$lng['serversettings']['logfiles_directory']['description'] = 'Where should all log files be stored?';
|
|
$lng['serversettings']['ipaddress']['title'] = 'IP-Address';
|
|
$lng['serversettings']['ipaddress']['description'] = 'What\'s the IP-address of this server?';
|
|
$lng['serversettings']['hostname']['title'] = 'Hostname';
|
|
$lng['serversettings']['hostname']['description'] = 'What\'s the Hostname of this server?';
|
|
$lng['serversettings']['apachereload_command']['title'] = 'Webserver reload command';
|
|
$lng['serversettings']['apachereload_command']['description'] = 'What\'s the webserver command to reload configfiles?';
|
|
$lng['serversettings']['bindconf_directory']['title'] = 'Bind config directory';
|
|
$lng['serversettings']['bindconf_directory']['description'] = 'Where should bind configfiles be saved?';
|
|
$lng['serversettings']['bindreload_command']['title'] = 'Bind reload command';
|
|
$lng['serversettings']['bindreload_command']['description'] = 'What\'s the bind command to reload bind configfiles?';
|
|
$lng['serversettings']['binddefaultzone']['title'] = 'Bind default zone';
|
|
$lng['serversettings']['binddefaultzone']['description'] = 'What\'s the name of the default zone?';
|
|
$lng['serversettings']['vmail_uid']['title'] = 'Mails-UID';
|
|
$lng['serversettings']['vmail_uid']['description'] = 'Which UserID should mails have?';
|
|
$lng['serversettings']['vmail_gid']['title'] = 'Mails-GID';
|
|
$lng['serversettings']['vmail_gid']['description'] = 'Which GroupID should mails have?';
|
|
$lng['serversettings']['vmail_homedir']['title'] = 'Mails-Homedir';
|
|
$lng['serversettings']['vmail_homedir']['description'] = 'Where should all mails be stored?';
|
|
$lng['serversettings']['adminmail']['title'] = 'Sender';
|
|
$lng['serversettings']['adminmail']['description'] = 'What\'s the sender address for emails sent from the Panel?';
|
|
$lng['serversettings']['phpmyadmin_url']['title'] = 'phpMyAdmin URL';
|
|
$lng['serversettings']['phpmyadmin_url']['description'] = 'What\'s the URL to phpMyAdmin? (has to start with http(s)://)';
|
|
$lng['serversettings']['webmail_url']['title'] = 'Webmail URL';
|
|
$lng['serversettings']['webmail_url']['description'] = 'What\'s the URL to webmail? (has to start with http(s)://)';
|
|
$lng['serversettings']['webftp_url']['title'] = 'WebFTP URL';
|
|
$lng['serversettings']['webftp_url']['description'] = 'What\'s the URL to WebFTP? (has to start with http(s)://)';
|
|
$lng['serversettings']['language']['description'] = 'What\'s your standard server language?';
|
|
$lng['serversettings']['maxloginattempts']['title'] = 'Max Login Attempts';
|
|
$lng['serversettings']['maxloginattempts']['description'] = 'Maximum login attempts after which the account gets disabled.';
|
|
$lng['serversettings']['deactivatetime']['title'] = 'Deactivation Time';
|
|
$lng['serversettings']['deactivatetime']['description'] = 'Time (sec.) an account gets disabled after too many login tries.';
|
|
$lng['serversettings']['pathedit']['title'] = 'Type of path input';
|
|
$lng['serversettings']['pathedit']['description'] = 'Should a path be selected by a dropdown menu or by an input field?';
|
|
$lng['serversettings']['nameservers']['title'] = 'Nameservers';
|
|
$lng['serversettings']['nameservers']['description'] = 'A comma separated list containing the hostnames of all nameservers. The first one will be the primary one.';
|
|
$lng['serversettings']['mxservers']['title'] = 'MX servers';
|
|
$lng['serversettings']['mxservers']['description'] = 'A comma seperated list containing a pair of a number and a hostname separated by whitespace (e.g. \'10 mx.example.com\') containing the mx servers.';
|
|
|
|
/**
|
|
* CHANGED BETWEEN 1.2.12 and 1.2.13
|
|
*/
|
|
|
|
$lng['mysql']['description'] = 'Here you can create and change your MySQL-databases.<br />The changes are made instantly and the database can be used immediately.<br />At the menu on the left side you find the tool phpMyAdmin with which you can easily administer your database.<br /><br />To use your databases in your own php-scripts use the following settings: (The data in <i>italics</i> have to be changed into the equivalents you typed in!)<br />Hostname: <b><SQL_HOST></b><br />Username: <b><i>databasename</i></b><br />Password: <b><i>the password you\'ve chosen</i></b><br />Database: <b><i>databasename</i></b>';
|
|
|
|
/**
|
|
* ADDED BETWEEN 1.2.12 and 1.2.13
|
|
*/
|
|
|
|
$lng['serversettings']['paging']['title'] = 'Entries per page';
|
|
$lng['serversettings']['paging']['description'] = 'How many entries shall be shown on one page? (0 = disable paging)';
|
|
$lng['error']['ipstillhasdomains'] = 'The IP/Port combination you want to delete still has domains assigned to it, please reassign those to other IP/Port combinations before deleting this IP/Port combination.';
|
|
$lng['error']['cantdeletedefaultip'] = 'You cannot delete the default reseller IP/Port combination, please make another IP/Port combination default for resellers before deleting this IP/Port combination.';
|
|
$lng['error']['cantdeletesystemip'] = 'You cannot delete the last system IP, either create a new IP/Port combination for the system IP or change the system IP.';
|
|
$lng['error']['myipaddress'] = '\'IP\'';
|
|
$lng['error']['myport'] = '\'Port\'';
|
|
$lng['error']['myipdefault'] = 'You need to select an IP/Port combination that should become default.';
|
|
$lng['error']['myipnotdouble'] = 'This IP/Port combination already exists.';
|
|
$lng['error']['admin_domain_emailsystemhostname'] = 'Sorry. You can not use the Server Hostname as email domain';
|
|
$lng['question']['admin_ip_reallydelete'] = 'Do you really want to delete the IP address %s?';
|
|
$lng['admin']['ipsandports']['ipsandports'] = 'IPs and Ports';
|
|
$lng['admin']['ipsandports']['add'] = 'Add IP/Port';
|
|
$lng['admin']['ipsandports']['edit'] = 'Edit IP/Port';
|
|
$lng['admin']['ipsandports']['ipandport'] = 'IP/Port';
|
|
$lng['admin']['ipsandports']['ip'] = 'IP';
|
|
$lng['admin']['ipsandports']['port'] = 'Port';
|
|
|
|
// ADDED IN 1.2.13-rc3
|
|
|
|
$lng['error']['cantchangesystemip'] = 'You cannot change the last system IP, either create another new IP/Port combination for the system IP or change the system IP.';
|
|
$lng['question']['admin_domain_reallydocrootoutofcustomerroot'] = 'Are you sure, you want the document root for this domain, not being within the customer root of the customer?';
|
|
|
|
// ADDED IN 1.2.14-rc1
|
|
|
|
$lng['admin']['memorylimitdisabled'] = 'Disabled';
|
|
$lng['domain']['openbasedirpath'] = 'OpenBasedir-path';
|
|
$lng['domain']['docroot'] = 'Path from field above';
|
|
$lng['domain']['homedir'] = 'Home directory';
|
|
$lng['admin']['valuemandatory'] = 'This value is mandatory';
|
|
$lng['admin']['valuemandatorycompany'] = 'Either "name" and "firstname" or "company" must be filled';
|
|
$lng['menue']['main']['username'] = 'Logged in as: ';
|
|
$lng['panel']['urloverridespath'] = 'URL (overrides path)';
|
|
$lng['panel']['pathorurl'] = 'Path or URL';
|
|
$lng['error']['sessiontimeoutiswrong'] = 'Only numerical "session timeout" is allowed.';
|
|
$lng['error']['maxloginattemptsiswrong'] = 'Only numerical "max login attempts" are allowed.';
|
|
$lng['error']['deactivatetimiswrong'] = 'Only numerical "deactivation time" is allowed.';
|
|
$lng['error']['accountprefixiswrong'] = 'The "customerprefix" is wrong.';
|
|
$lng['error']['mysqlprefixiswrong'] = 'The "SQL prefix" is wrong.';
|
|
$lng['error']['ftpprefixiswrong'] = 'The "FTP prefix" is wrong.';
|
|
$lng['error']['ipiswrong'] = 'The "IP-address" is wrong. Only a valid IP-address is allowed.';
|
|
$lng['error']['vmailuidiswrong'] = 'The "mails-uid" is wrong. Only a numerical UID is allowed.';
|
|
$lng['error']['vmailgidiswrong'] = 'The "mails-gid" is wrong. Only a numerical GID is allowed.';
|
|
$lng['error']['adminmailiswrong'] = 'The "sender-address" is wrong. Only a valid email-address is allowed.';
|
|
$lng['error']['pagingiswrong'] = 'The "entries per page"-value is wrong. Only numerical characters are allowed.';
|
|
$lng['error']['phpmyadminiswrong'] = 'The phpMyAdmin-link is not a valid link.';
|
|
$lng['error']['webmailiswrong'] = 'The webmail-link is not a valid link.';
|
|
$lng['error']['webftpiswrong'] = 'The WebFTP-link is not a valid link.';
|
|
$lng['domains']['hasaliasdomains'] = 'Has alias domain(s)';
|
|
$lng['serversettings']['defaultip']['title'] = 'Default IP/Port';
|
|
$lng['serversettings']['defaultip']['description'] = 'What\'s the default IP/Port combination?';
|
|
$lng['domains']['statstics'] = 'Usage Statistics';
|
|
$lng['panel']['ascending'] = 'ascending';
|
|
$lng['panel']['decending'] = 'decending';
|
|
$lng['panel']['search'] = 'Search';
|
|
$lng['panel']['used'] = 'used';
|
|
|
|
// ADDED IN 1.2.14-rc3
|
|
|
|
$lng['panel']['translator'] = 'Translator';
|
|
|
|
// ADDED IN 1.2.14-rc4
|
|
|
|
$lng['error']['stringformaterror'] = 'The value for the field "%s" is not in the expected format.';
|
|
|
|
// ADDED IN 1.2.15-rc1
|
|
|
|
$lng['admin']['serversoftware'] = 'Serversoftware';
|
|
$lng['admin']['phpversion'] = 'PHP-Version';
|
|
$lng['admin']['phpmemorylimit'] = 'PHP-Memory-Limit';
|
|
$lng['admin']['mysqlserverversion'] = 'MySQL Server Version';
|
|
$lng['admin']['mysqlclientversion'] = 'MySQL Client Version';
|
|
$lng['admin']['webserverinterface'] = 'Webserver Interface';
|
|
$lng['domains']['isassigneddomain'] = 'Is assigned domain';
|
|
$lng['serversettings']['phpappendopenbasedir']['title'] = 'Paths to append to OpenBasedir';
|
|
$lng['serversettings']['phpappendopenbasedir']['description'] = 'These paths (separated by colons) will be added to the OpenBasedir-statement in every vHost-container.';
|
|
|
|
// CHANGED IN 1.2.15-rc1
|
|
|
|
$lng['error']['loginnameissystemaccount'] = 'You cannot create accounts which are similar to system accounts (as for example begin with "%s"). Please enter another account name.';
|
|
$lng['error']['youcantdeleteyourself'] = 'You cannot delete yourself for security reasons.';
|
|
$lng['error']['youcanteditallfieldsofyourself'] = 'Note: You cannot edit all fields of your own account for security reasons.';
|
|
|
|
// ADDED IN 1.2.16-svn1
|
|
|
|
$lng['serversettings']['natsorting']['title'] = 'Use natural human sorting in list view';
|
|
$lng['serversettings']['natsorting']['description'] = 'Sorts lists as web1 -> web2 -> web11 instead of web1 -> web11 -> web2.';
|
|
|
|
// ADDED IN 1.2.16-svn2
|
|
|
|
$lng['serversettings']['deactivateddocroot']['title'] = 'Docroot for deactivated users';
|
|
$lng['serversettings']['deactivateddocroot']['description'] = 'When a user is deactivated this path is used as his docroot. Leave empty for not creating a vHost at all.';
|
|
|
|
// ADDED IN 1.2.16-svn4
|
|
|
|
$lng['panel']['reset'] = 'discard changes';
|
|
$lng['admin']['accountsettings'] = 'Account settings';
|
|
$lng['admin']['panelsettings'] = 'Panel settings';
|
|
$lng['admin']['systemsettings'] = 'System settings';
|
|
$lng['admin']['webserversettings'] = 'Webserver settings';
|
|
$lng['admin']['mailserversettings'] = 'Mailserver settings';
|
|
$lng['admin']['nameserversettings'] = 'Nameserver settings';
|
|
$lng['admin']['updatecounters'] = 'Recalculate resource usage';
|
|
$lng['question']['admin_counters_reallyupdate'] = 'Do you really want to recalculate resource usage?';
|
|
$lng['panel']['pathDescription'] = 'If the directory doesn\'t exist, it will be created automatically.';
|
|
$lng['panel']['pathDescriptionEx'] = '<br /><br />If you want a redirect to another domain than this entry has to start with http:// or https://';
|
|
|
|
// ADDED IN 1.2.16-svn6
|
|
|
|
$lng['admin']['templates']['TRAFFIC'] = 'Replaced with the traffic in mB, which was assigned to the customer.';
|
|
$lng['admin']['templates']['TRAFFICUSED'] = 'Replaced with the traffic in MB, which was exhausted by the customer.';
|
|
|
|
// ADDED IN 1.2.16-svn7
|
|
|
|
$lng['admin']['subcanemaildomain']['never'] = 'Never';
|
|
$lng['admin']['subcanemaildomain']['choosableno'] = 'Choosable, default no';
|
|
$lng['admin']['subcanemaildomain']['choosableyes'] = 'Choosable, default yes';
|
|
$lng['admin']['subcanemaildomain']['always'] = 'Always';
|
|
$lng['changepassword']['also_change_webalizer'] = ' also change password of the webalizer statistics';
|
|
|
|
// ADDED IN 1.2.16-svn8
|
|
|
|
$lng['serversettings']['mailpwcleartext']['title'] = 'Also save passwords of mail accounts unencrypted in database';
|
|
$lng['serversettings']['mailpwcleartext']['description'] = 'If this is set to yes, all passwords will also be saved unencrypted (clear text, plain readable for everyone with database access) in the mail_users-table. Only activate this if you intend to use SASL!';
|
|
$lng['serversettings']['mailpwcleartext']['removelink'] = 'Click here to wipe all unencrypted passwords from the table.';
|
|
$lng['question']['admin_cleartextmailpws_reallywipe'] = 'Do you really want to wipe all unencrypted mail account passwords from the table mail_users? This cannot be reverted!';
|
|
$lng['admin']['configfiles']['overview'] = 'Overview';
|
|
$lng['admin']['configfiles']['wizard'] = 'Wizard';
|
|
$lng['admin']['configfiles']['distribution'] = 'Distribution';
|
|
$lng['admin']['configfiles']['service'] = 'Service';
|
|
$lng['admin']['configfiles']['daemon'] = 'Daemon';
|
|
$lng['admin']['configfiles']['http'] = 'Webserver (HTTP)';
|
|
$lng['admin']['configfiles']['dns'] = 'Nameserver (DNS)';
|
|
$lng['admin']['configfiles']['mail'] = 'Mailserver (IMAP/POP3)';
|
|
$lng['admin']['configfiles']['smtp'] = 'Mailserver (SMTP)';
|
|
$lng['admin']['configfiles']['ftp'] = 'FTP-Server';
|
|
$lng['admin']['configfiles']['etc'] = 'Others (System)';
|
|
$lng['admin']['configfiles']['choosedistribution'] = '-- Choose a distribution --';
|
|
$lng['admin']['configfiles']['chooseservice'] = '-- Choose a service --';
|
|
$lng['admin']['configfiles']['choosedaemon'] = '-- Choose a daemon --';
|
|
|
|
// ADDED IN 1.2.16-svn10
|
|
|
|
$lng['serversettings']['ftpdomain']['title'] = 'FTP accounts @domain';
|
|
$lng['serversettings']['ftpdomain']['description'] = 'Customers can create FTP accounts user@customerdomain?';
|
|
$lng['panel']['back'] = 'Back';
|
|
|
|
// ADDED IN 1.2.16-svn12
|
|
|
|
$lng['serversettings']['mod_log_sql']['title'] = 'Temporary save logs in the database';
|
|
$lng['serversettings']['mod_log_sql']['description'] = 'Use <a target="blank" href="http://www.outoforder.cc/projects/apache/mod_log_sql/" title="mod_log_sql">mod_log_sql</a> to save webrequests temporarily<br /><b>This needs a special <a target="blank" href="http://files.froxlor.org/docs/mod_log_sql/" title="mod_log_sql - documentation">apache-configuration</a>!</b>';
|
|
$lng['serversettings']['mod_fcgid']['title'] = 'Enable FCGID';
|
|
$lng['serversettings']['mod_fcgid']['description'] = 'Use this to run PHP with the corresponding useraccount.<br /><br /><b>This needs a special webserver configuration for Apache, see <a target="blank" href="http://redmine.froxlor.org/projects/froxlor/wiki/FCGID_-_handbook">FCGI - handbook</a></b>';
|
|
$lng['serversettings']['sendalternativemail']['title'] = 'Use alternative email-address';
|
|
$lng['serversettings']['sendalternativemail']['description'] = 'Send the password-email to a different address during email-account-creation';
|
|
$lng['emails']['alternative_emailaddress'] = 'Alternative e-mail-address';
|
|
$lng['mails']['pop_success_alternative']['mailbody'] = 'Hello,\n\nyour Mail account {EMAIL}\nwas set up successfully.\nYour password is {PASSWORD}.\n\nThis is an automatically created\ne-mail, please do not answer!\n\nYours sincerely, the Froxlor-Team';
|
|
$lng['mails']['pop_success_alternative']['subject'] = 'Mail account set up successfully';
|
|
$lng['admin']['templates']['pop_success_alternative'] = 'Welcome mail for new email accounts sent to alternative address';
|
|
$lng['admin']['templates']['EMAIL_PASSWORD'] = 'Replaced with the POP3/IMAP account password.';
|
|
|
|
// ADDED IN 1.2.16-svn13
|
|
|
|
$lng['error']['documentrootexists'] = 'The directory "%s" already exists for this customer. Please remove this before adding the customer again.';
|
|
|
|
// ADDED IN 1.2.16-svn14
|
|
|
|
$lng['serversettings']['apacheconf_vhost']['title'] = 'Webserver vHost configuration file/dirname';
|
|
$lng['serversettings']['apacheconf_vhost']['description'] = 'Where should the vHost configuration be stored? You could either specify a file (all vHosts in one file) or directory (each vHost in his own file) here.';
|
|
$lng['serversettings']['apacheconf_diroptions']['title'] = 'Webserver diroptions configuration file/dirname';
|
|
$lng['serversettings']['apacheconf_diroptions']['description'] = 'Where should the diroptions configuration be stored? You could either specify a file (all diroptions in one file) or directory (each diroption in his own file) here.';
|
|
$lng['serversettings']['apacheconf_htpasswddir']['title'] = 'Webserver htpasswd dirname';
|
|
$lng['serversettings']['apacheconf_htpasswddir']['description'] = 'Where should the htpasswd files for directory protection be stored?';
|
|
|
|
// ADDED IN 1.2.16-svn15
|
|
|
|
$lng['error']['formtokencompromised'] = 'The request seems to be compromised. For security reasons you were logged out.';
|
|
$lng['serversettings']['mysql_access_host']['title'] = 'MySQL-Access-Hosts';
|
|
$lng['serversettings']['mysql_access_host']['description'] = 'A comma separated list of hosts from which users should be allowed to connect to the MySQL-Server.';
|
|
|
|
// ADDED IN 1.2.18-svn1
|
|
|
|
$lng['admin']['ipsandports']['create_listen_statement'] = 'Create Listen statement';
|
|
$lng['admin']['ipsandports']['create_namevirtualhost_statement'] = 'Create NameVirtualHost statement';
|
|
$lng['admin']['ipsandports']['create_vhostcontainer'] = 'Create vHost-Container';
|
|
$lng['admin']['ipsandports']['create_vhostcontainer_servername_statement'] = 'Create ServerName statement in vHost-Container';
|
|
|
|
// ADDED IN 1.2.18-svn2
|
|
|
|
$lng['admin']['webalizersettings'] = 'Webalizer settings';
|
|
$lng['admin']['webalizer']['normal'] = 'Normal';
|
|
$lng['admin']['webalizer']['quiet'] = 'Quiet';
|
|
$lng['admin']['webalizer']['veryquiet'] = 'No output';
|
|
$lng['serversettings']['webalizer_quiet']['title'] = 'Webalizer output';
|
|
$lng['serversettings']['webalizer_quiet']['description'] = 'Verbosity of the webalizer-program';
|
|
|
|
// ADDED IN 1.2.18-svn3
|
|
|
|
$lng['ticket']['admin_email'] = 'root@localhost';
|
|
$lng['ticket']['noreply_email'] = 'tickets@froxlor';
|
|
$lng['admin']['ticketsystem'] = 'Support-tickets';
|
|
$lng['menue']['ticket']['ticket'] = 'Support tickets';
|
|
$lng['menue']['ticket']['categories'] = 'Support categories';
|
|
$lng['menue']['ticket']['archive'] = 'Ticket-archive';
|
|
$lng['ticket']['description'] = 'Here you can send help-requests to your responsible administrator.<br />Notifications will be sent via e-mail.';
|
|
$lng['ticket']['ticket_new'] = 'Open a new ticket';
|
|
$lng['ticket']['ticket_reply'] = 'Answer ticket';
|
|
$lng['ticket']['ticket_reopen'] = 'Reopen ticket';
|
|
$lng['ticket']['ticket_newcateory'] = 'Create new category';
|
|
$lng['ticket']['ticket_editcateory'] = 'Edit category';
|
|
$lng['ticket']['ticket_view'] = 'View ticketcourse';
|
|
$lng['ticket']['ticketcount'] = 'Tickets';
|
|
$lng['ticket']['ticket_answers'] = 'Replies';
|
|
$lng['ticket']['lastchange'] = 'Last action';
|
|
$lng['ticket']['subject'] = 'Subject';
|
|
$lng['ticket']['status'] = 'Status';
|
|
$lng['ticket']['lastreplier'] = 'Last replier';
|
|
$lng['ticket']['priority'] = 'Priority';
|
|
$lng['ticket']['low'] = 'Low';
|
|
$lng['ticket']['normal'] = 'Normal';
|
|
$lng['ticket']['high'] = 'High';
|
|
$lng['ticket']['lastchange'] = 'Last change';
|
|
$lng['ticket']['lastchange_from'] = 'From date (dd.mm.yyyy)';
|
|
$lng['ticket']['lastchange_to'] = 'To date (dd.mm.yyyy)';
|
|
$lng['ticket']['category'] = 'Category';
|
|
$lng['ticket']['no_cat'] = 'None';
|
|
$lng['ticket']['message'] = 'Message';
|
|
$lng['ticket']['show'] = 'View';
|
|
$lng['ticket']['answer'] = 'Answer';
|
|
$lng['ticket']['close'] = 'Close';
|
|
$lng['ticket']['reopen'] = 'Re-open';
|
|
$lng['ticket']['archive'] = 'Archive';
|
|
$lng['ticket']['ticket_delete'] = 'Delete ticket';
|
|
$lng['ticket']['lastarchived'] = 'Recently archived tickets';
|
|
$lng['ticket']['archivedtime'] = 'Archived';
|
|
$lng['ticket']['open'] = 'Open';
|
|
$lng['ticket']['wait_reply'] = 'Waiting for reply';
|
|
$lng['ticket']['replied'] = 'Replied';
|
|
$lng['ticket']['closed'] = 'Closed';
|
|
$lng['ticket']['staff'] = 'Staff';
|
|
$lng['ticket']['customer'] = 'Customer';
|
|
$lng['ticket']['old_tickets'] = 'Ticket messages';
|
|
$lng['ticket']['search'] = 'Search archive';
|
|
$lng['ticket']['nocustomer'] = 'No choice';
|
|
$lng['ticket']['archivesearch'] = 'Archive searchresults';
|
|
$lng['ticket']['noresults'] = 'No tickets found';
|
|
$lng['ticket']['notmorethanxopentickets'] = 'Due to spam-protection you cannot have more than %s open tickets';
|
|
$lng['ticket']['supportstatus'] = 'Support-Status';
|
|
$lng['ticket']['supportavailable'] = '<span class="ticket_low">Our support engineers are available and ready to assist.</span>';
|
|
$lng['ticket']['supportnotavailable'] = '<span class="ticket_high">Our support engineers are currently not available</span>';
|
|
$lng['admin']['templates']['ticket'] = 'Notification-mails for support-tickets';
|
|
$lng['admin']['templates']['SUBJECT'] = 'Replaced with the support-ticket subject';
|
|
$lng['admin']['templates']['new_ticket_for_customer'] = 'Customer-information that the ticket has been sent';
|
|
$lng['admin']['templates']['new_ticket_by_customer'] = 'Admin-notification for a ticket opened by a customer';
|
|
$lng['admin']['templates']['new_reply_ticket_by_customer'] = 'Admin-notification for a ticket-reply by a customer';
|
|
$lng['admin']['templates']['new_ticket_by_staff'] = 'Customer-notification for a ticket opened by a staff';
|
|
$lng['admin']['templates']['new_reply_ticket_by_staff'] = 'Customer-notification for a ticket-reply by a staff';
|
|
$lng['mails']['new_ticket_for_customer']['mailbody'] = 'Hello {FIRSTNAME} {NAME},\n\nyour support-ticket with the subject "{SUBJECT}" has been sent.\n\nYou will be notified when your ticket has been answered.\n\nThank you,\nthe Froxlor-Team';
|
|
$lng['mails']['new_ticket_for_customer']['subject'] = 'Your support ticket has been sent';
|
|
$lng['mails']['new_ticket_by_customer']['mailbody'] = 'Hello admin,\n\na new support-ticket with the subject "{SUBJECT}" has been submitted.\n\nPlease login to open the ticket.\n\nThank you,\nthe Froxlor-Team';
|
|
$lng['mails']['new_ticket_by_customer']['subject'] = 'New support ticket submitted';
|
|
$lng['mails']['new_reply_ticket_by_customer']['mailbody'] = 'Hello admin,\n\nthe support-ticket "{SUBJECT}" has been answered by a customer.\n\nPlease login to open the ticket.\n\nThank you,\nthe Froxlor-Team';
|
|
$lng['mails']['new_reply_ticket_by_customer']['subject'] = 'New reply to support ticket';
|
|
$lng['mails']['new_ticket_by_staff']['mailbody'] = 'Hello {FIRSTNAME} {NAME},\n\na support-ticket with the subject "{SUBJECT}" has been opened for you.\n\nPlease login to open the ticket.\n\nThank you,\nthe Froxlor-Team';
|
|
$lng['mails']['new_ticket_by_staff']['subject'] = 'New support ticket submitted';
|
|
$lng['mails']['new_reply_ticket_by_staff']['mailbody'] = 'Hello {FIRSTNAME} {NAME},\n\nthe support-ticket with the subject "{SUBJECT}" has been answered by our staff.\n\nPlease login to view the ticket.\n\nThank you,\nthe Froxlor-Team';
|
|
$lng['mails']['new_reply_ticket_by_staff']['subject'] = 'New reply to support ticket';
|
|
$lng['question']['ticket_reallyclose'] = 'Do you really want to close the ticket "%s"?';
|
|
$lng['question']['ticket_reallydelete'] = 'Do you really want to delete the ticket "%s"?';
|
|
$lng['question']['ticket_reallydeletecat'] = 'Do you really want to delete the category "%s"?';
|
|
$lng['question']['ticket_reallyarchive'] = 'Do you really want to move the ticket "%s" to the archive?';
|
|
$lng['error']['mysubject'] = '\'' . $lng['ticket']['subject'] . '\'';
|
|
$lng['error']['mymessage'] = '\'' . $lng['ticket']['message'] . '\'';
|
|
$lng['error']['mycategory'] = '\'' . $lng['ticket']['category'] . '\'';
|
|
$lng['error']['nomoreticketsavailable'] = 'You have used all your available tickets. Please contact your administrator.';
|
|
$lng['error']['nocustomerforticket'] = 'Cannot create tickets without customers';
|
|
$lng['error']['categoryhastickets'] = 'The category still has tickets in it.<br />Please delete the tickets to delete the category';
|
|
$lng['error']['notmorethanxopentickets'] = $lng['ticket']['notmorethanxopentickets'];
|
|
$lng['admin']['ticketsettings'] = 'Support-Ticket settings';
|
|
$lng['admin']['archivelastrun'] = 'Last ticket archiving';
|
|
$lng['serversettings']['ticket']['noreply_email']['title'] = 'No-reply e-mail address';
|
|
$lng['serversettings']['ticket']['noreply_email']['description'] = 'The sender-address for support-ticket, mostly something like no-reply@domain.tld';
|
|
$lng['serversettings']['ticket']['worktime_begin']['title'] = 'Begin support-time (hh:mm)';
|
|
$lng['serversettings']['ticket']['worktime_begin']['description'] = 'Start-time when support is available';
|
|
$lng['serversettings']['ticket']['worktime_end']['title'] = 'End support-time (hh:mm)';
|
|
$lng['serversettings']['ticket']['worktime_end']['description'] = 'End-time when support is available';
|
|
$lng['serversettings']['ticket']['worktime_sat'] = 'Support available on saturdays?';
|
|
$lng['serversettings']['ticket']['worktime_sun'] = 'Support available on sundays?';
|
|
$lng['serversettings']['ticket']['worktime_all']['title'] = 'No time limit for support';
|
|
$lng['serversettings']['ticket']['worktime_all']['description'] = 'If "Yes" the options for start- and endtime will be overwritten';
|
|
$lng['serversettings']['ticket']['archiving_days'] = 'After how many days should closed tickets be archived?';
|
|
$lng['customer']['tickets'] = 'Support-tickets';
|
|
|
|
// ADDED IN 1.2.18-svn4
|
|
|
|
$lng['admin']['domain_nocustomeraddingavailable'] = 'It\'s not possible to add a domain currently. You first need to add at least one customer.';
|
|
$lng['serversettings']['ticket']['enable'] = 'Enable ticketsystem';
|
|
$lng['serversettings']['ticket']['concurrentlyopen'] = 'How many tickets shall be able to be opened at one time?';
|
|
$lng['error']['norepymailiswrong'] = 'The "Noreply-address" is wrong. Only a valid email-address is allowed.';
|
|
$lng['error']['tadminmailiswrong'] = 'The "Ticketadmin-address" is wrong. Only a valid email-address is allowed.';
|
|
$lng['ticket']['awaitingticketreply'] = 'You have %s unanswered support-ticket(s)';
|
|
|
|
// ADDED IN 1.2.18-svn5
|
|
|
|
$lng['serversettings']['ticket']['noreply_name'] = 'Ticket e-mail sendername';
|
|
|
|
// ADDED IN 1.2.19-svn1
|
|
|
|
$lng['serversettings']['mod_fcgid']['configdir']['title'] = 'Configuration directory';
|
|
$lng['serversettings']['mod_fcgid']['configdir']['description'] = 'Where should all fcgid-configuration files be stored? If you don\'t use a self compiled suexec binary, which is the normal situation, this path must be under /var/www/<br /><br /><div style="color:red">NOTE: This folder\'s content gets deleted regulary so avoid storing data in there manually.</div>';
|
|
$lng['serversettings']['mod_fcgid']['tmpdir']['title'] = 'Temp directory';
|
|
|
|
// ADDED IN 1.2.19-svn3
|
|
|
|
$lng['serversettings']['ticket']['reset_cycle']['title'] = 'Reset used tickets cycle';
|
|
$lng['serversettings']['ticket']['reset_cycle']['description'] = 'Reset the customers used ticket counter to 0 in the chosen cycle';
|
|
$lng['admin']['tickets']['daily'] = 'Daily';
|
|
$lng['admin']['tickets']['weekly'] = 'Weekly';
|
|
$lng['admin']['tickets']['monthly'] = 'Monthly';
|
|
$lng['admin']['tickets']['yearly'] = 'Yearly';
|
|
$lng['error']['ticketresetcycleiswrong'] = 'The cycle for ticket-resets has to be "daily", "weekly", "monthly" or "yearly".';
|
|
|
|
// ADDED IN 1.2.19-svn4
|
|
|
|
$lng['menue']['traffic']['traffic'] = 'Traffic';
|
|
$lng['menue']['traffic']['current'] = 'Current Month';
|
|
$lng['traffic']['month'] = "Month";
|
|
$lng['traffic']['day'] = "Day";
|
|
$lng['traffic']['months'][1] = "January";
|
|
$lng['traffic']['months'][2] = "February";
|
|
$lng['traffic']['months'][3] = "March";
|
|
$lng['traffic']['months'][4] = "April";
|
|
$lng['traffic']['months'][5] = "May";
|
|
$lng['traffic']['months'][6] = "June";
|
|
$lng['traffic']['months'][7] = "July";
|
|
$lng['traffic']['months'][8] = "August";
|
|
$lng['traffic']['months'][9] = "September";
|
|
$lng['traffic']['months'][10] = "October";
|
|
$lng['traffic']['months'][11] = "November";
|
|
$lng['traffic']['months'][12] = "December";
|
|
$lng['traffic']['mb'] = "Traffic (MB)";
|
|
$lng['traffic']['distribution'] = '<font color="#019522">FTP</font> | <font color="#0000FF">HTTP</font> | <font color="#800000">Mail</font>';
|
|
$lng['traffic']['sumhttp'] = 'Summation HTTP-Traffic in';
|
|
$lng['traffic']['sumftp'] = 'Summation FTP-Traffic in';
|
|
$lng['traffic']['summail'] = 'Summation Mail-Traffic in';
|
|
|
|
// ADDED IN 1.2.19-svn4.5
|
|
|
|
$lng['serversettings']['no_robots']['title'] = 'Allow searchengine-robots to index your Froxlor installation';
|
|
|
|
// ADDED IN 1.2.19-svn6
|
|
|
|
$lng['admin']['loggersettings'] = 'Log settings';
|
|
$lng['serversettings']['logger']['enable'] = 'Logging enabled/disabled';
|
|
$lng['serversettings']['logger']['severity'] = 'Logging level';
|
|
$lng['admin']['logger']['normal'] = 'normal';
|
|
$lng['admin']['logger']['paranoid'] = 'paranoid';
|
|
$lng['serversettings']['logger']['types']['title'] = 'Log-type(s)';
|
|
$lng['serversettings']['logger']['types']['description'] = 'Specify logtypes. To select multiple types, hold down CTRL while selecting.<br />Available logtypes are: syslog, file, mysql';
|
|
$lng['serversettings']['logger']['logfile'] = 'Logfile path including filename';
|
|
$lng['error']['logerror'] = 'Log-Error: %s';
|
|
$lng['serversettings']['logger']['logcron'] = 'Log cronjobs (one run)';
|
|
$lng['question']['logger_reallytruncate'] = 'Do you really want to truncate the table "%s"?';
|
|
$lng['admin']['loggersystem'] = 'System-logging';
|
|
$lng['menue']['logger']['logger'] = 'System-logging';
|
|
$lng['logger']['date'] = 'Date';
|
|
$lng['logger']['type'] = 'Type';
|
|
$lng['logger']['action'] = 'Action';
|
|
$lng['logger']['user'] = 'User';
|
|
$lng['logger']['truncate'] = 'Empty log';
|
|
|
|
// ADDED IN 1.2.19-svn7
|
|
|
|
$lng['serversettings']['ssl']['use_ssl'] = 'Use SSL';
|
|
$lng['serversettings']['ssl']['ssl_cert_file'] = 'Path to the SSL certificate';
|
|
$lng['serversettings']['ssl']['openssl_cnf'] = 'Defaults for creating the Cert file';
|
|
$lng['panel']['reseller'] = 'reseller';
|
|
$lng['panel']['admin'] = 'admin';
|
|
$lng['panel']['customer'] = 'customer/s';
|
|
$lng['error']['nomessagetosend'] = 'You did not enter a message.';
|
|
$lng['error']['noreceipientsgiven'] = 'You did not specify any receipient';
|
|
$lng['admin']['emaildomain'] = 'Emaildomain';
|
|
$lng['admin']['email_only'] = 'Only email?';
|
|
$lng['admin']['wwwserveralias'] = 'Add a "www." ServerAlias';
|
|
$lng['admin']['ipsandports']['enable_ssl'] = 'Is this an SSL Port?';
|
|
$lng['admin']['ipsandports']['ssl_cert_file'] = 'Path to the SSL Certificate';
|
|
$lng['panel']['send'] = 'send';
|
|
$lng['admin']['subject'] = 'Subject';
|
|
$lng['admin']['receipient'] = 'Recipient';
|
|
$lng['admin']['message'] = 'Write a Message';
|
|
$lng['admin']['text'] = 'Message';
|
|
$lng['menu']['message'] = 'Messages';
|
|
$lng['error']['errorsendingmail'] = 'The message to "%s" failed';
|
|
$lng['error']['cannotreaddir'] = 'Unable to read directory "%s"';
|
|
$lng['message']['success'] = 'Successfully sent message to %s recipients';
|
|
$lng['message']['noreceipients'] = 'No e-mail has been sent because there are no recipients in the database';
|
|
$lng['admin']['sslsettings'] = 'SSL settings';
|
|
$lng['cronjobs']['notyetrun'] = 'Not yet run';
|
|
$lng['install']['servername_should_be_fqdn'] = 'The servername should be a FQDN and not an IP address';
|
|
$lng['serversettings']['default_vhostconf']['title'] = 'Default vHost-settings';
|
|
$lng['serversettings']['default_vhostconf']['description'] = 'The content of this field will be included into the domain vHost container directly. Attention: The code won\'t be checked for any errors. If it contains errors, webserver might not start again!';
|
|
$lng['error']['invalidip'] = 'Invalid IP address: %s';
|
|
$lng['serversettings']['decimal_places'] = 'Number of decimal places in traffic/webspace output';
|
|
|
|
// ADDED IN 1.2.19-svn8
|
|
|
|
$lng['admin']['dkimsettings'] = 'DomainKey settings';
|
|
$lng['dkim']['dkim_prefix']['title'] = 'Prefix';
|
|
$lng['dkim']['dkim_prefix']['description'] = 'Please specify the path to the DKIM RSA-files as well as to the configuration files for the Milter-plugin';
|
|
$lng['dkim']['dkim_domains']['title'] = 'Domains filename';
|
|
$lng['dkim']['dkim_domains']['description'] = '<em>Filename</em> of the DKIM Domains parameter specified in the dkim-milter configuration';
|
|
$lng['dkim']['dkim_dkimkeys']['title'] = 'KeyList filename';
|
|
$lng['dkim']['dkim_dkimkeys']['description'] = '<em>Filename</em> of the DKIM KeyList parameter specified in the dkim-milter configuration';
|
|
$lng['dkim']['dkimrestart_command']['title'] = 'Milter restart command';
|
|
$lng['dkim']['dkimrestart_command']['description'] = 'Please specify the restart command for the DKIM milter service';
|
|
|
|
// ADDED IN 1.2.19-svn9
|
|
|
|
$lng['admin']['caneditphpsettings'] = 'Can change php-related domain settings?';
|
|
|
|
// ADDED IN 1.2.19-svn12
|
|
|
|
$lng['admin']['allips'] = 'All IP\'s';
|
|
$lng['panel']['nosslipsavailable'] = 'There are currently no ssl ip/port combinations for this server';
|
|
$lng['ticket']['by'] = 'by';
|
|
$lng['dkim']['use_dkim']['title'] = 'Activate DKIM support?';
|
|
$lng['dkim']['use_dkim']['description'] = 'Would you like to use the Domain Keys (DKIM) system?';
|
|
$lng['error']['invalidmysqlhost'] = 'Invalid MySQL host address: %s';
|
|
$lng['error']['cannotuseawstatsandwebalizeratonetime'] = 'You cannot enable Webalizer and AWstats at the same time, please chose one of them';
|
|
$lng['serversettings']['webalizer_enabled'] = 'Enable webalizer statistics';
|
|
$lng['serversettings']['awstats_enabled'] = 'Enable AWstats statistics';
|
|
$lng['admin']['awstatssettings'] = 'AWstats settings';
|
|
|
|
// ADDED IN 1.2.19-svn16
|
|
|
|
$lng['admin']['domain_dns_settings'] = 'Domain dns settings';
|
|
$lng['dns']['destinationip'] = 'Domain IP';
|
|
$lng['dns']['standardip'] = 'Server standard IP';
|
|
$lng['dns']['a_record'] = 'A-Record (IPv6 optional)';
|
|
$lng['dns']['cname_record'] = 'CNAME-Record';
|
|
$lng['dns']['mxrecords'] = 'Define MX records';
|
|
$lng['dns']['standardmx'] = 'Server tandard MX record';
|
|
$lng['dns']['mxconfig'] = 'Custom MX records';
|
|
$lng['dns']['priority10'] = 'Priority 10';
|
|
$lng['dns']['priority20'] = 'Priority 20';
|
|
$lng['dns']['txtrecords'] = 'Define TXT records';
|
|
$lng['dns']['txtexample'] = 'Example (SPF-entry):<br />v=spf1 ip4:xxx.xxx.xx.0/23 -all';
|
|
$lng['serversettings']['selfdns']['title'] = 'Customer domain dns settings';
|
|
$lng['serversettings']['selfdnscustomer']['title'] = 'Allow customers to edit domain dns settings';
|
|
$lng['admin']['activated'] = 'Activated';
|
|
$lng['admin']['statisticsettings'] = 'Statistic settings';
|
|
$lng['admin']['or'] = 'or';
|
|
|
|
// ADDED IN 1.2.19-svn17
|
|
|
|
$lng['serversettings']['unix_names']['title'] = 'Use UNIX compatible usernames';
|
|
$lng['serversettings']['unix_names']['description'] = 'Allows you to use <strong>-</strong> and <strong>_</strong> in usernames if <strong>No</strong>';
|
|
$lng['error']['cannotwritetologfile'] = 'Cannot open logfile %s for writing';
|
|
$lng['admin']['sysload'] = 'System load';
|
|
$lng['admin']['noloadavailable'] = 'not available';
|
|
$lng['admin']['nouptimeavailable'] = 'not available';
|
|
$lng['panel']['backtooverview'] = 'Back to overview';
|
|
$lng['admin']['nosubject'] = '(No Subject)';
|
|
$lng['admin']['configfiles']['statistics'] = 'Statistics';
|
|
$lng['login']['forgotpwd'] = 'Forgot your password?';
|
|
$lng['login']['presend'] = 'Reset password';
|
|
$lng['login']['email'] = 'E-mail address';
|
|
$lng['login']['remind'] = 'Reset my password';
|
|
$lng['login']['usernotfound'] = 'User not found!';
|
|
$lng['pwdreminder']['subject'] = 'Froxlor - Password reset';
|
|
$lng['pwdreminder']['body'] = 'Hello %s,\n\nyour froxlor password has been reset!\nThe new password is: %p\n\nThank you,\nthe Froxlor-Team';
|
|
$lng['pwdreminder']['success'] = 'Password reset successfully.<br />You now should receive an email with your new password.';
|
|
|
|
// ADDED IN 1.2.19-svn18
|
|
|
|
$lng['serversettings']['allow_password_reset']['title'] = 'Allow password reset by customers';
|
|
$lng['pwdreminder']['notallowed'] = 'Password reset is disabled';
|
|
|
|
// ADDED IN 1.2.19-svn21
|
|
|
|
$lng['customer']['title'] = 'Title';
|
|
$lng['customer']['country'] = 'Country';
|
|
$lng['panel']['dateformat'] = 'YYYY-MM-DD';
|
|
$lng['panel']['dateformat_function'] = 'Y-m-d';
|
|
|
|
// Y = Year, m = Month, d = Day
|
|
|
|
$lng['panel']['timeformat_function'] = 'H:i:s';
|
|
|
|
// H = Hour, i = Minute, s = Second
|
|
|
|
$lng['panel']['default'] = 'Default';
|
|
$lng['panel']['never'] = 'Never';
|
|
$lng['panel']['active'] = 'Active';
|
|
$lng['panel']['please_choose'] = 'Please choose';
|
|
$lng['panel']['allow_modifications'] = 'Allow modifications';
|
|
$lng['domains']['add_date'] = 'Added to Froxlor';
|
|
$lng['domains']['registration_date'] = 'Added at registry';
|
|
$lng['domains']['topleveldomain'] = 'Top-Level-Domain';
|
|
|
|
// ADDED IN 1.2.19-svn22
|
|
|
|
$lng['serversettings']['allow_password_reset']['description'] = 'Customers can reset their password and a new password will be sent to their e-mail address';
|
|
$lng['serversettings']['allow_password_reset_admin']['title'] = 'Allow password reset by admins';
|
|
$lng['serversettings']['allow_password_reset_admin']['description'] = 'Admins/reseller can reset their password and a new password will be sent to their e-mail address';
|
|
|
|
// ADDED IN 1.2.19-svn25
|
|
|
|
$lng['emails']['quota'] = 'Quota';
|
|
$lng['emails']['noquota'] = 'No quota';
|
|
$lng['emails']['updatequota'] = 'Update Quota';
|
|
$lng['serversettings']['mail_quota']['title'] = 'Mailbox-quota';
|
|
$lng['serversettings']['mail_quota']['description'] = 'The default quota for a new created mailboxes (MegaByte).';
|
|
$lng['serversettings']['mail_quota_enabled']['title'] = 'Use mailbox-quota for customers';
|
|
$lng['serversettings']['mail_quota_enabled']['description'] = 'Activate to use quotas on mailboxes. Default is <b>No</b> since this requires a special setup.';
|
|
$lng['serversettings']['mail_quota_enabled']['removelink'] = 'Click here to wipe all quotas for mail accounts.';
|
|
$lng['serversettings']['mail_quota_enabled']['enforcelink'] = 'Click here to enforce default quota to all User mail accounts.';
|
|
$lng['question']['admin_quotas_reallywipe'] = 'Do you really want to wipe all quotas on table mail_users? This cannot be reverted!';
|
|
$lng['question']['admin_quotas_reallyenforce'] = 'Do you really want to enforce the default quota to all Users? This cannot be reverted!';
|
|
$lng['error']['vmailquotawrong'] = 'The quotasize must be positive number.';
|
|
$lng['customer']['email_quota'] = 'E-mail quota';
|
|
$lng['customer']['email_imap'] = 'E-mail IMAP';
|
|
$lng['customer']['email_pop3'] = 'E-mail POP3';
|
|
$lng['customer']['mail_quota'] = 'Mailquota';
|
|
$lng['panel']['megabyte'] = 'MegaByte';
|
|
$lng['panel']['not_supported'] = 'Not supported in: ';
|
|
$lng['emails']['quota_edit'] = 'Change E-Mail Quota';
|
|
$lng['error']['allocatetoomuchquota'] = 'You tried to allocate %s MB ' . $lng['emails']['quota'] . ', but you do not have enough left.';
|
|
|
|
// Autoresponder module
|
|
|
|
$lng['menue']['email']['autoresponder'] = 'Autoresponder';
|
|
$lng['autoresponder']['active'] = 'Active';
|
|
$lng['autoresponder']['autoresponder_add'] = 'Add autoresponder';
|
|
$lng['autoresponder']['autoresponder_edit'] = 'Edit autoresponder';
|
|
$lng['autoresponder']['autoresponder_new'] = 'Create new autoresponder';
|
|
$lng['autoresponder']['subject'] = 'Subject';
|
|
$lng['autoresponder']['message'] = 'Message';
|
|
$lng['autoresponder']['account'] = 'Account';
|
|
$lng['autoresponder']['sender'] = 'Sender';
|
|
$lng['question']['autoresponderdelete'] = 'Do you really want to delete the autoresponder?';
|
|
$lng['error']['noemailaccount'] = 'There can be two reasons why you cannot create a new autoresponder: You need at least one email account to create a new autoresponder. Secondly it can be possible that all accounts already have an autoresponder configured.';
|
|
$lng['error']['missingfields'] = 'Not all required fields were filled out.';
|
|
$lng['error']['accountnotexisting'] = 'The given email account doesn\'t exist.';
|
|
$lng['error']['autoresponderalreadyexists'] = 'There is already an autoresponder configured for this account.';
|
|
$lng['error']['invalidautoresponder'] = 'The given account is invalid.';
|
|
$lng['serversettings']['autoresponder_active']['title'] = 'Use autoresponder module';
|
|
$lng['serversettings']['autoresponder_active']['description'] = 'Do you want to use the autoresponder module?';
|
|
$lng['admin']['security_settings'] = 'Security Options';
|
|
$lng['admin']['know_what_youre_doing'] = 'Change only, if you know what you\'re doing!';
|
|
$lng['admin']['show_version_login']['title'] = 'Show Froxlor version on login';
|
|
$lng['admin']['show_version_login']['description'] = 'Show the Froxlor version in the footer on the login page';
|
|
$lng['admin']['show_version_footer']['title'] = 'Show Froxlor version in footer';
|
|
$lng['admin']['show_version_footer']['description'] = 'Show the Froxlor version in the footer on the rest of the pages';
|
|
$lng['admin']['froxlor_graphic']['title'] = 'Header graphic for Froxlor';
|
|
$lng['admin']['froxlor_graphic']['description'] = 'What graphic should be shown in the header';
|
|
|
|
//improved froxlor
|
|
|
|
$lng['menue']['phpsettings']['maintitle'] = 'PHP Configurations';
|
|
$lng['admin']['phpsettings']['title'] = 'PHP Configuration';
|
|
$lng['admin']['phpsettings']['description'] = 'Short description';
|
|
$lng['admin']['phpsettings']['actions'] = 'Actions';
|
|
$lng['admin']['phpsettings']['activedomains'] = 'In use for domain(s)';
|
|
$lng['admin']['phpsettings']['notused'] = 'Configuration not in use';
|
|
$lng['admin']['misc'] = 'Miscellaneous';
|
|
$lng['admin']['phpsettings']['editsettings'] = 'Change PHP settings';
|
|
$lng['admin']['phpsettings']['addsettings'] = 'Create new PHP settings';
|
|
$lng['admin']['phpsettings']['viewsettings'] = 'View PHP settings';
|
|
$lng['admin']['phpsettings']['phpinisettings'] = 'php.ini settings';
|
|
$lng['error']['nopermissionsorinvalidid'] = 'You don\'t have enough permissions to change these settings or an invalid id was given.';
|
|
$lng['panel']['view'] = 'view';
|
|
$lng['question']['phpsetting_reallydelete'] = 'Do you really want to delete these settings? All domains which use these settings currently will be changed to the default config.';
|
|
$lng['admin']['phpsettings']['addnew'] = 'Create new settings';
|
|
$lng['error']['phpsettingidwrong'] = 'A PHP Configuration with this id doesn\'t exist';
|
|
$lng['error']['descriptioninvalid'] = 'The description is too short, too long or contains illegal characters.';
|
|
$lng['error']['info'] = 'Info';
|
|
$lng['admin']['phpconfig']['template_replace_vars'] = 'Variables that will be replaced in the configs';
|
|
$lng['admin']['phpconfig']['safe_mode'] = 'Will be replaced with the safe_mode setting of the domain.';
|
|
$lng['admin']['phpconfig']['pear_dir'] = 'Will be replaced with the global setting for the pear directory.';
|
|
$lng['admin']['phpconfig']['open_basedir_c'] = 'Will insert a ; (semicolon) to comment-out/disable open_basedir when set';
|
|
$lng['admin']['phpconfig']['open_basedir'] = 'Will be replaced with the open_basedir setting of the domain.';
|
|
$lng['admin']['phpconfig']['tmp_dir'] = 'Will be replaced with the temporary directory of the domain.';
|
|
$lng['admin']['phpconfig']['open_basedir_global'] = 'Will be replaced with the global value of the path which will be attached to the open_basedir.';
|
|
$lng['admin']['phpconfig']['customer_email'] = 'Will be replaced with the e-mail address of the customer who owns this domain.';
|
|
$lng['admin']['phpconfig']['admin_email'] = 'Will be replaced with e-mail address of the admin who owns this domain.';
|
|
$lng['admin']['phpconfig']['domain'] = 'Will be replaced with the domain.';
|
|
$lng['admin']['phpconfig']['customer'] = 'Will be replaced with the loginname of the customer who owns this domain.';
|
|
$lng['admin']['phpconfig']['admin'] = 'Will be replaced with the loginname of the admin who owns this domain.';
|
|
$lng['login']['backtologin'] = 'Back to login';
|
|
$lng['serversettings']['mod_fcgid']['starter']['title'] = 'Processes per Domain';
|
|
$lng['serversettings']['mod_fcgid']['starter']['description'] = 'How many processes should be started/allowed per domain? The value 0 is recommended cause PHP will then manage the amount of processes itself very efficiently.';
|
|
$lng['serversettings']['mod_fcgid']['wrapper']['title'] = 'Wrapper in Vhosts';
|
|
$lng['serversettings']['mod_fcgid']['wrapper']['description'] = 'How should the wrapper be included in the Vhosts';
|
|
$lng['serversettings']['mod_fcgid']['tmpdir']['description'] = 'Where should the temp directories be stored';
|
|
$lng['serversettings']['mod_fcgid']['peardir']['title'] = 'Global PEAR directories';
|
|
$lng['serversettings']['mod_fcgid']['peardir']['description'] = 'Which global PEAR directories should be replaced in every php.ini config? Different directories must be separated by a colon.';
|
|
|
|
//improved Froxlor 2
|
|
|
|
$lng['admin']['templates']['index_html'] = 'index file for newly created customer directories';
|
|
$lng['admin']['templates']['SERVERNAME'] = 'Replaced with the servername.';
|
|
$lng['admin']['templates']['CUSTOMER'] = 'Replaced with the loginname of the customer.';
|
|
$lng['admin']['templates']['ADMIN'] = 'Replaced with the loginname of the admin.';
|
|
$lng['admin']['templates']['CUSTOMER_EMAIL'] = 'Replaced with the e-mail address of the customer.';
|
|
$lng['admin']['templates']['ADMIN_EMAIL'] = 'Replaced with the e-mail address of the admin.';
|
|
$lng['admin']['templates']['filetemplates'] = 'File templates';
|
|
$lng['admin']['templates']['filecontent'] = 'File content';
|
|
$lng['error']['filecontentnotset'] = 'The file cannot be empty!';
|
|
$lng['serversettings']['index_file_extension']['description'] = 'Which file extension should be used for the index file in newly created customer directories? This file extension will be used, if you or one of your admins has created its own index file template.';
|
|
$lng['serversettings']['index_file_extension']['title'] = 'File extension for index file in newly created customer directories';
|
|
$lng['error']['index_file_extension'] = 'The file extension for the index file must be between 1 and 6 characters long. The extension can only contain characters like a-z, A-Z and 0-9';
|
|
$lng['admin']['expert_settings'] = 'Expert settings!';
|
|
$lng['admin']['mod_fcgid_starter']['title'] = 'PHP Processes for this domain (empty for default value)';
|
|
|
|
//added with aps installer
|
|
|
|
$lng['admin']['aps'] = 'APS Installer';
|
|
$lng['customer']['aps'] = 'APS Installer';
|
|
$lng['aps']['scan'] = 'Scan for new packages';
|
|
$lng['aps']['upload'] = 'Upload new packages';
|
|
$lng['aps']['managepackages'] = 'Manage packages';
|
|
$lng['aps']['manageinstances'] = 'Manage instances';
|
|
$lng['aps']['overview'] = 'Package overview';
|
|
$lng['aps']['status'] = 'My packages';
|
|
$lng['aps']['search'] = 'Search for packages';
|
|
$lng['aps']['upload_description'] = 'Please select the APS Installer zipfiles to install them in the system.';
|
|
$lng['aps']['search_description'] = 'Name, Description, Keyword, Version';
|
|
$lng['aps']['detail'] = 'More information';
|
|
$lng['aps']['install'] = 'Install package';
|
|
$lng['aps']['data'] = 'Data';
|
|
$lng['aps']['version'] = 'Version';
|
|
$lng['aps']['homepage'] = 'Homepage';
|
|
$lng['aps']['installed_size'] = 'Size after Installation';
|
|
$lng['aps']['categories'] = 'Categories';
|
|
$lng['aps']['languages'] = 'Languages';
|
|
$lng['aps']['long_description'] = 'Long description';
|
|
$lng['aps']['configscript'] = 'Configuration script';
|
|
$lng['aps']['changelog'] = 'Changelog';
|
|
$lng['aps']['license'] = 'License';
|
|
$lng['aps']['license_link'] = 'Link to License';
|
|
$lng['aps']['screenshots'] = 'Screenshots';
|
|
$lng['aps']['back'] = 'Back to overview';
|
|
$lng['aps']['install_wizard'] = 'Installation wizard...';
|
|
$lng['aps']['wizard_error'] = 'Your input contains invalid data. Please correct yourself to continue the installation.';
|
|
$lng['aps']['basic_settings'] = 'Basic settings';
|
|
$lng['aps']['application_location'] = 'Installation location';
|
|
$lng['aps']['application_location_description'] = 'Location where the application will be installed.';
|
|
$lng['aps']['no_domains'] = 'No domains found';
|
|
$lng['aps']['database_password'] = 'Database password';
|
|
$lng['aps']['database_password_description'] = 'Password which should be used for the new created database.';
|
|
$lng['aps']['license_agreement'] = 'Agreement';
|
|
$lng['aps']['cancel_install'] = 'Abort Installation';
|
|
$lng['aps']['notazipfile'] = 'The uploaded file is not a zipfile.';
|
|
$lng['aps']['filetoobig'] = 'The file is too big.';
|
|
$lng['aps']['filenotcomplete'] = 'The file wasn\'t uploaded completely.';
|
|
$lng['aps']['phperror'] = 'There occured a PHP internal error. The PHP upload errorcode is #';
|
|
$lng['aps']['moveproblem'] = 'The script failed to move the uploaded file into the destination directory. Please ensure that all permissions are set correctly.';
|
|
$lng['aps']['uploaderrors'] = '<strong>Errors for the file <em>%s</em></strong><br/><ul>%s</ul>';
|
|
$lng['aps']['nospecialchars'] = 'Special characters are not allowed in the search term!';
|
|
$lng['aps']['noitemsfound'] = 'No packages were found!';
|
|
$lng['aps']['nopackagesinstalled'] = 'You haven\'t installed any package yet which could be shown.';
|
|
$lng['aps']['instance_install'] = 'Package Installation pending';
|
|
$lng['aps']['instance_task_active'] = 'Package is currently being processed';
|
|
$lng['aps']['instance_success'] = 'Package is installed/was installed successfully';
|
|
$lng['aps']['instance_error'] = 'Package isn\'t installed - there occured some errors on the installation';
|
|
$lng['aps']['instance_uninstall'] = 'Package uninstall pending';
|
|
$lng['aps']['unknown_status'] = 'Error - Unknown value';
|
|
$lng['aps']['currentstatus'] = 'Current status';
|
|
$lng['aps']['activetasks'] = 'Current tasks';
|
|
$lng['aps']['task_install'] = 'Installation pending';
|
|
$lng['aps']['task_remove'] = 'Uninstallation pending';
|
|
$lng['aps']['task_reconfigure'] = 'Reconfiguration pending';
|
|
$lng['aps']['task_upgrade'] = 'Update/Upgrade pending';
|
|
$lng['aps']['no_task'] = 'No tasks pending';
|
|
$lng['aps']['applicationlinks'] = 'Application links';
|
|
$lng['aps']['mainsite'] = 'Main site';
|
|
$lng['aps']['uninstall'] = 'Uninstall package';
|
|
$lng['aps']['reconfigure'] = 'Change settings';
|
|
$lng['aps']['erroronnewinstance'] = '<strong>This package cannot be installed.</strong><br/><br/>Please go back to the package overview and start a new Installation.';
|
|
$lng['aps']['successonnewinstance'] = '<strong><em>%s</em> will be installed now.</strong><br/><br/>Go back to "My packages" and wait until the Installation has finished. This can take some time.';
|
|
$lng['aps']['php_misc_handler'] = 'PHP - Misc - There is no support for other file extensions than .php for the PHP Parser.';
|
|
$lng['aps']['php_misc_directoryhandler'] = 'PHP - Misc - There is no support for per directory disabled PHP Handlers.';
|
|
$lng['aps']['asp_net'] = 'ASP.NET - Package not supported.';
|
|
$lng['aps']['cgi'] = 'CGI - Package not supported.';
|
|
$lng['aps']['php_extension'] = 'PHP - Extension "%s" missing.';
|
|
$lng['aps']['php_function'] = 'PHP - Function "%s" missing.';
|
|
$lng['aps']['php_configuration'] = 'PHP - Configuration - Current "%s" setting not supported by package.';
|
|
$lng['aps']['php_configuration_post_max_size'] = 'PHP - Configuration - "post_max_size" value too low.';
|
|
$lng['aps']['php_configuration_memory_limit'] = 'PHP - Configuration - "memory_limit" value too low.';
|
|
$lng['aps']['php_configuration_max_execution_time'] = 'PHP - Configuration - "max_execution_time" value too low.';
|
|
$lng['aps']['php_general_old'] = 'PHP - General - PHP Version too old.';
|
|
$lng['aps']['php_general_new'] = 'PHP - General - PHP Version too new.';
|
|
$lng['aps']['db_mysql_support'] = 'Database - The package needs another database engine than MySQL.';
|
|
$lng['aps']['db_mysql_version'] = 'Database - MySQL server too old.';
|
|
$lng['aps']['webserver_module'] = 'Webserver - Module "%s" missing.';
|
|
$lng['aps']['webserver_fcgid'] = 'Webserver - This package requires additional modules from the webserver. In your FastCGI/mod_fcgid environment the function "apache_get_modules" doesn\'t exist. The package cannot be installed because the APS Installer is unable to verify if this modules are installed.';
|
|
$lng['aps']['webserver_htaccess'] = 'Webserver - This package requires that .htaccess files are parsed by the webserver. The package cannot be installed because the APS Installer is unable to determine if this is enabled.';
|
|
$lng['aps']['misc_configscript'] = 'Misc - The language of the configuration script is not supported.';
|
|
$lng['aps']['misc_charset'] = 'Misc - In the current Installer version its not possibel to validate formfields from the wizard against a specific charset. The package cannot be installed.';
|
|
$lng['aps']['misc_version_already_installed'] = 'Same version of package already installed.';
|
|
$lng['aps']['misc_only_newer_versions'] = 'For security reasons only newer package versions can be installed on the system than them which are already installed.';
|
|
$lng['aps']['erroronscan'] = '<strong>Errors for <em>%s</em></strong><ul>%s</ul>';
|
|
$lng['aps']['invalidzipfile'] = '<strong>Errors for <em>%s</em></strong><br/><ul><li>This is not a valid APS zipfile!</li></ul>';
|
|
$lng['aps']['successpackageupdate'] = '<strong><em>%s</em> successfully installed as a package update</strong>';
|
|
$lng['aps']['successpackageinstall'] = '<strong><em>%s</em> successfully installed as a new package</strong>';
|
|
$lng['aps']['class_zip_missing'] = 'SimpleXML Class, exec function or ZIP Functions missing or not enabled! For further information about this problem look into the handbook for this module.';
|
|
$lng['aps']['dir_permissions'] = 'The PHP/webserver process must be able to write in the directory {$path}temp/ and {$path}packages/';
|
|
$lng['aps']['initerror'] = '<strong>There are some problems with this module:</strong><ul>%s</ul>Fix these problems, otherwise the module cannot be used!';
|
|
$lng['aps']['iderror'] = 'Wrong id specified!';
|
|
$lng['aps']['nopacketsforinstallation'] = 'There are no packages to install.';
|
|
$lng['aps']['nopackagestoinstall'] = 'There are no packages to view or install.';
|
|
$lng['aps']['nodomains'] = 'Select a domain from the list. If there is none, the package cannot be installed!';
|
|
$lng['aps']['wrongpath'] = 'Either this path contains invalid characters or there is another application installed already.';
|
|
$lng['aps']['dbpassword'] = 'Specify a password with a minimum length of 8 characters.';
|
|
$lng['aps']['error_text'] = 'Specify a text without special characters.';
|
|
$lng['aps']['error_email'] = 'Specify a valid e-mail address.';
|
|
$lng['aps']['error_domain'] = 'Specify a valid URL like http://www.example.com/';
|
|
$lng['aps']['error_integer'] = 'Specify a numeric value (Integer-Format) e.g. <em>5</em> or <em>7</em>.';
|
|
$lng['aps']['error_float'] = 'Specify a numeric value (Float-Format) e.g. <em>5,2432</em> or <em>7,5346</em>.';
|
|
$lng['aps']['error_password'] = 'Specify a password.';
|
|
$lng['aps']['error_license'] = 'Yes, I have read the license and will abide by its terms.';
|
|
$lng['aps']['error_licensenoaccept'] = 'You must accept the license to install this application.';
|
|
$lng['aps']['stopinstall'] = 'Abort Installation';
|
|
$lng['aps']['installstopped'] = 'The Installation of this package was aborted successfully.';
|
|
$lng['aps']['installstoperror'] = 'The Installation cannot be aborted anymore because installation has started already. If you\'d like to uninstall the package, wait until the Installation has finished and then go to "My packages" to trigger an Uninstall.';
|
|
$lng['aps']['waitfortask'] = 'There are no actions to select. Wait until all tasks have finished.';
|
|
$lng['aps']['removetaskexisting'] = '<strong>There is already a task for uninstallation.</strong><br/><br/>Please go back to "My packages" and wait until the uninstall has finished.';
|
|
$lng['aps']['packagewillberemoved'] = '<strong>The package will be uninstalled now.</strong><br/><br/>Please go back to "My packages" and wait until the uninstall has finished.';
|
|
$lng['question']['reallywanttoremove'] = '<strong>Do you really want to uninstall this package?</strong><br/><br/>All database contents and files will be erased. Be sure to make a manual backup of a files you need for any further usage!<br/><br/>';
|
|
$lng['aps']['searchoneresult'] = '%s package found';
|
|
$lng['aps']['searchmultiresult'] = '%s packages found';
|
|
$lng['question']['reallywanttostop'] = 'Do you really want to abort the installation of this package?<br/><br/>';
|
|
$lng['aps']['packagenameandversion'] = 'Packagename & version';
|
|
$lng['aps']['package_locked'] = 'Locked';
|
|
$lng['aps']['package_enabled'] = 'Enabled';
|
|
$lng['aps']['lock'] = 'Lock';
|
|
$lng['aps']['unlock'] = 'Enable';
|
|
$lng['aps']['remove'] = 'Remove';
|
|
$lng['aps']['allpackages'] = 'All packages';
|
|
$lng['question']['reallyremovepackages'] = '<strong>Do you really want to delete these packages?</strong><br/><br/>Packages with dependencies can only be remove if the corresponding Instances have been removed!<br/><br/>';
|
|
$lng['aps']['nopackagesinsystem'] = 'There were no packages installed in the system which could be managed.';
|
|
$lng['aps']['packagenameandstatus'] = 'Packagename & status';
|
|
$lng['aps']['activate_aps']['title'] = 'Enable APS installer';
|
|
$lng['aps']['activate_aps']['description'] = 'Here the APS installer can be enabled and disabled globaly.';
|
|
$lng['aps']['packages_per_page']['title'] = 'Packages per page';
|
|
$lng['aps']['packages_per_page']['description'] = 'How many packages should be displayed per page for customers?';
|
|
$lng['aps']['upload_fields']['title'] = 'Upload fields per page';
|
|
$lng['aps']['upload_fields']['description'] = 'How many upload fields should be displayed on the page to install new packages in the system?';
|
|
$lng['aps']['exceptions']['title'] = 'Exceptions for package validation';
|
|
$lng['aps']['exceptions']['description'] = 'Some packages need special configuration parameters or modules. The installer cannot always determine if this options/extensions are available. For this reason you can now define exceptions that packages can be installed in the system. Do only select options which match your real configuration setup. For further information about this problem look into the handbook for this module.';
|
|
$lng['aps']['settings_php_extensions'] = 'PHP-Extensions';
|
|
$lng['aps']['settings_php_configuration'] = 'PHP-Configuration';
|
|
$lng['aps']['settings_webserver_modules'] = 'Webserver modules';
|
|
$lng['aps']['settings_webserver_misc'] = 'Webserver miscellaneous';
|
|
$lng['aps']['specialoptions'] = 'Special options';
|
|
$lng['aps']['removeunused'] = 'Remove unused packages';
|
|
$lng['aps']['enablenewest'] = 'Enabled newest version of package, lock others';
|
|
$lng['aps']['installations'] = 'Installations';
|
|
$lng['aps']['statistics'] = 'Statistics';
|
|
$lng['aps']['numerofpackagesinstalled'] = '%s packages installed<br/>';
|
|
$lng['aps']['numerofpackagesenabled'] = '%s packages enabled<br/>';
|
|
$lng['aps']['numerofpackageslocked'] = '%s packages locked<br/>';
|
|
$lng['aps']['numerofinstances'] = '%s Instances installed<br/>';
|
|
$lng['question']['reallydoaction'] = '<strong>Do you really want to execute the selected actions?</strong><br/><br/>Data which can be lost by continuing, cannot be restored later.<br/><br/>';
|
|
$lng['aps']['linktolicense'] = 'Link to license';
|
|
$lng['aps']['initerror_customer'] = 'There is currently a problem with this Froxlor extension. Contact your administrator for further information.';
|
|
$lng['aps']['numerofinstances'] = '%s Installations at all<br/>';
|
|
$lng['aps']['numerofinstancessuccess'] = '%s successful Installations<br/>';
|
|
$lng['aps']['numerofinstanceserror'] = '%s failed Installations<br/>';
|
|
$lng['aps']['numerofinstancesaction'] = '%s planed Installations/Uninstallations';
|
|
$lng['aps']['downloadallpackages'] = 'Download all packages from distribution server';
|
|
$lng['aps']['updateallpackages'] = 'Update all packages by distribution server';
|
|
$lng['aps']['downloadtaskexists'] = 'There is already a task for the download of all packages. Please wait until this task has finished.';
|
|
$lng['aps']['downloadtaskinserted'] = 'A task for the download of all packages has been created. This can take up to several minutes.';
|
|
$lng['aps']['updatetaskexists'] = 'There is already an task for the update of all packages. Please wait until this task has finished.';
|
|
$lng['aps']['updatetaskinserted'] = 'A task for the update of all packages has been created. This can take up to several minutes.';
|
|
$lng['aps']['canmanagepackages'] = 'Can manage APS packages';
|
|
$lng['aps']['numberofapspackages'] = 'Amount of APS installations';
|
|
$lng['aps']['allpackagesused'] = '<strong>Error</strong><br/><br/>You have already reached the number of installable APS applications.';
|
|
$lng['aps']['noinstancesexisting'] = 'There are currently no instances which could be managed. There must be installed at least one application by a customer.';
|
|
$lng['aps']['lightywarning'] = 'Warning';
|
|
$lng['aps']['lightywarningdescription'] = 'You are using the lighttpd webserver together with Froxlor. The APS module was mainly written for Apache, so it can be possible that some features do not work with lighttpd. Please remember this when using the APS module. If you have found or experienced any problems in connection with lighttpd and the APS module please report them to the developers that they can be fixed within the next release if Froxlor.';
|
|
$lng['error']['customerdoesntexist'] = 'The customer you have chosen doesn\'t exist.';
|
|
$lng['error']['admindoesntexist'] = 'The admin you have chosen doesn\'t exist.';
|
|
|
|
// ADDED IN 1.2.19-svn37
|
|
|
|
$lng['serversettings']['session_allow_multiple_login']['title'] = 'Allow multiple login';
|
|
$lng['serversettings']['session_allow_multiple_login']['description'] = 'If activated a user could login multiple times.';
|
|
$lng['serversettings']['panel_allow_domain_change_admin']['title'] = 'Allow moving domains between admins';
|
|
$lng['serversettings']['panel_allow_domain_change_admin']['description'] = 'If activated you can change the admin of a domain at domainsettings.<br /><b>Attention:</b> If a customer isn\'t assigned to the same admin as the domain, the admin can see every other domain of that customer!';
|
|
$lng['serversettings']['panel_allow_domain_change_customer']['title'] = 'Allow moving domains between customers';
|
|
$lng['serversettings']['panel_allow_domain_change_customer']['description'] = 'If activated you can change the customer of a domain at domainsettings.<br /><b>Attention:</b> Froxlor won\'t change any paths. This could render a domain unusable!';
|
|
$lng['domains']['associated_with_domain'] = 'Associated';
|
|
$lng['domains']['aliasdomains'] = 'Alias domains';
|
|
$lng['error']['ipportdoesntexist'] = 'The ip/port combination you have chosen doesn\'t exist.';
|
|
|
|
// ADDED IN 1.2.19-svn38
|
|
|
|
$lng['admin']['phpserversettings'] = 'PHP Settings';
|
|
$lng['admin']['phpsettings']['binary'] = 'PHP Binary';
|
|
$lng['admin']['phpsettings']['file_extensions'] = 'File extensions';
|
|
$lng['admin']['phpsettings']['file_extensions_note'] = '(without dot, separated by spaces)';
|
|
$lng['admin']['mod_fcgid_maxrequests']['title'] = 'Maximum php requests for this domain (empty for default value)';
|
|
$lng['serversettings']['mod_fcgid']['maxrequests']['title'] = 'Maximum Requests per domain';
|
|
$lng['serversettings']['mod_fcgid']['maxrequests']['description'] = 'How many requests should be allowed per domain?';
|
|
|
|
// fix bug #1124
|
|
$lng['admin']['webserver'] = 'Webserver';
|
|
$lng['error']['admin_domain_emailsystemhostname'] = 'The server-hostname cannot be used as email-domain.';
|
|
$lng['aps']['license_link'] = 'Link to the license';
|
|
|
|
// ADDED IN 1.4.2.1-1
|
|
|
|
$lng['mysql']['mysql_server'] = 'MySQL-Server';
|
|
|
|
// ADDED IN 1.4.2.1-2
|
|
|
|
$lng['admin']['ipsandports']['webserverdefaultconfig'] = 'Webserver default config';
|
|
$lng['admin']['ipsandports']['webserverdomainconfig'] = 'Webserver domain config';
|
|
$lng['admin']['ipsandports']['webserverssldomainconfig'] = 'Webserver SSL config';
|
|
$lng['admin']['ipsandports']['ssl_key_file'] = 'Path to the SSL Keyfile';
|
|
$lng['admin']['ipsandports']['ssl_ca_file'] = 'Path to the SSL CA certificate';
|
|
$lng['admin']['ipsandports']['default_vhostconf_domain'] = 'Default vHost-settings for every domain container';
|
|
$lng['serversettings']['ssl']['ssl_key_file'] = 'Path to the SSL Keyfile';
|
|
$lng['serversettings']['ssl']['ssl_ca_file'] = 'Path to the SSL CA certificate';
|
|
|
|
$lng['error']['usernamealreadyexists'] = 'The username %s already exists.';
|
|
|
|
$lng['error']['plausibilitychecknotunderstood'] = 'Answer of plausibility check not understood.';
|
|
$lng['error']['errorwhensaving'] = 'An error occured when saving the field %s';
|
|
|
|
$lng['success']['success'] = 'Information';
|
|
$lng['success']['clickheretocontinue'] = 'Click here to continue';
|
|
$lng['success']['settingssaved'] = 'The settings have been successfully saved.';
|
|
|
|
// ADDED IN FROXLOR 0.9
|
|
|
|
$lng['admin']['spfsettings'] = 'Domain SPF settings';
|
|
$lng['spf']['use_spf'] = 'Activate SPF for domains?';
|
|
$lng['spf']['spf_entry'] = 'SPF entry for all domains';
|
|
$lng['panel']['dirsmissing'] = 'The given directory could not be found.';
|
|
$lng['panel']['toomanydirs'] = 'Too many subdirectories. Falling back to manual path-select.';
|
|
$lng['panel']['abort'] = 'Abort';
|
|
$lng['serversettings']['cron']['debug']['title'] = 'Cronscript debugging';
|
|
$lng['serversettings']['cron']['debug']['description'] = 'Activate to keep the lockfile after a cron-run for debugging.<br /><b>Attention:</b>Keeping the lockfile can cause the next scheduled cron not to run properly.';
|
|
$lng['autoresponder']['date_from'] = 'Start date';
|
|
$lng['autoresponder']['date_until'] = 'End date';
|
|
$lng['autoresponder']['startenddate'] = 'Start/end date';
|
|
$lng['panel']['not_activated'] = 'not activated';
|
|
$lng['panel']['off'] = 'off';
|
|
$lng['update']['updateinprogress_onlyadmincanlogin'] = 'A newer version of Froxlor has been installed but not yet set up.<br />Only the administrator can log in and finish the update.';
|
|
$lng['update']['update'] = 'Froxlor update';
|
|
$lng['update']['proceed'] = 'Proceed';
|
|
$lng['update']['update_information']['part_a'] = 'The Froxlor files have been updated to version <strong>%newversion</strong>. The installed version is <strong>%curversion</strong>.';
|
|
$lng['update']['update_information']['part_b'] = '<br /><br />Customers will not be able to log in until the update has been finished.<br /><strong>Proceed?</strong>';
|
|
$lng['update']['noupdatesavail'] = '<strong>You already have the latest Froxlor version.</strong>';
|
|
$lng['admin']['specialsettingsforsubdomains'] = 'Apply specialsettings to all subdomains (*.example.com)';
|
|
$lng['serversettings']['specialsettingsforsubdomains']['description'] = 'If yes these custom vHost-settings will be added to all subdomains; if no subdomain-specialsettings are being removed.';
|
|
$lng['tasks']['outstanding_tasks'] = 'Outstanding cron-tasks';
|
|
$lng['tasks']['rebuild_webserverconfig'] = 'Rebuilding webserver-configuration';
|
|
$lng['tasks']['adding_customer'] = 'Adding new customer %loginname%';
|
|
$lng['tasks']['rebuild_bindconfig'] = 'Rebuilding bind-configuration';
|
|
$lng['tasks']['creating_ftpdir'] = 'Creating directory for new ftp-user';
|
|
$lng['tasks']['deleting_customerfiles'] = 'Deleting customer-files %loginname%';
|
|
$lng['tasks']['noneoutstanding'] = 'There are currently no outstanding tasks for Froxlor';
|
|
$lng['ticket']['nonexistingcustomer'] = '(deleted customer)';
|
|
$lng['admin']['ticket_nocustomeraddingavailable'] = 'It\'s not possible to open a new support-ticket currently. You first need to add at least one customer.';
|
|
|
|
// ADDED IN FROXLOR 0.9.1
|
|
|
|
$lng['admin']['accountdata'] = 'Account Data';
|
|
$lng['admin']['contactdata'] = 'Contact Data';
|
|
$lng['admin']['servicedata'] = 'Service Data';
|
|
|
|
// ADDED IN FROXLOR 0.9.2
|
|
|
|
$lng['admin']['newerversionavailable'] = 'There is a newer version of Froxlor available';
|
|
|
|
// ADDED IN FROXLOR 0.9.3
|
|
|
|
$lng['emails']['noemaildomainaddedyet'] = 'You do not have a (email-)domain in your account yet.';
|
|
$lng['error']['hiddenfieldvaluechanged'] = 'The value for the hidden field "%s" changed while editing the settings.<br /><br />This is usually not a big problem but the settings could not be saved because of this.';
|
|
|
|
// ADDED IN FROXLOR 0.9.3-svn1
|
|
|
|
$lng['serversettings']['panel_password_min_length']['title'] = 'Minimum password length';
|
|
$lng['serversettings']['panel_password_min_length']['description'] = 'Here you can set a minimum length for passwords. \'0\' means: no minimum length required.';
|
|
$lng['error']['notrequiredpasswordlength'] = 'The given password is too short. Please enter at least %s characters.';
|
|
$lng['serversettings']['system_store_index_file_subs']['title'] = 'Store default index file also to new subfolders';
|
|
$lng['serversettings']['system_store_index_file_subs']['description'] = 'If enabled, the default index-file is being stored to every subdomain-path newly created (not if the folder already exists!)';
|
|
|
|
// ADDED IN FROXLOR 0.9.3-svn2
|
|
|
|
$lng['serversettings']['adminmail_return']['title'] = 'Reply-To address';
|
|
$lng['serversettings']['adminmail_return']['description'] = 'Define an e-mail address as reply-to-address for mails sent by the panel.';
|
|
$lng['serversettings']['adminmail_defname'] = 'Panel e-mail sender name';
|
|
|
|
// ADDED IN FROXLOR 0.9.3-svn3
|
|
$lng['dkim']['dkim_algorithm']['title'] = 'Allowed Hash Algorithms';
|
|
$lng['dkim']['dkim_algorithm']['description'] = 'Define allowed hash algorithms, chose "All" for all algorithms or one or more from the other available algorithms';
|
|
$lng['dkim']['dkim_servicetype'] = 'Service Types';
|
|
$lng['dkim']['dkim_keylength']['title'] = 'Key-length';
|
|
$lng['dkim']['dkim_keylength']['description'] = 'Attention: If you change this values, you need to delete all the private/public keys in "'.$settings['dkim']['dkim_prefix'].'"';
|
|
$lng['dkim']['dkim_notes']['title'] = 'DKIM Notes';
|
|
$lng['dkim']['dkim_notes']['description'] = 'Notes that might be of interest to a human, e.g. a URL like http://www.dnswatch.info. No interpretation is made by any program. This tag should be used sparingly due to space limitations in DNS. This is intended for use by administrators, not end users.';
|
|
$lng['dkim']['dkim_add_adsp']['title'] = 'Add DKIM ADSP entry';
|
|
$lng['dkim']['dkim_add_adsp']['description'] = 'If you don\'t know what this is, leave it "enabled"';
|
|
$lng['dkim']['dkim_add_adsppolicy']['title'] = 'ADSP policy';
|
|
$lng['dkim']['dkim_add_adsppolicy']['description'] = 'For more information about this setting see <a target="blank" href="http://redmine.froxlor.org/projects/froxlor/wiki/En-dkim-adsp-policies">DKIM ADSP policies</a>';
|
|
|
|
$lng['admin']['cron']['cronsettings'] = 'Cronjob settings';
|
|
$lng['cron']['cronname'] = 'cronjob-name';
|
|
$lng['cron']['lastrun'] = 'last run';
|
|
$lng['cron']['interval'] = 'interval';
|
|
$lng['cron']['isactive'] = 'enabled';
|
|
$lng['cron']['description'] = 'description';
|
|
$lng['crondesc']['cron_unknown_desc'] = 'no description given';
|
|
$lng['admin']['cron']['add'] = 'Add cronjob';
|
|
$lng['crondesc']['cron_tasks'] = 'generating of configfiles';
|
|
$lng['crondesc']['cron_legacy'] = 'legacy (old) cronjob';
|
|
$lng['crondesc']['cron_apsinstaller'] = 'APS-installer';
|
|
$lng['crondesc']['cron_autoresponder'] = 'e-mail autoresponder';
|
|
$lng['crondesc']['cron_apsupdater'] = 'updating APS packages';
|
|
$lng['crondesc']['cron_traffic'] = 'traffic calculation';
|
|
$lng['crondesc']['cron_ticketsreset'] = 'resetting ticket-counters';
|
|
$lng['crondesc']['cron_ticketarchive'] = 'archiving old tickets';
|
|
$lng['cronmgmt']['seconds'] = 'seconds';
|
|
$lng['cronmgmt']['minutes'] = 'minutes';
|
|
$lng['cronmgmt']['hours'] = 'hours';
|
|
$lng['cronmgmt']['days'] = 'days';
|
|
$lng['cronmgmt']['weeks'] = 'weeks';
|
|
$lng['cronmgmt']['months'] = 'months';
|
|
$lng['admin']['cronjob_edit'] = 'Edit cronjob';
|
|
$lng['cronjob']['cronjobsettings'] = 'Cronjob settings';
|
|
$lng['cronjob']['cronjobintervalv'] = 'Runtime interval value';
|
|
$lng['cronjob']['cronjobinterval'] = 'Runtime interval';
|
|
$lng['panel']['options'] = 'options';
|
|
$lng['admin']['warning'] = 'WARNING - Please note!';
|
|
$lng['cron']['changewarning'] = 'Changing these values can have a negative cause to the behavior of Froxlor and its automated tasks.<br /><br />Please only change values here, if you are sure you know what you are doing.';
|
|
|
|
$lng['serversettings']['stdsubdomainhost']['title'] = 'Customer standard subdomain';
|
|
$lng['serversettings']['stdsubdomainhost']['description'] = 'What hostname should be used to create standard subdomains for customer. If empty, the system-hostname is used.';
|
|
|
|
// ADDED IN FROXLOR 0.9.4-svn1
|
|
$lng['ftp']['account_edit'] = 'Edit ftp account';
|
|
$lng['ftp']['editpassdescription'] = 'Set new password or leave blank for no change.';
|
|
$lng['customer']['sendinfomail'] = 'Send data via email to me';
|
|
$lng['customer']['mysql_add']['infomail_subject'] = '[Froxlor] New database created';
|
|
$lng['customer']['mysql_add']['infomail_body']['main'] = "Hello {CUST_NAME},\n\nyou have just added a new database. Here is the entered information:\n\nDatabasename: {DB_NAME}\nPassword: {DB_PASS}\nDescription: {DB_DESC}\nDB-Hostname: {DB_SRV}\nphpMyAdmin: {PMA_URI}\nYours sincerely, the Froxlor-Team";
|
|
$lng['error']['domains_cantdeletedomainwithapsinstances'] = 'You cannot delete a domain which is used by an installed APS package. You have to uninstall it first.';
|
|
$lng['serversettings']['awstats_path'] = 'Path to AWStats \'awstats_buildstaticpages.pl\'';
|
|
$lng['serversettings']['awstats_conf'] = 'AWStats configuration path';
|
|
$lng['error']['overviewsettingoptionisnotavalidfield'] = 'Woops, a field that should be displayed as an option in the settings-overview is not an excepted type. You can blame the developers for this. This should not happen!';
|
|
$lng['admin']['configfiles']['compactoverview'] = 'Compact-overview';
|
|
$lng['admin']['lastlogin_succ'] = 'Last login';
|
|
$lng['panel']['neverloggedin'] = 'No login yet';
|
|
|
|
// ADDED IN FROXLOR 0.9.6-svn1
|
|
$lng['serversettings']['defaultttl'] = 'Domain TTL for bind in seconds (default \'604800\' = 1 week)';
|
|
$lng['ticket']['logicalorder'] = 'Logical order';
|
|
$lng['ticket']['orderdesc'] = 'Here you can define your own logical order for the ticket-category. Use 1 - 999, lower numbers are displayed first.';
|
|
|
|
// ADDED IN FROXLOR 0.9.6-svn3
|
|
$lng['serversettings']['defaultwebsrverrhandler_enabled'] = 'Enable default errordocuments for all customers';
|
|
$lng['serversettings']['defaultwebsrverrhandler_err401']['title'] = 'File/URL for error 401';
|
|
$lng['serversettings']['defaultwebsrverrhandler_err401']['description'] = '<div style="color:red">'.$lng['panel']['not_supported'].'lighttpd</div>';
|
|
$lng['serversettings']['defaultwebsrverrhandler_err403']['title'] = 'File/URL for error 403';
|
|
$lng['serversettings']['defaultwebsrverrhandler_err403']['description'] = '<div style="color:red">'.$lng['panel']['not_supported'].'lighttpd</div>';
|
|
$lng['serversettings']['defaultwebsrverrhandler_err404'] = 'File/URL for error 404';
|
|
$lng['serversettings']['defaultwebsrverrhandler_err500']['title'] = 'File/URL for error 500';
|
|
$lng['serversettings']['defaultwebsrverrhandler_err500']['description'] = '<div style="color:red">'.$lng['panel']['not_supported'].'lighttpd</div>';
|
|
|
|
// ADDED IN FROXLOR 0.9.6-svn4
|
|
$lng['serversettings']['ticket']['default_priority'] = 'Default support-ticket priority';
|
|
|
|
// ADDED IN FROXLOR 0.9.6-svn5
|
|
$lng['serversettings']['mod_fcgid']['defaultini'] = 'Default PHP configuration for new domains';
|
|
|
|
// ADDED IN FROXLOR 0.9.6-svn6
|
|
$lng['admin']['ftpserver'] = 'FTP Server';
|
|
$lng['admin']['ftpserversettings'] = 'FTP Server settings';
|
|
$lng['serversettings']['ftpserver']['desc'] = 'If pureftpd is selected the .ftpquota files for user quotas are created and updated daily';
|
|
|
|
// CHANGED IN FROXLOR 0.9.6-svn6
|
|
$lng['serversettings']['ftpprefix']['description'] = 'Which prefix should ftp accounts have?<br/><b>If you change this you also have to change the Quota SQL Query in your FTP Server config file in case you use it!</b> ';
|
|
|
|
// ADDED IN FROXLOR 0.9.7-svn1
|
|
$lng['customer']['ftp_add']['infomail_subject'] = '[Froxlor] New ftp-user created';
|
|
$lng['customer']['ftp_add']['infomail_body']['main'] = "Hello {CUST_NAME},\n\nyou have just added a new ftp-user. Here is the entered information:\n\nUsername: {USR_NAME}\nPassword: {USR_PASS}\nPath: {USR_PATH}\n\nYours sincerely, the Froxlor-Team";
|
|
$lng['domains']['redirectifpathisurl'] = 'Redirect code (default: empty)';
|
|
$lng['domains']['redirectifpathisurlinfo'] = 'You only need to select one of these if you entered an URL as path';
|
|
$lng['serversettings']['customredirect_enabled']['title'] = 'Allow customer redirects';
|
|
$lng['serversettings']['customredirect_enabled']['description'] = 'Allow customers to choose the http-status code for redirects which will be used';
|
|
$lng['serversettings']['customredirect_default']['title'] = 'Default redirect';
|
|
$lng['serversettings']['customredirect_default']['description'] = 'Set the default redirect-code which should be used if the customer does not set it himself';
|
|
|
|
// ADDED IN FROXLOR 0.9.7-svn2
|
|
$lng['error']['pathmaynotcontaincolon'] = 'The path you have entered should not contain a colon (":"). Please enter a correct path value.';
|
|
$lng['tasks']['aps_task_install'] = 'Installing one or more APS packages';
|
|
$lng['tasks']['aps_task_remove'] = 'Removing one or more APS packages';
|
|
$lng['tasks']['aps_task_reconfigure'] = 'Reconfigurating one or more APS packages';
|
|
$lng['tasks']['aps_task_upgrade'] = 'Upgrading one or more APS packages';
|
|
$lng['tasks']['aps_task_sysupdate'] = 'Updating all APS packages';
|
|
$lng['tasks']['aps_task_sysdownload'] = 'Downloading new APS packages';
|
|
|
|
// ADDED IN FROXLOR 0.9.7-svn3
|
|
|
|
// these stay only in english.lng.php - they are the same
|
|
// for all other languages and are used if not found there
|
|
$lng['redirect_desc']['rc_default'] = 'default';
|
|
$lng['redirect_desc']['rc_movedperm'] = 'moved permanently';
|
|
$lng['redirect_desc']['rc_found'] = 'found';
|
|
$lng['redirect_desc']['rc_seeother'] = 'see other';
|
|
$lng['redirect_desc']['rc_tempred'] = 'temporary redirect';
|
|
|
|
// ADDED IN FROXLOR 0.9.8
|
|
$lng['error']['exception'] = '%s';
|
|
|
|
// ADDED IN FROXLOR 0.9.9-svn1
|
|
$lng['serversettings']['mail_also_with_mxservers'] = 'Create mail-, imap-, pop3- and smtp-"A record" also with MX-Servers set';
|
|
|
|
// ADDED IN FROXLOR 0.9.10-svn1
|
|
$lng['aps']['nocontingent'] = 'Your APS contingent is insufficient. You cannot install any package.';
|
|
$lng['aps']['packageneedsdb'] = 'This package needs a database but your contingent is used up';
|
|
$lng['aps']['cannoteditordeleteapsdb'] = 'APS databases cannot be edited or removed here';
|
|
$lng['admin']['webserver_user'] = 'Webserver user-name';
|
|
$lng['admin']['webserver_group'] = 'Webserver group-name';
|
|
|
|
// ADDED IN FROXLOR 0.9.10
|
|
$lng['serversettings']['froxlordirectlyviahostname'] = 'Access Froxlor directly via the hostname';
|
|
|
|
// ADDED IN FROXLOR 0.9.11-svn1
|
|
$lng['serversettings']['panel_password_regex']['title'] = 'Regular expression for passwords';
|
|
$lng['serversettings']['panel_password_regex']['description'] = 'Here you can set a regular expression for passwords-complexity.<br />Empty = no specific requirement<br />(<a target="blank" href="http://redmine.froxlor.org/projects/froxlor/wiki/En-password-regex-examples">regex help/examples</a>)';
|
|
$lng['error']['notrequiredpasswordcomplexity'] = 'The specified password-complexity was not satisfied.<br />Please contact your administrator if you have any questions about the complexity-specification';
|
|
|
|
// ADDED IN FROXLOR 0.9.11-svn2
|
|
$lng['extras']['execute_perl'] = 'Execute perl/CGI';
|
|
$lng['admin']['perlenabled'] = 'Perl enabled';
|
|
|
|
// ADDED IN FROXLOR 0.9.11-svn3
|
|
$lng['serversettings']['perl_path']['title'] = 'Path to perl';
|
|
$lng['serversettings']['perl_path']['description'] = 'Default is /usr/bin/perl';
|
|
|
|
// ADDED IN FROXLOR 0.9.12-svn1
|
|
$lng['admin']['fcgid_settings'] = 'FCGID';
|
|
$lng['serversettings']['mod_fcgid_ownvhost']['title'] = 'Enable FCGID for the Froxlor vHost';
|
|
$lng['serversettings']['mod_fcgid_ownvhost']['description'] = 'If enabled, Froxlor will also be running under a local user';
|
|
$lng['admin']['mod_fcgid_user'] = 'Local user to use for FCGID (Froxlor vHost)';
|
|
$lng['admin']['mod_fcgid_group'] = 'Local group to use for FCGID (Froxlor vHost)';
|
|
|
|
// ADDED IN FROXLOR 0.9.12-svn2
|
|
$lng['admin']['perl_settings'] = 'Perl/CGI';
|
|
$lng['serversettings']['perl']['suexecworkaround']['title'] = 'Enable SuExec workaround';
|
|
$lng['serversettings']['perl']['suexecworkaround']['description'] = 'Enable only if customer docroots are not within the apache suexec path.<br />If enabled, Froxlor will generate a symlink from the customers perl-enabled directory + /cgi-bin/ to the given path.<br />Note that perl will then only work in the folders subdirectory /cgi-bin/ and not in the folder itself (as it does without this fix!)';
|
|
$lng['serversettings']['perl']['suexeccgipath']['title'] = 'Path for customer perl-enabled directory symlinks';
|
|
$lng['serversettings']['perl']['suexeccgipath']['description'] = 'You only need to set this if the SuExec-workaround is enabled.<br />ATTENTION: Be sure this path is within the suexec path or else this workaround is uselsess';
|
|
$lng['panel']['descriptionerrordocument'] = 'Can be an URL, path to a file or just a string wrapped around " "<br />Leave empty to use server default value.';
|
|
$lng['error']['stringerrordocumentnotvalidforlighty'] = 'A string as ErrorDocument does not work in lighttpd, please specify a path to a file';
|
|
$lng['error']['urlerrordocumentnotvalidforlighty'] = 'An URL as ErrorDocument does not work in lighttpd, please specify a path to a file';
|
|
|
|
// ADDED IN FROXLOR 0.9.12-svn3
|
|
$lng['question']['remove_subbutmain_domains'] = 'Also remove domains which are added as full domains but which are subdomains of this domain?';
|
|
$lng['domains']['issubof'] = 'This domain is a subdomain of another domain';
|
|
$lng['domains']['issubofinfo'] = 'You have to set this to the correct domain if you want to add a subdomain as full-domain (e.g. you want to add "www.domain.tld", you have to select "domain.tld" here)';
|
|
$lng['domains']['nosubtomaindomain'] = 'No subdomain of a full domain';
|
|
$lng['admin']['templates']['new_database_by_customer'] = 'Customer-notification when a database has been created';
|
|
$lng['admin']['templates']['new_ftpaccount_by_customer'] = 'Customer-notification when a ftp-user has been created';
|
|
$lng['admin']['templates']['newdatabase'] = 'Notification-mails for new databases';
|
|
$lng['admin']['templates']['newftpuser'] = 'Notification-mails for new ftp-user';
|
|
$lng['admin']['templates']['CUST_NAME'] = 'Customer name';
|
|
$lng['admin']['templates']['DB_NAME'] = 'Database name';
|
|
$lng['admin']['templates']['DB_PASS'] = 'Database password';
|
|
$lng['admin']['templates']['DB_DESC'] = 'Database description';
|
|
$lng['admin']['templates']['DB_SRV'] = 'Database server';
|
|
$lng['admin']['templates']['PMA_URI'] = 'URL to phpMyAdmin (if given)';
|
|
$lng['admin']['notgiven'] = '[not given]';
|
|
$lng['admin']['templates']['USR_NAME'] = 'FTP username';
|
|
$lng['admin']['templates']['USR_PASS'] = 'FTP password';
|
|
$lng['admin']['templates']['USR_PATH'] = 'FTP homedir (relative to customer-docroot)';
|
|
|
|
// ADDED IN FROXLOR 0.9.12-svn4
|
|
$lng['serversettings']['awstats_awstatspath'] = 'Path to AWStats \'awstats.pl\'';
|
|
|
|
// ADDED IN FROXLOR 0.9.12-svn6
|
|
$lng['extras']['htpasswdauthname'] = 'Authentication reason (AuthName)';
|
|
$lng['extras']['directoryprotection_edit'] = 'edit directory protection';
|
|
$lng['admin']['templates']['forgotpwd'] = 'Notification-mails for password-reset';
|
|
$lng['admin']['templates']['password_reset'] = 'Customer-notification for passwort-reset';
|
|
$lng['admin']['store_defaultindex'] = 'Store default index-file to customers docroot';
|
|
|
|
// ADDED IN FROXLOR 0.9.13-svn1
|
|
$lng['customer']['autoresponder'] = 'Autoresponder';
|
|
|
|
// ADDED IN FROXLOR 0.9.14-svn1
|
|
$lng['serversettings']['mod_fcgid']['defaultini_ownvhost'] = 'Default PHP configuration for Froxlor-vHost';
|
|
|
|
// ADDED IN FROXLOR 0.9.14-svn3
|
|
$lng['serversettings']['awstats_icons']['title'] = 'Path to AWstats icons folder';
|
|
$lng['serversettings']['awstats_icons']['description'] = 'e.g. /usr/share/awstats/htdocs/icon/';
|
|
|
|
// ADDED IN FROXLOR 0.9.14-svn4
|
|
$lng['admin']['ipsandports']['ssl_cert_chainfile'] = 'Path to the SSL CertificateChainFile';
|
|
|
|
// ADDED IN FROXLOR 0.9.14-svn5
|
|
$lng['admin']['ipsandports']['docroot']['title'] = 'Custom docroot (empty = point to Froxlor)';
|
|
$lng['admin']['ipsandports']['docroot']['description'] = 'You can define a custom document-root (the destination for a request) for this ip/port combination here.<br /><strong>ATTENTION:</strong> Please be careful with what you enter here!';
|
|
|
|
// ADDED IN FROXLOR 0.9.14-svn6
|
|
$lng['serversettings']['login_domain_login'] = 'Allow login with domains';
|
|
|
|
// ADDED IN FROXLOR 0.9.14
|
|
$lng['panel']['unlock'] = 'unlock';
|
|
$lng['question']['customer_reallyunlock'] = 'Do you really want to unlock customer %s?';
|
|
|
|
// ADDED IN FROXLOR 0.9.15-svn1
|
|
$lng['serversettings']['perl_server']['title'] = 'Perl server location';
|
|
$lng['serversettings']['perl_server']['description'] = 'Default is set for using the guide found at: <a target="blank" href="http://wiki.nginx.org/SimpleCGI">http://wiki.nginx.org/SimpleCGI</a>';
|
|
$lng['serversettings']['nginx_php_backend']['title'] = 'Nginx PHP backend';
|
|
$lng['serversettings']['nginx_php_backend']['description'] = 'this is where the PHP process is listening for requests from nginx, can be a unix socket of ip:port combination';
|
|
$lng['serversettings']['phpreload_command']['title'] = 'PHP reload command';
|
|
$lng['serversettings']['phpreload_command']['description'] = 'this is used to reload the PHP backend if any is used<br />Default: blank';
|
|
|
|
// ADDED IN FROXLOR 0.9.16
|
|
$lng['error']['intvaluetoolow'] = 'The given number is too low (field %s)';
|
|
$lng['error']['intvaluetoohigh'] = 'The given number is too high (field %s)';
|
|
$lng['admin']['phpfpm_settings'] = 'PHP-FPM';
|
|
$lng['serversettings']['phpfpm'] = 'Enable php-fpm';
|
|
$lng['serversettings']['phpfpm_settings']['configdir'] = 'Configuration directory of php-fpm';
|
|
$lng['serversettings']['phpfpm_settings']['reload'] = 'php-fpm restart command';
|
|
$lng['serversettings']['phpfpm_settings']['pm'] = 'Process manager control (pm)';
|
|
$lng['serversettings']['phpfpm_settings']['max_children']['title'] = 'The number of child processes';
|
|
$lng['serversettings']['phpfpm_settings']['max_children']['description'] = 'The number of child processes to be created when pm is set to \'static\' and the maximum number of child processes to be created when pm is set to \'dynamic\'<br />Equivalent to the PHP_FCGI_CHILDREN';
|
|
$lng['serversettings']['phpfpm_settings']['start_servers']['title'] = 'The number of child processes created on startup';
|
|
$lng['serversettings']['phpfpm_settings']['start_servers']['description'] = 'Note: Used only when pm is set to \'dynamic\'';
|
|
$lng['serversettings']['phpfpm_settings']['min_spare_servers']['title'] = 'The desired minimum number of idle server processes';
|
|
$lng['serversettings']['phpfpm_settings']['min_spare_servers']['description'] = 'Note: Used only when pm is set to \'dynamic\'<br />Note: Mandatory when pm is set to \'dynamic\'';
|
|
$lng['serversettings']['phpfpm_settings']['max_spare_servers']['title'] = 'The desired maximum number of idle server processes';
|
|
$lng['serversettings']['phpfpm_settings']['max_spare_servers']['description'] = 'Note: Used only when pm is set to \'dynamic\'<br />Note: Mandatory when pm is set to \'dynamic\'';
|
|
$lng['serversettings']['phpfpm_settings']['max_requests']['title'] = 'Requests per child before respawning';
|
|
$lng['serversettings']['phpfpm_settings']['max_requests']['description'] = 'For endless request processing specify \'0\'. Equivalent to PHP_FCGI_MAX_REQUESTS.';
|
|
$lng['error']['phpfpmstillenabled'] = 'PHP-FPM is currently active. Please deactivate it before activating FCGID';
|
|
$lng['error']['fcgidstillenabled'] = 'FCGID is currently active. Please deactivate it before activating PHP-FPM';
|
|
$lng['phpfpm']['vhost_httpuser'] = 'Local user to use for PHP-FPM (Froxlor vHost)';
|
|
$lng['phpfpm']['vhost_httpgroup'] = 'Local group to use for PHP-FPM (Froxlor vHost)';
|
|
$lng['phpfpm']['ownvhost']['title'] = 'Enable PHP-FPM for the Froxlor vHost';
|
|
$lng['phpfpm']['ownvhost']['description'] = 'If enabled, Froxlor will also be running under a local user';
|
|
|
|
// ADDED IN FROXLOR 0.9.17
|
|
$lng['crondesc']['cron_usage_report'] = 'sends reports about web- and traffic-usage';
|
|
$lng['serversettings']['report']['report'] = 'Enable sending of reports about web- and traffic-usage';
|
|
$lng['serversettings']['report']['webmax'] = 'Warning-level in percent for webspace';
|
|
$lng['serversettings']['report']['trafficmax'] = 'Warning-level in percent for traffic';
|
|
$lng['mails']['trafficmaxpercent']['mailbody'] = 'Dear {NAME},\n\nyou used {TRAFFICUSED} MB of your available {TRAFFIC} MB of traffic.\nThis is more than {MAX_PERCENT}%.\n\nYours sincerely, the Froxlor-Team';
|
|
$lng['mails']['trafficmaxpercent']['subject'] = 'Reaching your traffic limit';
|
|
$lng['admin']['templates']['trafficmaxpercent'] = 'Notification mail for customers when given maximum of percent of traffic is exhausted';
|
|
$lng['admin']['templates']['MAX_PERCENT'] = 'Replaced with the diskusage/traffic limit for sending reports in percent.';
|
|
$lng['admin']['templates']['USAGE_PERCENT'] = 'Replaced with the diskusage/traffic, which was exhausted by the customer in percent.';
|
|
$lng['admin']['templates']['diskmaxpercent'] = 'Notification mail for customers when given maximum of percent of diskspace is exhausted';
|
|
$lng['admin']['templates']['DISKAVAILABLE'] = 'Replaced with the diskusage in MB, which was assigned to the customer.';
|
|
$lng['admin']['templates']['DISKUSED'] = 'Replaced with the diskusage in MB, which was exhausted by the customer.';
|
|
$lng['serversettings']['dropdown'] = 'Dropdown';
|
|
$lng['serversettings']['manual'] = 'Manual';
|
|
$lng['mails']['webmaxpercent']['mailbody'] = 'Dear {NAME},\n\nyou used {DISKUSED} MB of your available {DISKAVAILABLE} MB of diskspace.\nThis is more than {MAX_PERCENT}%.\n\nYours sincerely, the Froxlor-Team';
|
|
$lng['mails']['webmaxpercent']['subject'] = 'Reaching your diskspace limit';
|
|
$lng['mysql']['database_edit'] = 'Edit database';
|
|
|
|
// ADDED IN FROXLOR 0.9.18
|
|
$lng['error']['domains_cantdeletedomainwithaliases'] = 'You cannot delete a domain which is used for alias-domains. You have to delete the aliases first.';
|
|
$lng['serversettings']['default_theme'] = 'Default theme';
|
|
$lng['menue']['main']['changetheme'] = 'Change theme';
|
|
$lng['panel']['theme'] = 'Theme';
|
|
$lng['success']['rebuildingconfigs'] = 'Successfully inserted tasks for rebuild configfiles';
|
|
$lng['panel']['variable'] = 'Variable';
|
|
$lng['panel']['description'] = 'Description';
|
|
$lng['emails']['back_to_overview'] = 'Back to overview';
|
|
|
|
// ADDED IN FROXLOR 0.9.20
|
|
$lng['error']['user_banned'] = 'Your account has been locked. Please contact your administrator for further information.';
|
|
$lng['serversettings']['validate_domain'] = 'Validate domain names';
|
|
$lng['login']['combination_not_found'] = 'Combination of user and email adress not found.';
|
|
$lng['customer']['generated_pwd'] = 'Password suggestion';
|
|
$lng['customer']['usedmax'] = 'Used / Max';
|
|
$lng['admin']['traffic'] = 'Traffic';
|
|
$lng['admin']['domaintraffic'] = 'Domains';
|
|
$lng['admin']['customertraffic'] = 'Customers';
|
|
$lng['traffic']['customer'] = 'Customer';
|
|
$lng['traffic']['domain'] = 'Domain';
|
|
$lng['traffic']['trafficoverview'] = 'Traffic summary by';
|
|
$lng['traffic']['months']['jan'] = 'Jan';
|
|
$lng['traffic']['months']['feb'] = 'Feb';
|
|
$lng['traffic']['months']['mar'] = 'Mar';
|
|
$lng['traffic']['months']['apr'] = 'Apr';
|
|
$lng['traffic']['months']['may'] = 'May';
|
|
$lng['traffic']['months']['jun'] = 'Jun';
|
|
$lng['traffic']['months']['jul'] = 'Jul';
|
|
$lng['traffic']['months']['aug'] = 'Aug';
|
|
$lng['traffic']['months']['sep'] = 'Sep';
|
|
$lng['traffic']['months']['oct'] = 'Oct';
|
|
$lng['traffic']['months']['nov'] = 'Nov';
|
|
$lng['traffic']['months']['dec'] = 'Dec';
|
|
$lng['traffic']['months']['total'] = 'Total';
|
|
$lng['traffic']['details'] = 'Details';
|
|
$lng['menue']['traffic']['table'] = 'Traffic';
|
|
$lng['error']['admin_domain_emailsystemhostname'] = 'Sorry, the system - hostname may not be used as a customer domain';
|
|
$lng['backup'] = 'Backup';
|
|
$lng['backup_allowed'] = 'Backup allowed';
|
|
$lng['extras']['backup_create'] = 'Create Backup?';
|
|
$lng['extras']['backup_info'] = 'Backup will be saved once daily to a FTP directory. The FTP username is "<Froxloruser>_backup". The FTP password is the same as for your main FTP account.';
|
|
$lng['extras']['backup_info_sep'] = 'It contains compressed archives of your web-directory and databases.';
|
|
$lng['extras']['backup_info_big'] = 'It contains a compressed archive of your web-directory and databases.';
|
|
$lng['extras']['backup_count_info'] = '<br /><br />Please note that the backup will charge your webspace!';
|
|
$lng['serversettings']['backup_count'] = 'Should backup size be subtracted from webspace size?';
|
|
$lng['serversettings']['backup_enabled'] = 'Backup activated?';
|
|
$lng['serversettings']['backupdir']['description'] = 'Backup dir path?';
|
|
$lng['serversettings']['mysqldump_path']['description'] = 'Path to mysqldump binary?';
|
|
$lng['serversettings']['backup_bigfile'] = 'Save backup in 1 big file instead in separeted files for html and databases?';
|
|
$lng['serversettings']['backup_ftp_enabled'] = 'FTP Upload activated?';
|
|
$lng['serversettings']['backup_ftp_server'] = 'FTP Server:';
|
|
$lng['serversettings']['backup_ftp_user'] = 'FTP Username:';
|
|
$lng['serversettings']['backup_ftp_pass'] = 'FTP Password:';
|
|
$lng['crondesc']['cron_backup'] = 'Backup cronjob';
|
|
|
|
// ADDED IN FROXLOR 0.9.21
|
|
$lng['gender']['title'] = 'Title';
|
|
$lng['gender']['male'] = 'Mr.';
|
|
$lng['gender']['female'] = 'Mrs.';
|
|
$lng['gender']['undef'] = '';
|
|
$lng['serversettings']['backup_ftp_passive_mode'] = 'Use passive mode';
|
|
|
|
// Country code (ISO-3166-2)
|
|
$lng['country']['AF'] = "Afghanistan";
|
|
$lng['country']['AX'] = "Aland Islands";
|
|
$lng['country']['AL'] = "Albania";
|
|
$lng['country']['DZ'] = "Algeria";
|
|
$lng['country']['AS'] = "American Samoa";
|
|
$lng['country']['AD'] = "Andorra";
|
|
$lng['country']['AO'] = "Angola";
|
|
$lng['country']['AI'] = "Anguilla";
|
|
$lng['country']['AQ'] = "Antarctica";
|
|
$lng['country']['AG'] = "Antigua and Barbuda";
|
|
$lng['country']['AR'] = "Argentina";
|
|
$lng['country']['AM'] = "Armenia";
|
|
$lng['country']['AW'] = "Aruba";
|
|
$lng['country']['AU'] = "Australia";
|
|
$lng['country']['AT'] = "Austria";
|
|
$lng['country']['AZ'] = "Azerbaijan";
|
|
$lng['country']['BS'] = "Bahamas";
|
|
$lng['country']['BH'] = "Bahrain";
|
|
$lng['country']['BD'] = "Bangladesh";
|
|
$lng['country']['BB'] = "Barbados";
|
|
$lng['country']['BY'] = "Belarus";
|
|
$lng['country']['BE'] = "Belgium";
|
|
$lng['country']['BZ'] = "Belize";
|
|
$lng['country']['BJ'] = "Benin";
|
|
$lng['country']['BM'] = "Bermuda";
|
|
$lng['country']['BT'] = "Bhutan";
|
|
$lng['country']['BO'] = "Bolivia, Plurinational State of";
|
|
$lng['country']['BQ'] = "Bonaire, Saint Eustatius and Saba";
|
|
$lng['country']['BA'] = "Bosnia and Herzegovina";
|
|
$lng['country']['BW'] = "Botswana";
|
|
$lng['country']['BV'] = "Bouvet Island";
|
|
$lng['country']['BR'] = "Brazil";
|
|
$lng['country']['IO'] = "British Indian Ocean Territory";
|
|
$lng['country']['BN'] = "Brunei Darussalam";
|
|
$lng['country']['BG'] = "Bulgaria";
|
|
$lng['country']['BF'] = "Burkina Faso";
|
|
$lng['country']['BI'] = "Burundi";
|
|
$lng['country']['KH'] = "Cambodia";
|
|
$lng['country']['CM'] = "Cameroon";
|
|
$lng['country']['CA'] = "Canada";
|
|
$lng['country']['CV'] = "Cape Verde";
|
|
$lng['country']['KY'] = "Cayman Islands";
|
|
$lng['country']['CF'] = "Central African Republic";
|
|
$lng['country']['TD'] = "Chad";
|
|
$lng['country']['CL'] = "Chile";
|
|
$lng['country']['CN'] = "China";
|
|
$lng['country']['CX'] = "Christmas Island";
|
|
$lng['country']['CC'] = "Cocos (Keeling) Islands";
|
|
$lng['country']['CO'] = "Colombia";
|
|
$lng['country']['KM'] = "Comoros";
|
|
$lng['country']['CG'] = "Congo";
|
|
$lng['country']['CD'] = "Congo, The Democratic Republic of the";
|
|
$lng['country']['CK'] = "Cook Islands";
|
|
$lng['country']['CR'] = "Costa Rica";
|
|
$lng['country']['CI'] = "Cote D'ivoire";
|
|
$lng['country']['HR'] = "Croatia";
|
|
$lng['country']['CU'] = "Cuba";
|
|
$lng['country']['CW'] = "Curacao";
|
|
$lng['country']['CY'] = "Cyprus";
|
|
$lng['country']['CZ'] = "Czech Republic";
|
|
$lng['country']['DK'] = "Denmark";
|
|
$lng['country']['DJ'] = "Djibouti";
|
|
$lng['country']['DM'] = "Dominica";
|
|
$lng['country']['DO'] = "Dominican Republic";
|
|
$lng['country']['EC'] = "Ecuador";
|
|
$lng['country']['EG'] = "Egypt";
|
|
$lng['country']['SV'] = "El Salvador";
|
|
$lng['country']['GQ'] = "Equatorial Guinea";
|
|
$lng['country']['ER'] = "Eritrea";
|
|
$lng['country']['EE'] = "Estonia";
|
|
$lng['country']['ET'] = "Ethiopia";
|
|
$lng['country']['FK'] = "Falkland Islands (Malvinas)";
|
|
$lng['country']['FO'] = "Faroe Islands";
|
|
$lng['country']['FJ'] = "Fiji";
|
|
$lng['country']['FI'] = "Finland";
|
|
$lng['country']['FR'] = "France";
|
|
$lng['country']['GF'] = "French Guiana";
|
|
$lng['country']['PF'] = "French Polynesia";
|
|
$lng['country']['TF'] = "French Southern Territories";
|
|
$lng['country']['GA'] = "Gabon";
|
|
$lng['country']['GM'] = "Gambia";
|
|
$lng['country']['GE'] = "Georgia";
|
|
$lng['country']['DE'] = "Germany";
|
|
$lng['country']['GH'] = "Ghana";
|
|
$lng['country']['GI'] = "Gibraltar";
|
|
$lng['country']['GR'] = "Greece";
|
|
$lng['country']['GL'] = "Greenland";
|
|
$lng['country']['GD'] = "Grenada";
|
|
$lng['country']['GP'] = "Guadeloupe";
|
|
$lng['country']['GU'] = "Guam";
|
|
$lng['country']['GT'] = "Guatemala";
|
|
$lng['country']['GG'] = "Guernsey";
|
|
$lng['country']['GN'] = "Guinea";
|
|
$lng['country']['GW'] = "Guinea-Bissau";
|
|
$lng['country']['GY'] = "Guyana";
|
|
$lng['country']['HT'] = "Haiti";
|
|
$lng['country']['HM'] = "Heard Island and McDonald Islands";
|
|
$lng['country']['VA'] = "Holy See (Vatican City State)";
|
|
$lng['country']['HN'] = "Honduras";
|
|
$lng['country']['HK'] = "Hong Kong";
|
|
$lng['country']['HU'] = "Hungary";
|
|
$lng['country']['IS'] = "Iceland";
|
|
$lng['country']['IN'] = "India";
|
|
$lng['country']['ID'] = "Indonesia";
|
|
$lng['country']['IR'] = "Iran, Islamic Republic of";
|
|
$lng['country']['IQ'] = "Iraq";
|
|
$lng['country']['IE'] = "Ireland";
|
|
$lng['country']['IM'] = "Isle of Man";
|
|
$lng['country']['IL'] = "Israel";
|
|
$lng['country']['IT'] = "Italy";
|
|
$lng['country']['JM'] = "Jamaica";
|
|
$lng['country']['JP'] = "Japan";
|
|
$lng['country']['JE'] = "Jersey";
|
|
$lng['country']['JO'] = "Jordan";
|
|
$lng['country']['KZ'] = "Kazakhstan";
|
|
$lng['country']['KE'] = "Kenya";
|
|
$lng['country']['KI'] = "Kiribati";
|
|
$lng['country']['KP'] = "Korea, Democratic People's Republic of";
|
|
$lng['country']['KR'] = "Korea, Republic of";
|
|
$lng['country']['KW'] = "Kuwait";
|
|
$lng['country']['KG'] = "Kyrgyzstan";
|
|
$lng['country']['LA'] = "Lao People's Democratic Republic";
|
|
$lng['country']['LV'] = "Latvia";
|
|
$lng['country']['LB'] = "Lebanon";
|
|
$lng['country']['LS'] = "Lesotho";
|
|
$lng['country']['LR'] = "Liberia";
|
|
$lng['country']['LY'] = "Libyan Arab Jamahiriya";
|
|
$lng['country']['LI'] = "Liechtenstein";
|
|
$lng['country']['LT'] = "Lithuania";
|
|
$lng['country']['LU'] = "Luxembourg";
|
|
$lng['country']['MO'] = "Macao";
|
|
$lng['country']['MK'] = "Macedonia, The Former Yugoslav Republic of";
|
|
$lng['country']['MG'] = "Madagascar";
|
|
$lng['country']['MW'] = "Malawi";
|
|
$lng['country']['MY'] = "Malaysia";
|
|
$lng['country']['MV'] = "Maldives";
|
|
$lng['country']['ML'] = "Mali";
|
|
$lng['country']['MT'] = "Malta";
|
|
$lng['country']['MH'] = "Marshall Islands";
|
|
$lng['country']['MQ'] = "Martinique";
|
|
$lng['country']['MR'] = "Mauritania";
|
|
$lng['country']['MU'] = "Mauritius";
|
|
$lng['country']['YT'] = "Mayotte";
|
|
$lng['country']['MX'] = "Mexico";
|
|
$lng['country']['FM'] = "Micronesia, Federated States of";
|
|
$lng['country']['MD'] = "Moldova, Republic of";
|
|
$lng['country']['MC'] = "Monaco";
|
|
$lng['country']['MN'] = "Mongolia";
|
|
$lng['country']['ME'] = "Montenegro";
|
|
$lng['country']['MS'] = "Montserrat";
|
|
$lng['country']['MA'] = "Morocco";
|
|
$lng['country']['MZ'] = "Mozambique";
|
|
$lng['country']['MM'] = "Myanmar";
|
|
$lng['country']['NA'] = "Namibia";
|
|
$lng['country']['NR'] = "Nauru";
|
|
$lng['country']['NP'] = "Nepal";
|
|
$lng['country']['NL'] = "Netherlands";
|
|
$lng['country']['NC'] = "New Caledonia";
|
|
$lng['country']['NZ'] = "New Zealand";
|
|
$lng['country']['NI'] = "Nicaragua";
|
|
$lng['country']['NE'] = "Niger";
|
|
$lng['country']['NG'] = "Nigeria";
|
|
$lng['country']['NU'] = "Niue";
|
|
$lng['country']['NF'] = "Norfolk Island";
|
|
$lng['country']['MP'] = "Northern Mariana Islands";
|
|
$lng['country']['NO'] = "Norway";
|
|
$lng['country']['OM'] = "Oman";
|
|
$lng['country']['PK'] = "Pakistan";
|
|
$lng['country']['PW'] = "Palau";
|
|
$lng['country']['PS'] = "Palestinian Territory, Occupied";
|
|
$lng['country']['PA'] = "Panama";
|
|
$lng['country']['PG'] = "Papua New Guinea";
|
|
$lng['country']['PY'] = "Paraguay";
|
|
$lng['country']['PE'] = "Peru";
|
|
$lng['country']['PH'] = "Philippines";
|
|
$lng['country']['PN'] = "Pitcairn";
|
|
$lng['country']['PL'] = "Poland";
|
|
$lng['country']['PT'] = "Portugal";
|
|
$lng['country']['PR'] = "Puerto Rico";
|
|
$lng['country']['QA'] = "Qatar";
|
|
$lng['country']['RE'] = "Reunion";
|
|
$lng['country']['RO'] = "Romania";
|
|
$lng['country']['RU'] = "Russian Federation";
|
|
$lng['country']['RW'] = "Rwanda";
|
|
$lng['country']['BL'] = "Saint Barthelemy";
|
|
$lng['country']['SH'] = "Saint Helena, Ascension and Tristan Da Cunha";
|
|
$lng['country']['KN'] = "Saint Kitts and Nevis";
|
|
$lng['country']['LC'] = "Saint Lucia";
|
|
$lng['country']['MF'] = "Saint Martin (French Part)";
|
|
$lng['country']['PM'] = "Saint Pierre and Miquelon";
|
|
$lng['country']['VC'] = "Saint Vincent and the Grenadines";
|
|
$lng['country']['WS'] = "Samoa";
|
|
$lng['country']['SM'] = "San Marino";
|
|
$lng['country']['ST'] = "Sao Tome and Principe";
|
|
$lng['country']['SA'] = "Saudi Arabia";
|
|
$lng['country']['SN'] = "Senegal";
|
|
$lng['country']['RS'] = "Serbia";
|
|
$lng['country']['SC'] = "Seychelles";
|
|
$lng['country']['SL'] = "Sierra Leone";
|
|
$lng['country']['SG'] = "Singapore";
|
|
$lng['country']['SX'] = "Sint Maarten (Dutch Part)";
|
|
$lng['country']['SK'] = "Slovakia";
|
|
$lng['country']['SI'] = "Slovenia";
|
|
$lng['country']['SB'] = "Solomon Islands";
|
|
$lng['country']['SO'] = "Somalia";
|
|
$lng['country']['ZA'] = "South Africa";
|
|
$lng['country']['GS'] = "South Georgia and the South Sandwich Islands";
|
|
$lng['country']['ES'] = "Spain";
|
|
$lng['country']['LK'] = "Sri Lanka";
|
|
$lng['country']['SD'] = "Sudan";
|
|
$lng['country']['SR'] = "Suriname";
|
|
$lng['country']['SJ'] = "Svalbard and Jan Mayen";
|
|
$lng['country']['SZ'] = "Swaziland";
|
|
$lng['country']['SE'] = "Sweden";
|
|
$lng['country']['CH'] = "Switzerland";
|
|
$lng['country']['SY'] = "Syrian Arab Republic";
|
|
$lng['country']['TW'] = "Taiwan, Province of China";
|
|
$lng['country']['TJ'] = "Tajikistan";
|
|
$lng['country']['TZ'] = "Tanzania, United Republic of";
|
|
$lng['country']['TH'] = "Thailand";
|
|
$lng['country']['TL'] = "Timor-Leste";
|
|
$lng['country']['TG'] = "Togo";
|
|
$lng['country']['TK'] = "Tokelau";
|
|
$lng['country']['TO'] = "Tonga";
|
|
$lng['country']['TT'] = "Trinidad and Tobago";
|
|
$lng['country']['TN'] = "Tunisia";
|
|
$lng['country']['TR'] = "Turkey";
|
|
$lng['country']['TM'] = "Turkmenistan";
|
|
$lng['country']['TC'] = "Turks and Caicos Islands";
|
|
$lng['country']['TV'] = "Tuvalu";
|
|
$lng['country']['UG'] = "Uganda";
|
|
$lng['country']['UA'] = "Ukraine";
|
|
$lng['country']['AE'] = "United Arab Emirates";
|
|
$lng['country']['GB'] = "United Kingdom";
|
|
$lng['country']['US'] = "United States";
|
|
$lng['country']['UM'] = "United States Minor Outlying Islands";
|
|
$lng['country']['UY'] = "Uruguay";
|
|
$lng['country']['UZ'] = "Uzbekistan";
|
|
$lng['country']['VU'] = "Vanuatu";
|
|
$lng['country']['VE'] = "Venezuela, Bolivarian Republic of";
|
|
$lng['country']['VN'] = "Viet Nam";
|
|
$lng['country']['VG'] = "Virgin Islands, British";
|
|
$lng['country']['VI'] = "Virgin Islands, U.S.";
|
|
$lng['country']['WF'] = "Wallis and Futuna";
|
|
$lng['country']['EH'] = "Western Sahara";
|
|
$lng['country']['YE'] = "Yemen";
|
|
$lng['country']['ZM'] = "Zambia";
|
|
$lng['country']['ZW'] = "Zimbabwe";
|
|
|
|
// ADDED IN FROXLOR 0.9.22-svn1
|
|
$lng['diskquota'] = 'Quota';
|
|
$lng['serversettings']['diskquota_enabled'] = 'Quota activated?';
|
|
$lng['serversettings']['diskquota_repquota_path']['description'] = 'Path to repquota';
|
|
$lng['serversettings']['diskquota_quotatool_path']['description'] = 'Path to quotatool';
|
|
$lng['serversettings']['diskquota_customer_partition']['description'] = 'Partition, on which the customer files are stored';
|
|
$lng['tasks']['diskspace_set_quota'] = 'Set quota on filesystem';
|
|
$lng['error']['session_timeout'] = 'Value too low';
|
|
$lng['error']['session_timeout_desc'] = 'You should not set the session timeout lower than 1 minute.';
|
|
|
|
// ADDED IN FROXLOR 0.9.24-svn1
|
|
$lng['logrotate'] = 'Logrotate';
|
|
$lng['logrotate_enabled'] = 'Enable logrotate?';
|
|
$lng['logrotate_binary'] = 'Path to logrotate binary:';
|
|
$lng['logrotate_interval'] = 'Interval?';
|
|
$lng['logrotate_keep'] = 'How many logfiles should be kept?';
|
|
$lng['admin']['assignedmax'] = 'Assigned / Max';
|
|
$lng['admin']['usedmax'] = 'Used / Max';
|
|
$lng['admin']['used'] = 'Used';
|
|
$lng['mysql']['size'] = 'Database size (MB)';
|
|
|
|
$lng['error']['invalidhostname'] = 'Hostname can\'t be empty nor can it consist only of whitespaces';
|
|
|
|
$lng['traffic']['http'] = 'HTTP (MB)';
|
|
$lng['traffic']['ftp'] = 'FTP (MB)';
|
|
$lng['traffic']['mail'] = 'Mail (MB)';
|