source: extensions/NBC_UserAdvManager/tags/2.12.2/language/en_UK/plugin.lang.php @ 4161

Last change on this file since 4161 was 4161, checked in by Eric, 14 years ago

[NBC_UserAdvManager] Buld Tag 2.12.2 from Branch 2.12 :
Bug 1221 fixed - Adding of a new funtion to populate the lastvisit table on Ghost Tracker activation

Bug 1224 fixed - Error in database after plugin activation

Bug 1225 fixed - "Reminder" status don't change from "false" to "true" after the sent of a reminder email

Some code beautify (SQL requests and HTML 4 strict for tpl)

  • Property svn:eol-style set to LF
File size: 19.0 KB
Line 
1<?php
2
3global $lang,$conf;
4
5$conf_UserAdvManager = isset($conf['UserAdvManager']) ? explode(";" , $conf['UserAdvManager']) : array();
6
7
8/* Global Configuration Tab */
9$lang['Title_Tab1'] = 'UserAdvManager - General Setup';
10$lang['Tab_Global'] = 'General Setup';
11$lang['UserAdvManager_Mail_Info'] = ' Mail information user:';
12$lang['UserAdvManager_Mail_Info_true'] = ' Send an information mail to the user when he registes or updates his profile.';
13$lang['UserAdvManager_Mail_Info_false'] = ' Turns off the sending of mail. (default)';
14$lang['UserAdvManager_MailInfo_Text'] = ' Text used to introduce the email sent to user to allow him to validate his email address<br><b style="color: red;">(!!! </b><b style="text-decoration: underline; color: red;">WARNING !</b> <b style="color: red;">Text modification is available ONLY if Mail information user is enabled. Use the multi language tags from Extended Description plugin if this plugin is activated !!!)</b>';
15$lang['UserAdvManager_No_Casse'] = ' User insensitive';
16$lang['UserAdvManager_No_Casse_true'] = ' Make the user account insensitive at the registration and the identification step';
17$lang['UserAdvManager_No_Casse_false'] = ' Let the user-sensitive. (default)';
18$lang['UserAdvManager_Username_Char'] = ' Limited charset for unsername';
19$lang['UserAdvManager_Username_Char_true'] = ' The following characters will be forbidden for username choice';
20$lang['UserAdvManager_Username_Char_false'] = ' Use the default username charset control. (default)';
21$lang['UserAdvManager_Confirm_Mail'] = 'Email address confirmation:';
22$lang['UserAdvManager_Confirm_Mail_true'] = ' Send an email to user to allow him to validate his email and his registration.';
23$lang['UserAdvManager_Confirm_Mail_false'] = ' Use the default Piwigo registration system (without registration validation). (default)';
24$lang['UserAdvManager_ConfirmMail_Text'] = ' Text used to introduce the email sent to user to allow him to validate his email address<br><b style="color: red;">(!!! </b><b style="text-decoration: underline; color: red;">WARNING !</b> <b style="color: red;">Text modification is available ONLY if Email address confirmation is enabled. Use the multi language tags from Extended Description plugin if this plugin is activated !!!)</b>';
25$lang['UserAdvManager_Confirm_Group_Notice'] = 'WARNING : Using validation groups requires that you have created at least one user group and is defined "by default" in Piwigo\'s user groups management.';
26$lang['UserAdvManager_No_Confirm_Group'] = 'Group to use for the users who haven\'t validated their email address.';
27$lang['UserAdvManager_Validated_Group'] = 'Group to use for the users who have validated their email address.';
28$lang['UserAdvManager_Confirm_Status_Notice'] = 'WARNING : The use of status validation requires that you have kept the "Guest" user with default setting (as user template) for new registered. Note you can set any other user as a template for new registered. Please refer to the Piwigo\'s documentation for more details.';
29$lang['UserAdvManager_No_Confirm_Status'] = 'Status to use for the users who haven\'t validated their email address.';
30$lang['UserAdvManager_Validated_Status'] = 'Status to use for the users who have validated their email address. Let ------- for using default Piwigo values';
31$lang['UserAdvManager_No_Comment_Anonymous'] = 'Nickname are mandatory for comments';
32$lang['UserAdvManager_No_Comment_Anonymous_true'] = ' The author field have to be filled to send a comment.';
33$lang['UserAdvManager_No_Comment_Anonymous_false'] = ' Use the default Piwigo settings on comments sending. (default)';
34$lang['UserAdvManager_MailExclusion'] = 'Email provider exclusion:';
35$lang['UserAdvManager_MailExclusion_true'] = ' Set the email provider exclusion ON (i.e. : @hotmail.* or @msn.*)';
36$lang['UserAdvManager_MailExclusion_false'] = ' Set the email provider exclusion OFF. (default)';
37$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>';
38// --------- Starting below: New or revised $lang ---- from version 2.12.0 and 2.12.1
39$lang['UserAdvManager_Title1'] = 'Users registration management';
40$lang['UserAdvManager_Title2'] = 'Registration validation and groups / status management';
41$lang['UserAdvManager_Password_Enforced'] = 'Strengthening passwords - Enabling this option makes the seizure of the password required for visitors registration. Also, the password entered by the visitor will meet with a score of complexity (<b style="color: green;">activate and save settings to display more informations</b>).';
42$lang['UserAdvManager_Password_Enforced_Info'] = '<b style="text-decoration: underline; color: green;">Explanations:</b> <b style="color: green;">A password score is calculated on the basic parameters: length, type of characters used (letters, digits, uppercase, lowercase, special characters). If the password of the user does not score, the score reached is displayed with the minimal score to reach and an indication to increase the value of this score. To give you an idea, a score below 100 is considered "low complexity". Between 100 and 500, the complexity is increased and average. Beyond 500, that\'s Fort Knox! ;-)<br>You can do your passwords complexity tests by using the field below. This will allow you to get an idea of the score to define a custom complexity.</b>';
43$lang['UserAdvManager_PasswordTest'] = 'Passowrd to test : ';
44$lang['UserAdvManager_ScoreTest'] = 'Score : ';
45$lang['PasswordTest'] = 'Score calculation';
46$lang['UserAdvManager_Password_Enforced_true'] = ' Strong password required - Enter the minimum score (floor value) of passwords complexity == ';
47$lang['UserAdvManager_Password_Enforced_false'] = ' Do not strengthen passwords. (default)';
48$lang['UserAdvManager_AdminPassword_Enforced'] = 'Apply also the passwords complexity control when an administrator create a user? Note: If the created user wishes to change his password and strengthening passwords for users is active, he will be subject to the rules set.';
49$lang['UserAdvManager_AdminPassword_Enforced_true'] = 'Enable strengthening passwords for admins.';
50$lang['UserAdvManager_AdminPassword_Enforced_false'] = 'Disable strengthening passwords for admins. (default)';
51$lang['UserAdvManager_GhostTracker'] = 'Ghost Tracker - Allows to manage registered users according their last visit date :';
52$lang['UserAdvManager_GhostTracker_true'] = ' Enable Ghost Tracker.';
53$lang['UserAdvManager_GhostTracker_false'] = ' Disable Ghost Tracker. (Default)';
54$lang['UserAdvManager_GhostTracker_DayLimit'] = ' Type in here the maximum limit, in days, between two visits of a visitor. When this limit is reached, this visitor will appear in the table on "Ghost Tracker" tab.';
55$lang['UserAdvManager_GhostTracker_ReminderText'] = ' Text used in the email reminder sent to encourage visitors to come back to the gallery (NB: The text pre-filled at the plugin installation is given as an example).<br><b style="color: red;">(!!! </b><b style="text-decoration: underline; color: red;">WARNING !</b> <b style="color: red;">Text modification is available ONLY if Ghost Tracker is enabled. Use the multi language tags from Extended Description plugin if this plugin is activated !!!)</b>';
56// --------- End: New or revised $lang ---- from version 2.12.0 and 2.12.1
57// --------- Starting below: New or revised $lang ---- from version 2.12.2
58$lang['UserAdvManager_GhostTracker_Notice'] = 'When the Ghost Tracker feature is enabled, you can manage your visitors depending on the frequency of their visits. <b style="color: red;">IMPORTANT : If you enable this feature for the first time or you have reactivated after a long period off during which new visitors are registered, visit the Ghost Tracker tab and follow the instructions for Ghost Tracker initialization.</b>';
59// --------- End: New or revised $lang ---- from version 2.12.0 and 2.12.1
60
61
62/* ConfirmMail Configuration Tab */
63$lang['ConfirmMail_Title'] = 'Advanced management and settings of register confirmation by mail';
64$lang['Title_Tab2'] = 'UserAdvManager - ConfirmMail Settings';
65$lang['Tab_ConfirmMail'] = 'ConfirmMail Settings';
66$lang['UserAdvManager_ConfirmMail_Info'] = 'Time limitation for validation of registration :<br>If you enable this option, select the desired time (x) )in the field below. Visitors who register will then have x days to validate their registration. After this period the validation link they have received by mail will be expired.<br>';
67$lang['UserAdvManager_ConfirmMail_TimeOut_true'] = 'Enable limiting the registration deadline.';
68$lang['UserAdvManager_ConfirmMail_TimeOut_false'] = 'Disable limiting the registration deadline. (Default)';
69$lang['UserAdvManager_ConfirmMail_TimeOut'] = 'Validation delay :';
70$lang['UserAdvManager_ConfirmMail_Delay_Info'] = 'Enter the number of days before expiry of the registration validation : ';
71$lang['UserAdvManager_ConfirmMail_Remail'] = 'Enable or disable email reminder of unvalidated registers :';
72$lang['UserAdvManager_ConfirmMail_Remail_true'] = 'Enable email reminder';
73$lang['UserAdvManager_ConfirmMail_Remail_false'] = 'Disable email reminder. (Default)';
74$lang['UserAdvManager_ConfirmMail_ReMail_Txt1'] = 'Custom content of the reminder message with regeneration of validation key.<br>If left blank, the reminder email will include only the validation link. It is therefore strongly advised to take a little explanatory text. (NB: The text pre-filled at the plugin installation is given as an example)<br><br><b style="color: red;">(!!! </b><b style="text-decoration: underline; color: red;">WARNING !</b> <b style="color: red;">Text modification is available ONLY if email reminder is enabled. Use the multi language tags from Extended Description plugin if this plugin is activated !!!)</b>';
75$lang['UserAdvManager_ConfirmMail_ReMail_Txt2'] = 'Custom content of the reminder message without regeneration of validation key.<br>If left blank, the reminder email will include only the validation link. It is therefore strongly advised to take a little explanatory text. (NB: The text pre-filled at the plugin installation is given as an example)<br><br><b style="color: red;">(!!! </b><b style="text-decoration: underline; color: red;">WARNING !</b> <b style="color: red;">Text modification is available ONLY if email reminder is enabled. Use the multi language tags from Extended Description plugin if this plugin is activated !!!)</b>';
76
77
78/* UserManager Tab */
79$lang['UserManager_Title'] = 'Advanced settings of unvalidated registered users';
80$lang['Title_Tab3'] = 'UserAdvManager - Visitors management';
81$lang['Tab_UserManager'] = 'Visitors management';
82$lang['UserAdvManager_ConfirmMail_User_List'] = 'When limiting the deadline for registration is enabled, you will find below the list of users awaiting validation, <b style="text-decoration: underline;">whether or not</b> they are in time to validate.<br><br>In this view, you can:
83<br><br>
84- Manually delete accounts <b>(manual drain)</b>
85<br>
86- Generate email reminder <b>without</b> generating a new key. Warning: Send an email reminder to targeted visitors. This function does not reset the date of registration of targeted visitors and the timeout is still valid.
87<br>
88- Generate email reminder <b>with</b> generating a new key. Warning : Send an email reminder to targeted visitors. This function also resets the date of registration of targeted visitors which equates to extend the deadline for validation.<br>
89- Submit a registration awaiting validation manually even if the expiry date has passed <b>(forcing validation)</b>.
90<br>';
91$lang['Registration_Date'] = 'Registration date';
92
93
94// --------- Starting below: New or revised $lang ---- from version 2.12.0 and 2.12.1
95/* Ghost Tracker Tab */
96$lang['GhostTracker_Title'] = 'Advanced ghost visitors management';
97$lang['Title_Tab4'] = 'UserAdvManager - Ghost Tracker';
98$lang['Tab_GhostTracker'] = 'Ghost Tracker';
99$lang['LastVisit_Date'] = 'Last visit';
100$lang['Ghost_Reminder'] = 'Email reminder';
101$lang['Reminder_Sent_OK'] = 'YES';
102$lang['Reminder_Sent_NOK'] = 'NO';
103// --------- End: New or revised $lang ---- from version 2.12.0 and 2.12.1
104// --------- Starting below: New or revised $lang ---- from version 2.12.2
105$lang['UserAdvManager_GhostTracker_Init'] = 'If you enable this feature for the first time or you have reactivated after a long period off during which new visitors are registered, you must initialize or reset the Ghost Tracker. This action is done only after activation or reactivation of the option. Please click <u>once</u> the reset button below.';
106$lang['UserAdvManager_GhostTracker_User_List'] = 'When Ghost Tracker is enabled and initialized, you will find below the list of registered visitors who have not returned since x days. "x" is the number of days configured in the General Setup tab. In addition, you will find a column indicating whether an email reminder has been sent to targeted visitors. So, you can see at a glance and treat visitors who have not taken account of the reminder.<br><br>In this view, you can:
107<br><br>
108- Manually delete accounts <b>(manual drain)</b>
109<br>
110- Generate email reminder <b>with resetting the last visit date</b>. This allows to give a wildcard to targeted visitors. If the visitor has already received a reminder, nothing prevents to resent a new mail which will reset again, in fact, the last visit date.
111<br>';
112// --------- End: New or revised $lang ---- from version 2.12.2
113
114
115/* Mailing */
116$lang['infos_mail %s'] = '%s, please find here your information to login the gallery :';
117$lang['User: %s'] = 'User : %s';
118$lang['Password: %s'] = 'Password: %s';
119$lang['Add of %s'] = 'Add of %s';
120$lang['Update of %s'] = 'Update of %s';
121$lang['Link: %s'] = 'Please, click on this link to confirm your regsitration : %s';
122$lang['Reminder_with_key_of_%s'] = '%s, your validation key has been renewed';
123$lang['Reminder_without_key_of_%s'] = '%s, your validation key will expire';
124$lang['Ghost_remainder_of_%s'] = '%s, this is a reminder email';
125
126
127/* Email confirmation page */
128$lang['title_confirm_mail'] = 'Validate your registration';
129$lang['confirm_mail_page_title'] = 'Validate your registration';
130$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>';
131$lang['confirm_mail_bad'] = '<br><br><br>Your activation key is incorrect or expired or you have already validated your account, please contact the webmaster to fix this problem.<br><br><br><br>';
132
133
134/* Errors and Warnings */
135$lang['UserAdvManager_audit_ok'] = 'Audit OK';
136$lang['Err_audit_no_casse'] = '<b>These accounts are identical to the case closely :</b> ';
137$lang['Err_audit_username_char'] = '<b>This account uses one or more forbidden characters :</b> ';
138$lang['Err_audit_email_forbidden'] = '<b>This account uses a forbidden email provider :</b> ';
139$lang['Err_audit_advise'] = '<b>you have to perform corrections to comply with new rules that you have activated.<br>Use a database management utility to correct user accounts directly in the table ### _USERS';
140$lang['UserAdvManager_Empty Author'] = 'The author field have to be filled to send a comment.';
141if ( isset($conf_UserAdvManager[1]) and $conf_UserAdvManager[1] == 'true' )
142        $lang['reg_err_login5'] = 'Username already exist, WARNING name is case insensitive (Shift = Tiny).';
143$lang['reg_err_login6'] = 'Username does not match the following characters: ';
144$lang['reg_err_login7'] = 'Your email provider is banned for registration. Banned email providers are: ';
145$lang['UserAdvManager_empty_pwd'] = '[empty password]';
146$lang['UserAdvManager_no_update_pwd'] = '[profile updated without password changed]';
147$lang['invalid_pwd'] = 'Invalid username or password !';
148$lang['Err_ConfirmMail_Settings'] = 'This page will be available only if "Email address confirmation" is activated in "General Setup" tab.';
149$lang['Err_UserManager_Settings'] = 'This page is available only if "Enable limiting the registration deadline" is active in the "ConfirmMail Settings" tab and an unvalidated users group is set in "General Setup" tab.';
150$lang['No_validation_for_Guest'] = 'The "Guest" account is not subject to validation';
151$lang['No_validation_for_default_user'] = 'The default account is not subject to validation';
152$lang['No_validation_for_Webmaster'] = 'The "Webmaster" account is not subject to validation';
153$lang['No_validation_for_your_account'] = 'You personnal admin account is not subject to validation';
154$lang['Database_Error'] = '<b><u>Warning! Critical integrity error in your database.</u></b><br><br>Please check the integrity of the #_user_confirm_mail table.';
155// --------- Starting below: New or revised $lang ---- from version 2.12.0 and 2.12.1
156$lang['UserAdvManager_save_config'] ='Configuration saved.';
157$lang['reg_err_login3'] = 'Security : Password is mandatory !';
158$lang['reg_err_login4_%s'] = 'Security : A control system calculates a score on the chosen passwords complexity. The complexity of your password is too low (score = %s). Please, choose a new password more secure by following these rules:<br>
159- Use letters and numbers<br>
160- Use lowercase and uppercase<br>
161- Increase its length (number of characters)<br>
162The minimum passwords score required by the administrator is: ';
163$lang['No_reminder_for_Guest'] = 'The "Guest" account is not subject to receive reminders from GhostTracker';
164$lang['No_reminder_for_default_user'] = 'The default account is not subject to receive reminders from GhostTracker';
165$lang['No_reminder_for_Webmaster'] = 'The "Webmaster" account is not subject to receive reminders from GhostTracker';
166$lang['No_reminder_for_your_account'] = 'You personnal admin account is not subject to receive reminders from GhostTracker';
167$lang['Err_GhostTracker_Settings'] = 'This page is available only if "Ghost Tracker" is active in the "General Setup" tab.';
168// --------- End: New or revised $lang ---- from version 2.12.0 and 2.12.1
169// --------- Starting below: New or revised $lang ---- from version 2.12.2
170$lang['GhostTracker_Init_OK'] = 'Ghost Tracker reset done !';
171// --------- End: New or revised $lang ---- from version 2.12.2
172
173
174/* Processing messages */
175$lang['%d_Mail_With_Key'] = '%d message with key renewal was sent';
176$lang['%d_Mails_With_Key'] = '%d messages with key renewal were sent';
177$lang['%d_Reminder_Sent'] = '%d reminder message was sent';
178$lang['%d_Reminders_Sent'] = '%d reminder messages were sent';
179$lang['%d_Validated_User'] = '%d User validated manually';
180$lang['%d_Validated_Users'] = '%d Users validated manually';
181
182
183/* Action button names */
184$lang['Delete_selected'] = 'Delete';
185$lang['Mail_without_key'] = 'Reminder without key';
186$lang['Mail_with_key'] = 'Reminder with key';
187$lang['Force_Validation'] = 'Forced validation';
188$lang['Reminder_Email'] = 'Email reminder';
189// --------- Starting below: New or revised $lang ---- from version 2.12.0 and 2.12.1
190$lang['audit'] = 'Audit settings';
191$lang['submit'] = 'Save settings';
192// --------- End: New or revised $lang ---- from version 2.12.0 and 2.12.1
193// --------- Starting below: New or revised $lang ---- from version 2.12.2
194$lang['GT_Reset'] = 'Reset Ghost Tracker.';
195// --------- End: New or revised $lang ---- from version 2.12.2
196?>
Note: See TracBrowser for help on using the repository browser.