source: extensions/Ldap_Login/language/en_UK/plugin.lang.php @ 28534

Last change on this file since 28534 was 28534, checked in by 22decembre, 10 years ago

add function to sync ldap and piwigo groups
ldap groups correspond to webmasters and admin roles

File size: 3.7 KB
Line 
1<?php
2/*
3Plugin Name: Ldap_Login
4Version: 1.0.1
5Description: Permet de se logger via une authentification ldap
6Plugin URI: http://www.22decembre.eu
7Author: 22decembre
8Author URI:http://www.22decembre.eu
9___________________________________
10
11Language Name: English [UK]
12*/
13
14$lang['All LDAP users can use their ldap password everywhere on piwigo if needed.'] = 'All LDAP users can use their LDAP password everywhere in Piwigo if needed.';
15$lang['New users when ldap auth is successfull'] = 'New users when LDAP auth is successful';
16$lang['Ldap_Login Plugin'] = 'Ldap_Login Plugin';
17$lang['Ldap_Login configuration'] = 'Ldap_Login configuration';
18$lang['Warning: LDAP Extension missing.'] = 'Warning: LDAP Extension missing.';
19
20// ldap server connection
21
22$lang['Ldap server host connection'] = 'LDAP server connection';
23$lang['If empty, standard protocol ports will be used by the software.'] = 'If empty, standard protocol ports will be used by the software.';
24$lang['If empty, localhost and standard protocol ports will be used in configuration.'] = 'If empty, localhost and standard protocol ports will be used in configuration.';
25$lang['Ldap server host'] = 'LDAP server host';
26$lang['Secure connexion'] = 'Secure connection (ldaps)';
27$lang['Ldap port'] = 'LDAP port';
28$lang['Base DN'] = 'Base DN of LDAP server (e.g.: dc=example,dc=com):';
29
30// ldap users
31$lang['Ldap users'] = 'LDAP users';
32$lang['Users branch'] = 'Branch where LDAP users should be found (e.g.: ou=users):';
33$lang['Attribute corresponding to the user name'] = 'Attribute corresponding to the user name';
34$lang['Search Ldap users ?'] = 'Search Ldap users ? If you have your users widespreaded in several branchs or OU, you will need this. If you avoid it, you save one ldap request. You may not need it if your ldap tree is simple (e.g.: uid=user,ou=people,dc=example,dc=com).';
35
36// ldap groups
37$lang['Ldap groups'] = 'LDAP groups';
38$lang['Groups branch'] = 'Branch where LDAP groups should be found (e.g.: ou=groups):';
39$lang['Search Ldap groups ?'] = 'Search Ldap users ? If you have your groups widespreaded in several branchs or OU, you will need this. If you avoid it, you save one ldap request. You may not need it if your ldap tree is simple (e.g.: cn=groupname,ou=groups,dc=example,dc=com).';
40
41// ldap connection credentials
42
43$lang['Ldap connection credentials'] = 'LDAP connection credentials';
44$lang['Let the fields blank if the ldap accept anonymous connections.'] = 'Leave the fields empty if LDAP accepts anonymous connections.';
45$lang['Bind DN, field in full ldap style'] = 'Bind DN in LDAP style (e.g.: cn=admin,dc=example,dc=com).';
46$lang['Bind password'] = 'Bind password';
47
48// test and save
49
50$lang['Username'] = 'Your LDAP username';
51$lang['Your password'] = 'Your LDAP password';
52$lang['Ldap_Login Test'] = 'Ldap_Login Test';
53$lang['You must save the settings with the Save button just up there before testing here.'] = 'You need to save settings using the Save button above, before testing them.';
54$lang['Save'] = 'Save';
55$lang['Test Settings'] = 'Test settings';
56
57// new piwigo users
58
59$lang['Do you want admins to be advertised by mail in case of new users creation upon ldap login ?'] = 'Should admins be notified by mail in case of creation of new users upon LDAP login?';
60$lang['Do you want to send mail to the new users, like casual piwigo users receive ?'] = 'Should new users receive mail similar to casual Piwigo users?';
61$lang['Do you allow new piwigo users to be created when users authenticate succesfully on the ldap ?'] = 'Should new Piwigo users be created when users authenticate succesfully via LDAP?';
62$lang['Do you want admins to be advertised by mail in case of new users creation upon ldap login ?'] = 'Do you want admins to be advertised by mail in case of new users creation upon ldap login ?';
63
64?>
Note: See TracBrowser for help on using the repository browser.