about summary refs log tree commit diff stats
path: root/wiki/lib/plugins/authldap/lang/en
diff options
context:
space:
mode:
Diffstat (limited to 'wiki/lib/plugins/authldap/lang/en')
-rw-r--r--wiki/lib/plugins/authldap/lang/en/lang.php11
-rw-r--r--wiki/lib/plugins/authldap/lang/en/settings.php29
2 files changed, 40 insertions, 0 deletions
diff --git a/wiki/lib/plugins/authldap/lang/en/lang.php b/wiki/lib/plugins/authldap/lang/en/lang.php
new file mode 100644
index 0000000..8185a84
--- /dev/null
+++ b/wiki/lib/plugins/authldap/lang/en/lang.php
@@ -0,0 +1,11 @@
+<?php
+/**
+ * English language file for authldap plugin
+ * @license    GPL 2 (http://www.gnu.org/licenses/gpl.html)
+ *
+ */
+
+$lang['connectfail']     = 'LDAP cannot connect: %s';
+$lang['domainfail']       = 'LDAP cannot find your user dn';
+
+//Setup VIM: ex: et ts=4 :
diff --git a/wiki/lib/plugins/authldap/lang/en/settings.php b/wiki/lib/plugins/authldap/lang/en/settings.php
new file mode 100644
index 0000000..a4194b0
--- /dev/null
+++ b/wiki/lib/plugins/authldap/lang/en/settings.php
@@ -0,0 +1,29 @@
+<?php
+$lang['server']      = 'Your LDAP server. Either hostname (<code>localhost</code>) or full qualified URL (<code>ldap://server.tld:389</code>)';
+$lang['port']        = 'LDAP server port if no full URL was given above';
+$lang['usertree']    = 'Where to find the user accounts. Eg. <code>ou=People, dc=server, dc=tld</code>';
+$lang['grouptree']   = 'Where to find the user groups. Eg. <code>ou=Group, dc=server, dc=tld</code>';
+$lang['userfilter']  = 'LDAP filter to search for user accounts. Eg. <code>(&amp;(uid=%{user})(objectClass=posixAccount))</code>';
+$lang['groupfilter'] = 'LDAP filter to search for groups. Eg. <code>(&amp;(objectClass=posixGroup)(|(gidNumber=%{gid})(memberUID=%{user})))</code>';
+$lang['version']     = 'The protocol version to use. You may need to set this to <code>3</code>';
+$lang['starttls']    = 'Use TLS connections?';
+$lang['referrals']   = 'Shall referrals be followed?';
+$lang['deref']       = 'How to dereference aliases?';
+$lang['binddn']      = 'DN of an optional bind user if anonymous bind is not sufficient. Eg. <code>cn=admin, dc=my, dc=home</code>';
+$lang['bindpw']      = 'Password of above user';
+$lang['userscope']   = 'Limit search scope for user search';
+$lang['groupscope']  = 'Limit search scope for group search';
+$lang['userkey']     = 'Attribute denoting the username; must be consistent to userfilter.';
+$lang['groupkey']    = 'Group membership from any user attribute (instead of standard AD groups) e.g. group from department or telephone number';
+$lang['modPass']     = 'Can the LDAP password be changed via dokuwiki?';
+$lang['debug']       = 'Display additional debug information on errors';
+
+
+$lang['deref_o_0']   = 'LDAP_DEREF_NEVER';
+$lang['deref_o_1']   = 'LDAP_DEREF_SEARCHING';
+$lang['deref_o_2']   = 'LDAP_DEREF_FINDING';
+$lang['deref_o_3']   = 'LDAP_DEREF_ALWAYS';
+
+$lang['referrals_o_-1'] = 'use default';
+$lang['referrals_o_0']  = 'don\'t follow referrals';
+$lang['referrals_o_1']  = 'follow referrals';
\ No newline at end of file
k Agaram <vc@akkartik.com> 2021-03-23 22:27:46 -0700 committer Kartik Agaram <vc@akkartik.com> 2021-03-23 22:27:59 -0700 .' href='/akkartik/mu/commit/html/ex9.mu.html?h=main&id=3120f938c660ab5fcecb579122440d487ccd798e'>3120f938 ^
dd60caa3 ^
3120f938 ^

dd60caa3 ^
3120f938 ^
dd60caa3 ^
3120f938 ^

dd60caa3 ^

3120f938 ^
dd60caa3 ^
3120f938 ^

dd60caa3 ^
3120f938 ^

















1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116