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

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

version 1.0.1

add main function : ability to add new piwigo users when ldap is successful.
add danish language, must be reviewed

this version is not yet considered stable, as needed to be reviewed and commented by beta-testers

File size: 3.1 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 on piwigo if needed.';
15$lang['New users when ldap auth is successfull'] = 'New users when ldap auth is successfull';
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 connexion (ldaps)';
27$lang['Ldap port'] = 'Ldap port';
28
29// ldap attributes
30
31$lang['Ldap attributes'] = 'Ldap attributes';
32$lang['Base DN'] = 'Base DN where ldap users should be found (ex : ou=users,dc=example,dc=com) :';
33$lang['Ldap filter :'] = 'Ldap filter :';
34$lang['Attribute corresponding to the user name'] = 'Attribute corresponding to the user name';
35
36// ldap connection credentials
37
38$lang['Ldap connection credentials'] = 'Ldap connection credentials';
39$lang['Let the fields blank if the ldap accept anonymous connections.'] = 'Let the fields blank if the ldap accept anonymous connections.';
40$lang['Bind DN, field in full ldap style'] = 'Bind DN in ldap style (for ex : cn=admin,dc=example,dc=com).';
41$lang['Bind password'] = 'Bind password';
42
43// test and save
44
45$lang['Username'] = 'Votre ldap username';
46$lang['Your password'] = 'Your LDAP password.';
47$lang['Ldap_Login Test'] = 'Ldap_Login Test';
48$lang['You must save the settings with the Save button just up there before testing here.'] = 'You need to save settings with the Save button just up there before testing them.';
49$lang['Save'] = 'Save';
50$lang['Test Settings'] = 'Test settings';
51
52// new piwigo users
53
54$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 ?';
55$lang['Do you want to send mail to the new users, like casual piwigo users receive ?'] = 'Do you want to send mail to the new users, like casual piwigo users receive ?';
56$lang['Do you allow new piwigo users to be created when users authenticate succesfully on the ldap ?'] = 'Do you allow new piwigo users to be created when users authenticate succesfully on the ldap ?';
57$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 ?';
58
59?>
Note: See TracBrowser for help on using the repository browser.