aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/language
diff options
context:
space:
mode:
authorNils Adermann <naderman@naderman.de>2006-03-18 16:19:18 +0000
committerNils Adermann <naderman@naderman.de>2006-03-18 16:19:18 +0000
commit957502a28b1d2afec74cad30731dc2ee101cafe3 (patch)
tree7707c27358fd83138566fca91fe8577bbffdd06f /phpBB/language
parent9f7bc931259522fe7ae1ea9d6b5f4b17b60c97ad (diff)
downloadforums-957502a28b1d2afec74cad30731dc2ee101cafe3.tar
forums-957502a28b1d2afec74cad30731dc2ee101cafe3.tar.gz
forums-957502a28b1d2afec74cad30731dc2ee101cafe3.tar.bz2
forums-957502a28b1d2afec74cad30731dc2ee101cafe3.tar.xz
forums-957502a28b1d2afec74cad30731dc2ee101cafe3.zip
- Added init_{$auth_plugin} function which can be used to test a connection to the authentication system before actually saving the new configuration. This will hopefully stop people from locking themselves out by using an authentication system that they cannot connect to.
git-svn-id: file:///svn/phpbb/trunk@5653 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/language')
-rw-r--r--phpBB/language/en/acp/board.php17
1 files changed, 10 insertions, 7 deletions
diff --git a/phpBB/language/en/acp/board.php b/phpBB/language/en/acp/board.php
index fb7795a900..fa9736cae5 100644
--- a/phpBB/language/en/acp/board.php
+++ b/phpBB/language/en/acp/board.php
@@ -308,13 +308,16 @@ $lang = array_merge($lang, array(
// Auth settings
$lang = array_merge($lang, array(
'ACP_AUTH_SETTINGS_EXPLAIN' => 'phpBB2 supports authentication plug-ins, or modules. These allow you determine how users are authenticated when they log into the board. By default three plug-ins are provided; DB, LDAP and Apache. Not all methods require additional information so only fill out fields if they are relevant to the selected method.',
- 'AUTH_METHOD' => 'Select an authentication method',
- 'LDAP_SERVER' => 'LDAP server name',
- 'LDAP_SERVER_EXPLAIN' => 'If using LDAP this is the name or IP address of the server.',
- 'LDAP_DN' => 'LDAP base dn',
- 'LDAP_DN_EXPLAIN' => 'This is the Distinguished Name, locating the user information, e.g. o=My Company,c=US',
- 'LDAP_UID' => 'LDAP uid',
- 'LDAP_UID_EXPLAIN' => 'This is the key under which to search for a given login identity, e.g. uid, sn, etc.',
+ 'AUTH_METHOD' => 'Select an authentication method',
+ 'LDAP_NO_IDENTITY' => 'Could not find a login identity for %s',
+ 'LDAP_NO_LDAP_EXTENSION' => 'LDAP extension not availible',
+ 'LDAP_NO_SERVER_CONNECTION' => 'Could not connect to LDAP server',
+ 'LDAP_DN' => 'LDAP base dn',
+ 'LDAP_DN_EXPLAIN' => 'This is the Distinguished Name, locating the user information, e.g. o=My Company,c=US',
+ 'LDAP_SERVER' => 'LDAP server name',
+ 'LDAP_SERVER_EXPLAIN' => 'If using LDAP this is the name or IP address of the server.',
+ 'LDAP_UID' => 'LDAP uid',
+ 'LDAP_UID_EXPLAIN' => 'This is the key under which to search for a given login identity, e.g. uid, sn, etc.',
));
// Board defaults