Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
ISPConfig
ISPConfig 3
Commits
141f4cfa
Commit
141f4cfa
authored
Nov 28, 2008
by
karailiev
Browse files
* merge all language files
parent
0dae6d73
Changes
188
Hide whitespace changes
Inline
Side-by-side
interface/lib/config.inc.php
View file @
141f4cfa
...
...
@@ -37,86 +37,119 @@ if( !empty($_SERVER['DOCUMENT_ROOT']) ) {
ini_set
(
'register_globals'
,
0
);
}
$conf
[
"app_title"
]
=
"ISPConfig"
;
$conf
[
"app_version"
]
=
"3.0.0"
;
$conf
[
"modules_available"
]
=
"admin,mail,sites,monitor,client,dns"
;
$conf
[
"interface_logout_url"
]
=
""
;
//** Key paramaters
$conf
[
'app_title'
]
=
'ISPConfig'
;
$conf
[
'app_version'
]
=
'3.0.0.8'
;
$conf
[
'modules_available'
]
=
'admin,mail,sites,monitor,client,dns'
;
define
(
'ISPC_APP_TITLE'
,
'ISPConfig'
);
$conf
[
'app_title'
]
=
'ISPConfig'
;
define
(
'ISPC_APP_VERSION'
,
'3.0.0'
);
$conf
[
'app_version'
]
=
'3.0.0'
;
$conf
[
'modules_available'
]
=
'admin,mail,sites,monitor,client,dns,help'
;
define
(
'ISPC_APP_TITLE'
,
'ISPConfig'
);
define
(
'ISPC_APP_VERSION'
,
'3.0.0.8'
);
//** The main ROOT is the parent directory to this file, ie Interface/. NO trailing slashes.
define
(
'ISPC_ROOT_PATH'
,
realpath
(
dirname
(
__FILE__
)
.
'/../'
));
define
(
'ISPC_LIB_PATH'
,
ISPC_ROOT_PATH
.
'/lib'
);
define
(
'ISPC_CLASS_PATH'
,
ISPC_ROOT_PATH
.
'/lib/classes'
);
define
(
'ISPC_WEB_PATH'
,
ISPC_ROOT_PATH
.
'/web'
);
define
(
'ISPC_THEMES_PATH'
,
ISPC_ROOT_PATH
.
'/web/themes'
);
define
(
'ISPC_WEB_TEMP_PATH'
,
ISPC_WEB_PATH
.
'/temp'
);
// Path for downloads, accessible via browser
define
(
'ISPC_CACHE_PATH'
,
ISPC_ROOT_PATH
.
'/cache'
);
//** Interface settings
define
(
'ISPC_INTERFACE_MODULES_ENABLED'
,
'mail,sites,dns,tools'
);
//** The main ROOT is the parent directory to this file, ie Interface/. NO trailing slashes.
define
(
'ISPC_ROOT_PATH'
,
realpath
(
dirname
(
__FILE__
)
.
'/../'
));
define
(
'ISPC_LIB_PATH'
,
ISPC_ROOT_PATH
.
'/lib'
);
define
(
'ISPC_CLASS_PATH'
,
ISPC_ROOT_PATH
.
'/lib/classes'
);
define
(
'ISPC_WEB_PATH'
,
ISPC_ROOT_PATH
.
'/web'
);
define
(
'ISPC_THEMES_PATH'
,
ISPC_ROOT_PATH
.
'/web/themes'
);
define
(
'ISPC_WEB_TEMP_PATH'
,
ISPC_WEB_PATH
.
'/temp'
);
// Path for downloads, accessible via browser
define
(
'ISPC_CACHE_PATH'
,
ISPC_ROOT_PATH
.
'/cache'
);
/*
Server variables
*/
$conf
[
"server_id"
]
=
"
{
server_id
}
"
;
//**Server variables
$conf
[
"server_id"
]
=
"
{
server_id
}
"
;
/*
Database Settings
*/
//** Database Settings
$conf
[
"db_type"
]
=
'mysql'
;
$conf
[
"db_host"
]
=
'localhost'
;
$conf
[
"db_database"
]
=
'dbispconfig'
;
$conf
[
"db_user"
]
=
'ispconfig'
;
$conf
[
"db_password"
]
=
'
e8605b27a4360d135f62129627d8d9ad
'
;
$conf
[
"db_password"
]
=
'
56409c08def09f8ee9c42416f4bcfc51
'
;
define
(
"DB_TYPE"
,
$conf
[
"db_type"
]);
define
(
"DB_HOST"
,
$conf
[
"db_host"
]);
define
(
"DB_DATABASE"
,
$conf
[
"db_database"
]);
define
(
"DB_USER"
,
$conf
[
"db_user"
]);
define
(
"DB_PASSWORD"
,
$conf
[
"db_password"
]);
/*
Path Settings (Do not change!)
*/
//** Path Settings (Do not change!)
$conf
[
"rootpath"
]
=
substr
(
dirname
(
__FILE__
),
0
,
-
4
);
$conf
[
"fs_div"
]
=
"/"
;
// File system divider, \\ on windows and / on linux and unix
$conf
[
"classpath"
]
=
$conf
[
"rootpath"
]
.
$conf
[
"fs_div"
]
.
"lib"
.
$conf
[
"fs_div"
]
.
"classes"
;
$conf
[
"temppath"
]
=
$conf
[
"rootpath"
]
.
$conf
[
"fs_div"
]
.
"temp"
;
define
(
"DIR_TRENNER"
,
$conf
[
"fs_div"
]);
define
(
"SERVER_ROOT"
,
$conf
[
"rootpath"
]);
define
(
"INCLUDE_ROOT"
,
SERVER_ROOT
.
DIR_TRENNER
.
"lib"
);
define
(
"CLASSES_ROOT"
,
INCLUDE_ROOT
.
DIR_TRENNER
.
"classes"
);
define
(
"DIR_TRENNER"
,
$conf
[
"fs_div"
]);
define
(
"SERVER_ROOT"
,
$conf
[
"rootpath"
]);
define
(
"INCLUDE_ROOT"
,
SERVER_ROOT
.
DIR_TRENNER
.
"lib"
);
define
(
"CLASSES_ROOT"
,
INCLUDE_ROOT
.
DIR_TRENNER
.
"classes"
);
define
(
"DB_TYPE"
,
$conf
[
"db_type"
]);
define
(
"DB_HOST"
,
$conf
[
"db_host"
]);
define
(
"DB_DATABASE"
,
$conf
[
"db_database"
]);
define
(
"DB_USER"
,
$conf
[
"db_user"
]);
define
(
"DB_PASSWORD"
,
$conf
[
"db_password"
]);
/*
Logging
*/
//** Logging
$conf
[
"log_file"
]
=
'/var/log/ispconfig/ispconfig.log'
;
$conf
[
"log_priority"
]
=
2
;
// 0 = Debug, 1 = Warning, 2 = Error
/*
Allow software package installations
*/
//** Allow software package installations
$conf
[
'software_updates_enabled'
]
=
false
;
//** Themes
/*
Themes
*/
$conf
[
"theme"
]
=
'default'
;
$conf
[
"html_content_encoding"
]
=
'text/html; charset=iso-8859-1'
;
$conf
[
"logo"
]
=
'themes/default/images/mydnsconfig_logo.gif'
;
/*
Default Language
*/
//** Default Language
$conf
[
"language"
]
=
'en'
;
$conf
[
"language"
]
=
'en'
;
/*
Misc.
*/
//** Misc.
$conf
[
"interface_logout_url"
]
=
""
;
// example: http://www.domain.tld/
$conf
[
"interface_logout_url"
]
=
""
;
// example: http://www.domain.tld/
//** Auto Load Modules
/*
Auto Load Modules
*/
$conf
[
"start_db"
]
=
true
;
$conf
[
"start_session"
]
=
true
;
//** Constants
define
(
"LOGLEVEL_DEBUG"
,
0
);
define
(
"LOGLEVEL_WARN"
,
1
);
define
(
"LOGLEVEL_ERROR"
,
2
);
?>
/*
Constants
*/
define
(
"LOGLEVEL_DEBUG"
,
0
);
define
(
"LOGLEVEL_WARN"
,
1
);
define
(
"LOGLEVEL_ERROR"
,
2
);
?>
\ No newline at end of file
interface/lib/lang/fr.lng
View file @
141f4cfa
<?php
// Messages d'erreur Globaux
$wb
[
301
]
=
'Module interdit pour l\'utilisateur courant.'
;
$wb
[
302
]
=
'Module invalide.'
;
$wb
[
1001
]
=
'The username and password must not be empty!'
;
$wb
[
1002
]
=
'The username and/or password are not correct!'
;
$wb
[
1003
]
=
'The username is deactivated!'
;
$wb
[
'delete_confirmation'
]
=
'Do you really want to delete this record?'
;
$wb
[
'error_no_view_permission'
]
=
'You don\'t have the permission to view this record or this record does not exist!'
;
$wb
[
'error_no_delete_permission'
]
=
'You don\'t have the permission to delete this record!'
;
?>
\ No newline at end of file
<?php
$wb
[
'301'
]
=
'Module interdit pour lutilisateur courant.'
;
$wb
[
'302'
]
=
'Module invalide.'
;
$wb
[
'1001'
]
=
'The username and password must not be empty!'
;
$wb
[
'1002'
]
=
'The username and/or password are not correct!'
;
$wb
[
'1003'
]
=
'The username is deactivated!'
;
$wb
[
'delete_confirmation'
]
=
'Do you really want to delete this record?'
;
$wb
[
'error_no_view_permission'
]
=
'You dont have the permission to view this record or this record does not exist!'
;
$wb
[
'error_no_delete_permission'
]
=
'You dont have the permission to delete this record!'
;
?>
interface/lib/lang/nl.lng
View file @
141f4cfa
<?php
$wb
[
'301'
]
=
'Module niet toegestaan voor de huidige gebruiker.'
;
$wb
[
'302'
]
=
'Ongeldige module.'
;
$wb
[
'1001'
]
=
'De gebruikersnaam en wachtwoord kunnen niet leeg zijn!'
;
$wb
[
'1002'
]
=
'De gebruikersnaam en/of wachtwoord zijn onjuist!'
;
$wb
[
'1003'
]
=
'De gebruikersnaam wordt gedeactiveerd!'
;
$wb
[
'delete_confirmation'
]
=
'Wilt u dit record echt verwijderen?'
;
$wb
[
'error_no_view_permission'
]
=
'U heeft geen toestemming om dit record te bekijken of dit record bestaat niet!'
;
$wb
[
'error_no_delete_permission'
]
=
'U heeft geen toestemming om dit record te verwijderen!'
;
?>
<?php
$wb
[
'301'
]
=
'Module niet toegestaan voor de huidige gebruiker.'
;
$wb
[
'302'
]
=
'Ongeldige module.'
;
$wb
[
'1001'
]
=
'De gebruikersnaam en wachtwoord kunnen niet leeg zijn!'
;
$wb
[
'1002'
]
=
'De gebruikersnaam en/of wachtwoord zijn onjuist!'
;
$wb
[
'1003'
]
=
'De gebruikersnaam wordt gedeactiveerd!'
;
$wb
[
'delete_confirmation'
]
=
'Wilt u dit record echt verwijderen?'
;
$wb
[
'error_no_view_permission'
]
=
'U heeft geen toestemming om dit record te bekijken of dit record bestaat niet!'
;
$wb
[
'error_no_delete_permission'
]
=
'U heeft geen toestemming om dit record te verwijderen!'
;
?>
interface/lib/lang/se.lng
View file @
141f4cfa
<?php
// Globale Error Messages
$wb
[
301
]
=
'Modulen är ej tillåten för nuvarande användare.'
;
$wb
[
302
]
=
'Modulen är ogiltig.'
;
$wb
[
1001
]
=
'Användarnamn och lösenord får ej vara tomma!'
;
$wb
[
1002
]
=
'Användarnamnet och/eller lösenordet är felaktigt!'
;
$wb
[
1003
]
=
'Detta användarnamn är deaktiverat!'
;
$wb
[
'delete_confirmation'
]
=
'Vill du verkligen ta bort detta inlägg?'
;
$wb
[
'error_no_view_permission'
]
=
'Du har ej behörighet att se detta inlägg eller så existerar den ej!'
;
$wb
[
'error_no_delete_permission'
]
=
'Du har ej behörighet att ta bort detta inlägg!'
;
?>
\ No newline at end of file
<?php
$wb
[
'301'
]
=
'Modulen är ej tillåten för nuvarande användare.'
;
$wb
[
'302'
]
=
'Modulen är ogiltig.'
;
$wb
[
'1001'
]
=
'Användarnamn och lösenord får ej vara tomma!'
;
$wb
[
'1002'
]
=
'Användarnamnet och/eller lösenordet är felaktigt!'
;
$wb
[
'1003'
]
=
'Detta användarnamn är deaktiverat!'
;
$wb
[
'delete_confirmation'
]
=
'Vill du verkligen ta bort detta inlägg?'
;
$wb
[
'error_no_view_permission'
]
=
'Du har ej behörighet att se detta inlägg eller så existerar den ej!'
;
$wb
[
'error_no_delete_permission'
]
=
'Du har ej behörighet att ta bort detta inlägg!'
;
?>
interface/web/admin/lib/lang/fr.lng
View file @
141f4cfa
<?php
$wb
[
1001
]
=
"Nom d'utilisateur ou mot de passe vide."
;
$wb
[
1002
]
=
"Nom d'utilisateur ou mot de passe faux."
;
?>
\ No newline at end of file
$wb
[
'1001'
]
=
'Nom dutilisateur ou mot de passe vide.'
;
$wb
[
'1002'
]
=
'Nom dutilisateur ou mot de passe faux.'
;
$wb
[
'Firewall'
]
=
'Firewall'
;
$wb
[
'Groups'
]
=
'Groups'
;
$wb
[
'groups_description'
]
=
'Form to edit systemuser groups.'
;
$wb
[
'Server'
]
=
'Server'
;
$wb
[
'Services'
]
=
'Services'
;
$wb
[
'Config'
]
=
'Config'
;
$wb
[
'Server Config'
]
=
'Server Config'
;
$wb
[
'Mail'
]
=
'Mail'
;
$wb
[
'Getmail'
]
=
'Getmail'
;
$wb
[
'Web'
]
=
'Web'
;
$wb
[
'FastCGI'
]
=
'FastCGI'
;
$wb
[
'Jailkit'
]
=
'Jailkit'
;
$wb
[
'System'
]
=
'System'
;
$wb
[
'Add user'
]
=
'Add user'
;
$wb
[
'Edit user'
]
=
'Edit user'
;
$wb
[
'CP Users'
]
=
'CP Users'
;
$wb
[
'Add group'
]
=
'Add group'
;
$wb
[
'Edit group'
]
=
'Edit group'
;
$wb
[
'Edit server'
]
=
'Edit server'
;
$wb
[
'Edit Server IP'
]
=
'Edit Server IP'
;
$wb
[
'Servers'
]
=
'Servers'
;
$wb
[
'Sync. Now'
]
=
'Sync. Now'
;
$wb
[
'DB Sync.'
]
=
'DB Sync.'
;
$wb
[
'Languages'
]
=
'Languages'
;
$wb
[
'New Language'
]
=
'New Language'
;
$wb
[
'Export'
]
=
'Export'
;
$wb
[
'Import'
]
=
'Import'
;
$wb
[
'Language Editor'
]
=
'Language Editor'
;
$wb
[
'Software'
]
=
'Software'
;
$wb
[
'Repositories'
]
=
'Repositories'
;
?>
interface/web/admin/lib/lang/fr_dbsync.lng
View file @
141f4cfa
<?php
$wb
[
"jobname_txt"
]
=
'Nom'
;
$wb
[
"jobname_err"
]
=
'Le champ "Nom" est vide.'
;
$wb
[
"sync_interval_minutes_txt"
]
=
'Intervalle (Min.)'
;
$wb
[
"db_type_txt"
]
=
'Type de BDD'
;
$wb
[
"db_host_txt"
]
=
'Nom d\'hte BDD'
;
$wb
[
"db_name_txt"
]
=
'Nom de la BDD'
;
$wb
[
"db_username_txt"
]
=
'Utilisateur BDD'
;
$wb
[
"db_password_txt"
]
=
'Mot de passe BDD'
;
$wb
[
"db_tables_txt"
]
=
'Tables'
;
$wb
[
"empty_datalog_txt"
]
=
'Effacer le datalog aprs synchro.'
;
$wb
[
"sync_datalog_external_txt"
]
=
'Remplir le datalog externe.'
;
$wb
[
"active_txt"
]
=
'actif'
;
?>
\ No newline at end of file
$wb
[
'jobname_txt'
]
=
'Nom'
;
$wb
[
'jobname_err'
]
=
'Le champ Nom est vide.'
;
$wb
[
'sync_interval_minutes_txt'
]
=
'Intervalle (Min.)'
;
$wb
[
'db_type_txt'
]
=
'Type de BDD'
;
$wb
[
'db_host_txt'
]
=
'Nom dhte BDD'
;
$wb
[
'db_name_txt'
]
=
'Nom de la BDD'
;
$wb
[
'db_username_txt'
]
=
'Utilisateur BDD'
;
$wb
[
'db_password_txt'
]
=
'Mot de passe BDD'
;
$wb
[
'db_tables_txt'
]
=
'Tables'
;
$wb
[
'empty_datalog_txt'
]
=
'Effacer le datalog aprs synchro.'
;
$wb
[
'sync_datalog_external_txt'
]
=
'Remplir le datalog externe.'
;
$wb
[
'active_txt'
]
=
'actif'
;
$wb
[
'btn_save_txt'
]
=
'Save'
;
$wb
[
'btn_cancel_txt'
]
=
'Cancel'
;
?>
interface/web/admin/lib/lang/fr_dbsync_list.lng
View file @
141f4cfa
<?php
$wb
[
"list_head_txt"
]
=
'Synchronisation de la BDD'
;
$wb
[
"jobname_txt"
]
=
'Nom de la tache'
;
$wb
[
"db_host_txt"
]
=
'Hte BDD'
;
$wb
[
"db_name_txt"
]
=
'Nom de la BDD'
;
$wb
[
"page_txt"
]
=
'Page'
;
$wb
[
"page_of_txt"
]
=
'de'
;
$wb
[
"page_next_txt"
]
=
'Suivante'
;
$wb
[
"page_back_txt"
]
=
'Prcedente'
;
$wb
[
"delete_txt"
]
=
'Effacer'
;
$wb
[
"filter_txt"
]
=
'Filtrer'
;
?>
\ No newline at end of file
$wb
[
'list_head_txt'
]
=
'Synchronisation de la BDD'
;
$wb
[
'jobname_txt'
]
=
'Nom de la tache'
;
$wb
[
'db_host_txt'
]
=
'Hte BDD'
;
$wb
[
'db_name_txt'
]
=
'Nom de la BDD'
;
$wb
[
'page_txt'
]
=
'Page'
;
$wb
[
'page_of_txt'
]
=
'de'
;
$wb
[
'page_next_txt'
]
=
'Suivante'
;
$wb
[
'page_back_txt'
]
=
'Prcedente'
;
$wb
[
'delete_txt'
]
=
'Effacer'
;
$wb
[
'filter_txt'
]
=
'Filtrer'
;
$wb
[
'add_new_record_txt'
]
=
'Add new DBSync record'
;
?>
interface/web/admin/lib/lang/fr_filesync.lng
View file @
141f4cfa
<?php
$wb
[
"jobname_txt"
]
=
'Nom de la tache'
;
$wb
[
"jobname_err"
]
=
'Le nom est ide.'
;
$wb
[
"sync_interval_minutes_txt"
]
=
'Intervalle (Min.)'
;
$wb
[
"ftp_host_txt"
]
=
'Hte FTP'
;
$wb
[
"ftp_path_txt"
]
=
'Dossier FTP'
;
$wb
[
"ftp_username_txt"
]
=
'Utilisateur FTP'
;
$wb
[
"ftp_password_txt"
]
=
'Mot de passe FTP'
;
$wb
[
"local_path_txt"
]
=
'Dossier Local'
;
$wb
[
"wput_options_txt"
]
=
'Options Wput'
;
$wb
[
"active_txt"
]
=
'Active'
;
?>
\ No newline at end of file
$wb
[
'jobname_txt'
]
=
'Nom de la tache'
;
$wb
[
'jobname_err'
]
=
'Le nom est ide.'
;
$wb
[
'sync_interval_minutes_txt'
]
=
'Intervalle (Min.)'
;
$wb
[
'ftp_host_txt'
]
=
'Hte FTP'
;
$wb
[
'ftp_path_txt'
]
=
'Dossier FTP'
;
$wb
[
'ftp_username_txt'
]
=
'Utilisateur FTP'
;
$wb
[
'ftp_password_txt'
]
=
'Mot de passe FTP'
;
$wb
[
'local_path_txt'
]
=
'Dossier Local'
;
$wb
[
'wput_options_txt'
]
=
'Options Wput'
;
$wb
[
'active_txt'
]
=
'Active'
;
?>
interface/web/admin/lib/lang/fr_filesync_list.lng
View file @
141f4cfa
<?php
$wb
[
"list_head_txt"
]
=
'Synchronisation de Fichiers'
;
$wb
[
"jobname_txt"
]
=
'Nom de la tache'
;
$wb
[
"ftp_host_txt"
]
=
'Serveur FTP'
;
$wb
[
"local_path_txt"
]
=
'Dossier Local'
;
?>
\ No newline at end of file
$wb
[
'list_head_txt'
]
=
'Synchronisation de Fichiers'
;
$wb
[
'jobname_txt'
]
=
'Nom de la tache'
;
$wb
[
'ftp_host_txt'
]
=
'Serveur FTP'
;
$wb
[
'local_path_txt'
]
=
'Dossier Local'
;
?>
interface/web/admin/lib/lang/fr_groups.lng
View file @
141f4cfa
<?php
$wb
[
"description_txt"
]
=
'Description'
;
$wb
[
"name_txt"
]
=
'Groupe'
;
$wb
[
"name_err"
]
=
'Le groupe doit avoir entre 1 et 30 Chars.'
;
?>
\ No newline at end of file
$wb
[
'description_txt'
]
=
'Description'
;
$wb
[
'name_txt'
]
=
'Groupe'
;
$wb
[
'name_err'
]
=
'Le groupe doit avoir entre 1 et 30 Chars.'
;
$wb
[
'btn_save_txt'
]
=
'Save'
;
$wb
[
'btn_cancel_txt'
]
=
'Cancel'
;
?>
interface/web/admin/lib/lang/fr_groups_list.lng
View file @
141f4cfa
<?php
$wb
[
"list_head_txt"
]
=
'Groupes d\'utilisateur Systme'
;
$wb
[
"description_txt"
]
=
'Description'
;
$wb
[
"name_txt"
]
=
'Groupe'
;
$wb
[
"page_txt"
]
=
'Page'
;
$wb
[
"page_of_txt"
]
=
'de'
;
$wb
[
"page_next_txt"
]
=
'Suivante'
;
$wb
[
"page_back_txt"
]
=
'Prcedente'
;
$wb
[
"delete_txt"
]
=
'Effacer'
;
$wb
[
"filter_txt"
]
=
'Filtrer'
;
?>
\ No newline at end of file
$wb
[
'list_head_txt'
]
=
'Groupes dutilisateur Systme'
;
$wb
[
'description_txt'
]
=
'Description'
;
$wb
[
'name_txt'
]
=
'Groupe'
;
$wb
[
'page_txt'
]
=
'Page'
;
$wb
[
'page_of_txt'
]
=
'de'
;
$wb
[
'page_next_txt'
]
=
'Suivante'
;
$wb
[
'page_back_txt'
]
=
'Prcedente'
;
$wb
[
'delete_txt'
]
=
'Effacer'
;
$wb
[
'filter_txt'
]
=
'Filtrer'
;
$wb
[
'add_new_record_txt'
]
=
'Add new Group'
;
?>
interface/web/admin/lib/lang/fr_server.lng
View file @
141f4cfa
<?php
$wb
[
"server_name_txt"
]
=
'Nom du serveur'
;
$wb
[
"mail_server_txt"
]
=
'Serveur Mail'
;
$wb
[
"web_server_txt"
]
=
'Serveur Web'
;
$wb
[
"dns_server_txt"
]
=
'Serveur DNS'
;
$wb
[
"file_server_txt"
]
=
'Serveur de fichier'
;
$wb
[
"mysql_server_txt"
]
=
'Serveur MySQL'
;
$wb
[
"postgresql_server_txt"
]
=
'Serveur PostgreSQL'
;
$wb
[
"firebird_server_txt"
]
=
'Serveur Firebird'
;
$wb
[
"active_txt"
]
=
'Actif'
;
$wb
[
"btn_save_txt"
]
=
'Sauver'
;
$wb
[
"btn_cancel_txt"
]
=
'Annuler'
;
?>
\ No newline at end of file
$wb
[
'server_name_txt'
]
=
'Nom du serveur'
;
$wb
[
'mail_server_txt'
]
=
'Serveur Mail'
;
$wb
[
'web_server_txt'
]
=
'Serveur Web'
;
$wb
[
'dns_server_txt'
]
=
'Serveur DNS'
;
$wb
[
'file_server_txt'
]
=
'Serveur de fichier'
;
$wb
[
'active_txt'
]
=
'Actif'
;
$wb
[
'btn_save_txt'
]
=
'Sauver'
;
$wb
[
'btn_cancel_txt'
]
=
'Annuler'
;
$wb
[
'config_txt'
]
=
'config'
;
$wb
[
'db_server_txt'
]
=
'DB-Server'
;
$wb
[
'vserver_server_txt'
]
=
'VServer-Server'
;
?>
interface/web/admin/lib/lang/fr_server_list.lng
View file @
141f4cfa
<?php
$wb
[
"list_head_txt"
]
=
'Serveur'
;
$wb
[
"server_name_txt"
]
=
'Nom'
;
$wb
[
"mail_server_txt"
]
=
'Mail'
;
$wb
[
"web_server_txt"
]
=
'Web'
;
$wb
[
"dns_server_txt"
]
=
'DNS'
;
$wb
[
"file_server_txt"
]
=
'Fichier'
;
$wb
[
"mysql_server_txt"
]
=
'MySQL'
;
$wb
[
"postgresql_server_txt"
]
=
'PostgreSQL'
;
$wb
[
"firebird_server_txt"
]
=
'Firebird'
;
$wb
[
"page_txt"
]
=
'Page'
;
$wb
[
"page_of_txt"
]
=
'de'
;
$wb
[
"page_next_txt"
]
=
'Suivant'
;
$wb
[
"page_back_txt"
]
=
'Prcedent'
;
$wb
[
"delete_txt"
]
=
'Effacer'
;
$wb
[
"filter_txt"
]
=
'Filtrer'
;
?>
\ No newline at end of file
$wb
[
'list_head_txt'
]
=
'Serveur'
;
$wb
[
'server_name_txt'
]
=
'Nom'
;
$wb
[
'mail_server_txt'
]
=
'Mail'
;
$wb
[
'web_server_txt'
]
=
'Web'
;
$wb
[
'dns_server_txt'
]
=
'DNS'
;
$wb
[
'file_server_txt'
]
=
'Fichier'
;
$wb
[
'page_txt'
]
=
'Page'
;
$wb
[
'page_of_txt'
]
=
'de'
;
$wb
[
'page_next_txt'
]
=
'Suivant'
;
$wb
[
'page_back_txt'
]
=
'Prcedent'
;
$wb
[
'delete_txt'
]
=
'Effacer'
;
$wb
[
'filter_txt'
]
=
'Filtrer'
;
$wb
[
'db_server_txt'
]
=
'DB'
;
$wb
[
'vserver_server_txt'
]
=
'VServer'
;
$wb
[
'add_new_record_txt'
]
=
'Add new Server'
;
?>
interface/web/admin/lib/lang/fr_users.lng
View file @
141f4cfa
<?php
$wb
[
"username_txt"
]
=
'Nom d\'utilisateur'
;
$wb
[
"username_err"
]
=
'username_err'
;
$wb
[
"passwort_txt"
]
=
'Mot de passe'
;
$wb
[
"modules_txt"
]
=
'Module'
;
$wb
[
"startmodule_txt"
]
=
'Module de dmarrage'
;
$wb
[
"app_theme_txt"
]
=
'Design'
;
$wb
[
"typ_txt"
]
=
'Type'
;
$wb
[
"active_txt"
]
=
'Actif'
;
$wb
[
"language_txt"
]
=
'Langue'
;
$wb
[
"name_txt"
]
=
'Nom'
;
$wb
[
"vorname_txt"
]
=
'Prnom'
;
$wb
[
"unternehmen_txt"
]
=
'Socit'
;
$wb
[
"strasse_txt"
]
=
'Rue'
;
$wb
[
"ort_txt"
]
=
'Ville'
;
$wb
[
"plz_txt"
]
=
'Code Postal'
;
$wb
[
"land_txt"
]
=
'Pays'
;
$wb
[
"email_txt"
]
=
'E-mail'
;
$wb
[
"url_txt"
]
=
'Url'
;
$wb
[
"telefon_txt"
]
=
'Tlephone'
;
$wb
[
"fax_txt"
]
=
'Fax'
;
$wb
[
"groups_txt"
]
=
'Groupes'
;
$wb
[
"default_group_txt"
]
=
'Groupe par Dfaut'
;
?>
\ No newline at end of file
$wb
[
'username_txt'
]
=
'Nom dutilisateur'
;
$wb
[
'username_err'
]
=
'username_err'
;
$wb
[
'passwort_txt'
]
=
'Mot de passe'
;
$wb
[
'modules_txt'
]
=
'Module'
;
$wb
[
'startmodule_txt'
]
=
'Module de dmarrage'
;
$wb
[
'app_theme_txt'
]
=
'Design'
;
$wb
[
'typ_txt'
]
=
'Type'
;
$wb
[
'active_txt'
]
=
'Actif'
;
$wb
[
'language_txt'
]
=
'Langue'
;
$wb
[
'name_txt'
]
=
'Nom'
;
$wb
[
'vorname_txt'
]
=
'Prnom'
;
$wb
[
'unternehmen_txt'
]
=
'Socit'
;
$wb
[
'strasse_txt'
]
=
'Rue'
;
$wb
[
'ort_txt'
]
=
'Ville'
;
$wb
[
'plz_txt'
]
=
'Code Postal'
;
$wb
[
'land_txt'
]
=
'Pays'
;
$wb
[
'email_txt'
]
=
'E-mail'
;
$wb
[
'url_txt'
]
=
'Url'
;
$wb
[
'telefon_txt'
]
=
'Tlephone'
;
$wb
[
'fax_txt'
]
=
'Fax'
;
$wb
[
'groups_txt'
]
=
'Groupes'
;
$wb
[
'default_group_txt'
]
=
'Groupe par Dfaut'
;
$wb
[
'username_empty'
]
=
'The username is empty.'
;
$wb
[
'username_unique'
]
=
'There is already a user with this username.'
;
$wb
[
'password_strength_txt'
]
=
'Password strength'
;
$wb
[
'btn_save_txt'
]
=
'Save'
;
$wb
[
'btn_cancel_txt'
]
=
'Cancel'
;
$wb
[
'startmodule_err'
]
=
'Start module is not within modules.'
;
?>
interface/web/admin/lib/lang/fr_users_list.lng
View file @
141f4cfa
<?php
$wb
[
"list_head_txt"
]
=
'Utilisateurs'
;
$wb
[
"username_txt"
]
=
'Nom d\'utilisateur'
;
$wb
[
"name_txt"
]
=
'Nom'
;
$wb
[
"vorname_txt"
]
=
'Prnom'
;
$wb
[
"ort_txt"
]
=
'Ville'
;
$wb
[
"page_txt"
]
=
'Page'
;
$wb
[
"page_of_txt"
]
=
'de'
;
$wb
[
"page_next_txt"
]
=
'Suivant'
;
$wb
[
"page_back_txt"
]
=
'Prcedent'
;
$wb
[
"delete_txt"
]
=
'Effacer'
;
$wb
[
"filter_txt"
]
=
'Filtrer'
;
?>
\ No newline at end of file
$wb
[
'list_head_txt'
]
=
'Utilisateurs'
;
$wb
[
'username_txt'
]
=
'Nom dutilisateur'
;
$wb
[
'name_txt'
]
=
'Nom'
;
$wb
[
'vorname_txt'
]
=
'Prnom'
;
$wb
[
'ort_txt'
]
=
'Ville'
;
$wb
[
'page_txt'
]
=
'Page'
;
$wb
[
'page_of_txt'
]
=
'de'
;
$wb
[
'page_next_txt'
]
=
'Suivant'
;
$wb
[
'page_back_txt'
]
=
'Prcedent'
;
$wb
[
'delete_txt'
]
=
'Effacer'
;
$wb
[
'filter_txt'
]
=
'Filtrer'
;
$wb
[
'add_new_record_txt'
]
=
'Add new User'
;
?>
interface/web/admin/lib/lang/nl.lng
View file @
141f4cfa
<?php
$wb
[
1001
]
=
"Gebruikersnaam of wachtwoord is niet ingevuld."
;
$wb
[
1002
]
=
"Gebruikersnaam of wachtwoord onjuist."
;
$wb
[
'Firewall'
]
=
'Firewall'
;
$wb
[
'Groups'
]
=
'Groepen'
;
$wb
[
'groups_description'
]
=
'Formulier om systeemgebruikers en groepen te wijzigen.'
;
$wb
[
'Server'
]
=
'Server'
;
$wb
[
'Services'
]
=
'Services'
;
$wb
[
'Config'
]
=
'Configureer'
;
$wb
[
'Server Config'
]
=
'Server configuratie'
;
$wb
[
'Mail'
]
=
'Mail'
;
$wb
[
'Getmail'
]
=
'Getmail'
;
$wb
[
'Web'
]
=
'Web'
;
$wb
[
'FastCGI'
]
=
'FastCGI'
;
$wb
[
'Jailkit'
]
=
'Jailkit'
;
$wb
[
'System'
]
=
'Systeem'
;
$wb
[
'Add user'
]
=
'Toeveogen gebruiker'
;
$wb
[
'Edit user'
]
=
'Wijzigen gebruiker'
;
$wb
[
'CP Users'
]
=
'CP Gebruikers'
;
$wb
[
'Add group'
]
=
'Toevoegen groep'
;
$wb
[
'Edit group'
]
=
'Wijzigen groep'
;
$wb
[
'Groups'
]
=
'Groups'
;
$wb
[
'Edit server'
]
=
'Wijzigen server'
;
$wb
[
'Edit Server IP'
]
=
'Wijzigen Server IP'
;
$wb
[
'Servers'
]
=
'Servers'
;
$wb
[
'Sync. Now'
]
=
'Sync. nu'
;
$wb
[
'DB Sync.'
]
=
'DB Sync.'
;
$wb
[
'Languages'
]
=
'Talen'
;
$wb
[
'New Language'
]
=
'Nieuwe taal'
;
$wb
[
'Export'
]
=
'Export'
;
$wb
[
'Import'
]
=
'Import'
;
$wb
[
'Language Editor'
]
=
'Taal editor'
;
$wb
[
'Software'
]
=
'Software'
;
$wb
[
'Repositories'
]
=
'Repositories'
;
?>
<?php