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

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

updated french and english languages according to the last commit with group functions.

File size: 5.2 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$lang['If you create a <a href="admin.php?page=group_list">piwigo group</a> with the same name as an ldap one, all members of the ldap group will automatically join the piwigo group at their next authentication. This allows you to create <a href="admin.php?page=help&section=groups">specific right access management</a> (restrict access to a particaular album...).']
42        = 'If you create a <a href="admin.php?page=group_list">piwigo group</a> with the same name as an ldap one, all members of the ldap group will automatically join the piwigo group at their next authentication. This allows you to create <a href="admin.php?page=help&section=groups">specific right access management</a> (restrict access to a particaular album...). Yet, in order to out this users, you must first get them out of the ldap groups, then the piwigo groups can be updated.';
43$lang['To get them out of these roles, they must be sorted of the ldap group and then role updated in the <a href="admin.php?page=user_list">piwigo admin</a>. If a group is mandatory as described in the <a href="admin.php?page=plugin-Ldap_Login-newusers">new piwigo users tab</a>, then they must also belong to the users group.']
44        = 'To get them out of these roles, they must be sorted of the ldap group and then role updated in the <a href="admin.php?page=user_list">piwigo admin</a>. If a group is mandatory as described in the <a href="admin.php?page=plugin-Ldap_Login-newusers">new piwigo users tab</a>, then they must also belong to the users group.';
45
46
47// ldap connection credentials
48
49$lang['Ldap connection credentials'] = 'LDAP connection credentials';
50$lang['Let the fields blank if the ldap accept anonymous connections.'] = 'Leave the fields empty if LDAP accepts anonymous connections.';
51$lang['Bind DN, field in full ldap style'] = 'Bind DN in LDAP style (e.g.: cn=admin,dc=example,dc=com).';
52$lang['Bind password'] = 'Bind password';
53
54// test and save
55
56$lang['Username'] = 'Your LDAP username';
57$lang['Your password'] = 'Your LDAP password';
58$lang['Ldap_Login Test'] = 'Ldap_Login Test';
59$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.';
60$lang['Save'] = 'Save';
61$lang['Test Settings'] = 'Test settings';
62
63// new piwigo users
64
65$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?';
66$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?';
67$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?';
68$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 ?';
69
70?>
Note: See TracBrowser for help on using the repository browser.