source: extensions/NBC_UserAdvManager/trunk/language/en_UK/plugin.lang.php @ 3742

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

Working directory - 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.6 KB
RevLine 
[3742]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_Tab1'] = 'UserAdvManager - Global Configuration';
20$lang['Tab_Global_Options'] = 'Global Configuration';
21
22$lang['Title_Tab2'] = 'UserAdvManager - ConfirmMail Configuration';
23$lang['Tab_ConfirmMail_Options'] = 'ConfirmMail Configuration';
24
25$lang['UserAdvManager_Title'] = 'Advanced users settings';
26
27$lang['UserAdvManager_Mail_Info'] = 'Mail information user';
28$lang['UserAdvManager_Mail_Info_true'] = 'Send a information mail to the user when he registering or updating his profile.';
29$lang['UserAdvManager_Mail_Info_false'] = 'Turns off the sending of mail.';
30$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> Use the multi language tags from Extended Description plugin if this plugin is activated !!!)';
31$lang['UserAdvManager_No_Casse'] = 'User insensitive';
32$lang['UserAdvManager_No_Casse_true'] = 'Make the user account insensitive at the registration and the identification step';
33$lang['UserAdvManager_No_Casse_false'] = 'Let the user-sensitive.';
34$lang['UserAdvManager_Username_Char'] = 'Limited charset for unsername';
35$lang['UserAdvManager_Username_Char_true'] = ' The following characters will be forbidden for username choice';
36$lang['UserAdvManager_Username_Char_false'] = ' Use the default username charset control.';
37$lang['UserAdvManager_Confirm_Mail'] = 'Email address confirmation';
38$lang['UserAdvManager_Confirm_Mail_true'] = ' Send an email to user to allow him to validate his email and his registration.';
39$lang['UserAdvManager_Confirm_Mail_false'] = ' Use the default Piwigo registration system (without registration validation).';
40$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> Use the multi language tags from Extended Description plugin if this plugin is activated !!!)';
41$lang['UserAdvManager_No_Confirm_Group'] = 'Group to use for the users who haven\'t validated their email address.';
42$lang['UserAdvManager_Validated_Group'] = 'Group to use for the users who have validated their email address.';
43$lang['UserAdvManager_No_Confirm_Status'] = 'Status to use for the users who haven\'t validated their email address.';
44$lang['UserAdvManager_Validated_Status'] = 'Status to use for the users who have validated their email address. Let ------- for using default Piwigo values';
45$lang['UserAdvManager_No_Comment_Anonymous'] = 'Nickname are mandatory for comments';
46$lang['UserAdvManager_No_Comment_Anonymous_true'] = ' The author field have to be filled to send a comment.';
47$lang['UserAdvManager_No_Comment_Anonymous_false'] = ' Use the default Piwigo settings on comments sending.';
48$lang['UserAdvManager_MailExclusion'] = 'Email provider exclusion';
49$lang['UserAdvManager_MailExclusion_true'] = ' Set the email provider exclusion ON (i.e. : @hotmail.* or @msn.*)';
50$lang['UserAdvManager_MailExclusion_false'] = ' Set the email provider exclusion OFF.';
51$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/>';
52
53$lang['audit'] = 'Audit';
54$lang['submit'] = 'Submit';
55
56$lang['Err_audit_no_casse'] = '<b>These accounts are identical to the case closely :</b> ';
57$lang['Err_audit_username_char'] = '<b>This account uses one or more forbidden characters :</b> ';
58$lang['Err_audit_email_forbidden'] = '<b>This account uses a forbidden email provider :</b> ';
59$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';
60$lang['UserAdvManager_audit_ok'] = 'Audit OK';
61$lang['UserAdvManager_save_config'] ='Configuration registered.';
62
63$lang['UserAdvManager_Empty Author'] = 'The author field have to be filled to send a comment.';
64
65if ( isset($conf_UserAdvManager[1]) and $conf_UserAdvManager[1] == 'true' )
66  $lang['reg_err_login5'] = 'user name is already taken, attention name is insensitive (Shift = Tiny).';
67$lang['reg_err_login6'] = 'Username does not contain the following characters: ';
68$lang['reg_err_login7'] = 'Your email provider is banned for registration. Banned email providers are: ';
69
70$lang['invalid_pwd'] = 'User name or password invalid !';
71
72$lang['UserAdvManager_empty_pwd'] = '[empty password]';
73$lang['UserAdvManager_no_update_pwd'] = '[profile updated without password changed]';
74
75$lang['Err_ConfirmMail_Settings'] = 'This page will be available only if "Email address confirmation" is activated in tab "Global Configuration".';
76?>
Note: See TracBrowser for help on using the repository browser.