source: extensions/NBC_UserAdvManager/tags/2.10.9/language/en_UK/plugin.lang.php @ 3741

Last change on this file since 3741 was 3741, checked in by Eric, 15 years ago

2.10.9e : Compatibility improvement with PHP 5.3 - Some old functions will be deprecated.
ereg() was replaced by preg_match()
eregi() was replace by preg_match() with "i" moderator
split() was replace by preg_split()

  • Property svn:eol-style set to LF
File size: 5.3 KB
Line 
1<?php
2
3global $lang,$conf;
4
5$conf_UserAdvManager = isset($conf['UserAdvManager']) ? explode(";" , $conf['UserAdvManager']) : array();
6
7$lang['infos_mail %s'] = '%s, please find here your information to login the gallery :';
8$lang['Password: %s'] = 'Password: %s';
9$lang['Add of %s'] = 'Add of %s';
10$lang['Update of %s'] = 'Update of %s';
11
12$lang['Link: %s'] = 'Please, click on this link to confirm your regsitration : %s';
13
14$lang['title_confirm_mail'] = 'Validate your registration';
15$lang['confirm_mail_page_title'] = 'Validate your registration';
16$lang['confirm_mail_ok'] = '<br/><br/><br/>Thank you to have confirmed your email address and your registration on the gallery. Have fun !<br/><br/><br/><br/>';
17$lang['confirm_mail_bad'] = '<br/><br/><br/>Your validation key is broken or you haven\'t validated your registration. Please contact the gallery\'s webmaster to check this issue.<br/><br/><br/><br/>';
18
19$lang['Title'] = 'UserAdvManager';
20$lang['UserAdvManager_Title'] = 'Advanced users settings';
21
22$lang['UserAdvManager_Mail_Info'] = 'Mail information user';
23$lang['UserAdvManager_Mail_Info_true'] = 'Send a information mail to the user when he registering or updating his profile.';
24$lang['UserAdvManager_Mail_Info_false'] = 'Turns off the sending of mail.';
25$lang['UserAdvManager_MailInfo_Text'] = 'Text used to introduce the email sent to user on his registration or at his profile update.<br>(!!! <blink>WARNING</blink> You can use the multi language tags from Extended Description plugin. This will work only if this plugin is activated !!!)';
26$lang['UserAdvManager_No_Casse'] = 'User insensitive';
27$lang['UserAdvManager_No_Casse_true'] = 'Make the user account insensitive at the registration and the identification step';
28$lang['UserAdvManager_No_Casse_false'] = 'Let the user-sensitive.';
29$lang['UserAdvManager_Username_Char'] = 'Limited charset for unsername';
30$lang['UserAdvManager_Username_Char_true'] = ' The following characters will be forbidden for username choice à regsitration == ';
31$lang['UserAdvManager_Username_Char_false'] = ' Use the default username charset control.';
32$lang['UserAdvManager_Confirm_Mail'] = 'Email address confirmation';
33$lang['UserAdvManager_Confirm_Mail_true'] = ' Send an email to user to allow him to validate his email and his registration.';
34$lang['UserAdvManager_Confirm_Mail_false'] = ' Use the default Piwigo registration system (without registration validation).';
35$lang['UserAdvManager_ConfirmMail_Text'] = 'Text used to introduce the email sent to user to allow him to validate his email address<br>(!!! <blink>WARNING</blink> You can use the multi language tags from Extended Description plugin. This will work only if this plugin is activated !!!)';
36$lang['UserAdvManager_No_Confirm_Group'] = 'Group to use for the users who haven\'t validated their email address.';
37$lang['UserAdvManager_Validated_Group'] = 'Group to use for the users who have validated their email address.';
38$lang['UserAdvManager_No_Confirm_Status'] = 'Status to use for the users who haven\'t validated their email address.';
39$lang['UserAdvManager_Validated_Status'] = 'Status to use for the users who have validated their email address. Let ------- for using default Piwigo values';
40$lang['UserAdvManager_No_Comment_Anonymous'] = 'Nickname are mandatory for comments';
41$lang['UserAdvManager_No_Comment_Anonymous_true'] = ' The author field have to be filled to send a comment.';
42$lang['UserAdvManager_No_Comment_Anonymous_false'] = ' Use the default Piwigo settings on comments sending.';
43$lang['UserAdvManager_MailExclusion'] = 'Email provider exclusion';
44$lang['UserAdvManager_MailExclusion_true'] = ' Set the email provider exclusion ON (i.e. : @hotmail.* or @msn.*)';
45$lang['UserAdvManager_MailExclusion_false'] = ' Set the email provider exclusion OFF.';
46$lang['UserAdvManager_MailExclusion_List'] = ' If email provider exclusion is set to ON, fill the email domains to exclude below. You have to use the following format :<br/>@[domaine_name].[domaine_extension] - Example : @hotmail.com<br/>Seperate the different domains with a comma (,)<br/>';
47
48$lang['audit'] = 'Audit';
49$lang['submit'] = 'Submit';
50
51$lang['Err_audit_no_casse'] = '<b>These accounts are identical to the case closely :</b> ';
52$lang['Err_audit_username_char'] = '<b>This account uses one or more forbidden characters :</b> ';
53$lang['Err_audit_email_forbidden'] = '<b>This account uses a forbidden email provider :</b> ';
54$lang['Err_audit_advise'] = '<b>you make a correction to comply with new rules that you have activated.<br>use a utility géstion database to correct user accounts directly in the table ### _USERS';
55$lang['UserAdvManager_audit_ok'] = 'Audit OK';
56$lang['UserAdvManager_save_config'] ='Configuration registered.';
57
58$lang['UserAdvManager_Empty Author'] = 'The author field have to be filled to send a comment.';
59
60if ( isset($conf_UserAdvManager[1]) and $conf_UserAdvManager[1] == 'true' )
61  $lang['reg_err_login5'] = 'user name is already taken, attention name is insensitive (Shift = Tiny).';
62$lang['reg_err_login6'] = 'Username does not contain the following characters: ';
63$lang['reg_err_login7'] = 'Your email provider is banned for registration. Banned email providers are: ';
64
65$lang['invalid_pwd'] = 'User name or password invalid !';
66
67$lang['UserAdvManager_empty_pwd'] = '[empty password]';
68$lang['UserAdvManager_no_update_pwd'] = '[profile updated without password changed]';
69?>
Note: See TracBrowser for help on using the repository browser.