Changeset 5087 for extensions/NBC_UserAdvManager
- Timestamp:
- Mar 8, 2010, 11:11:51 PM (15 years ago)
- Location:
- extensions/NBC_UserAdvManager/branches/2.14
- Files:
-
- 2 deleted
- 10 edited
Legend:
- Unmodified
- Added
- Removed
-
extensions/NBC_UserAdvManager/branches/2.14/admin/UAM_admin.php
r5065 r5087 27 27 28 28 $UAM_Password_Test_Score = 0; 29 $UAM_MailInfo_Error_Txt = false;30 $UAM_ConfirmMail_Error_Txt = false;31 $UAM_Reminder_Error_Txt = false;32 $UAM_ConfirmMail_Error_Txt1 = false;33 $UAM_ConfirmMail_Error_Txt2 = false;34 29 $UAM_Exclusionlist_Error = false; 35 30 … … 71 66 // +----------------------------------------------------------+ 72 67 73 /* Standby because this may cause too many problems with (;) in text fields */ 74 //$toolbar = 'Basic'; 75 //$width = '750px'; 76 //$height = '300px'; 77 //$areas = array(); 78 //array_push( $areas,'UAM_MailInfo_Text','UAM_ConfirmMail_Text','UAM_GhostTracker_ReminderText','UAM_ConfirmMail_ReMail_Txt1','UAM_ConfirmMail_ReMail_Txt2'); 79 80 //if (function_exists('set_fckeditor_instance')) 81 // set_fckeditor_instance($areas, $toolbar, $width, $height); 68 /* Pending because this may cause problems with special characters in emails */ 69 /*$toolbar = 'Basic'; 70 $width = '750px'; 71 $height = '300px'; 72 $areas = array(); 73 array_push( $areas,'UAM_MailInfo_Text','UAM_ConfirmMail_Text','UAM_GhostTracker_ReminderText','UAM_ConfirmMail_ReMail_Txt1','UAM_ConfirmMail_ReMail_Txt2'); 74 75 if (function_exists('set_fckeditor_instance')) 76 { 77 $fcke_config = unserialize($conf['FCKEditor']); 78 foreach($areas as $area) 79 { 80 if (!isset($fcke_config[$area])) 81 { 82 $fcke_config[$area] = false; 83 } 84 } 85 $conf['FCKEditor'] = serialize($fcke_config); 86 87 set_fckeditor_instance($areas, $toolbar, $width, $height); 88 }*/ 82 89 83 90 … … 106 113 107 114 108 /* Control of semicolons - Replaced by dots - Warning message is displayed */ 109 if ((preg_match($pattern, $_POST['UAM_MailInfo_Text'])) or (preg_match($pattern, $_POST['UAM_GhostTracker_ReminderText'])) or (preg_match($pattern, $_POST['UAM_ConfirmMail_Text']))) 110 { 111 if (preg_match($pattern, $_POST['UAM_MailInfo_Text'])) 112 { 113 $_POST['UAM_MailInfo_Text'] = preg_replace($pattern, $replacement, $_POST['UAM_MailInfo_Text']); 114 $UAM_MailInfo_Error_Txt = true; 115 } 116 117 if (preg_match($pattern, $_POST['UAM_ConfirmMail_Text'])) 118 { 119 $_POST['UAM_ConfirmMail_Text'] = preg_replace($pattern, $replacement, $_POST['UAM_ConfirmMail_Text']); 120 $UAM_ConfirmMail_Error_Txt = true; 121 } 122 123 if (preg_match($pattern, $_POST['UAM_GhostTracker_ReminderText'])) 124 { 125 $_POST['UAM_GhostTracker_ReminderText'] = preg_replace($pattern, $replacement, $_POST['UAM_GhostTracker_ReminderText']); 126 $UAM_Reminder_Error_Txt = true; 127 } 128 129 array_push($page['errors'], l10n('mail_text_error')); 130 } 131 132 /* Check if CR-LF exist at begining and end of mail exclusion list - If yes, removes them */ 115 /* Check if CR-LF exist at begining and end of mail exclusion list - If yes, removes them */ 133 116 if (preg_match('/^[\s]+/', $_POST['UAM_MailExclusion_List'])) 134 117 { … … 178 161 $_POST['UAM_ConfirmMail_ReMail_Txt2'] = str_replace("\'", "'", str_replace("\\\\", "\\", $_POST['UAM_ConfirmMail_ReMail_Txt2'])); 179 162 180 /* Control of semicolons - Replaced by dots - Warning message displayed */181 if ((preg_match($pattern, $_POST['UAM_ConfirmMail_ReMail_Txt1'])) or (preg_match($pattern, $_POST['UAM_ConfirmMail_ReMail_Txt2'])))182 {183 if ((preg_match($pattern, $_POST['UAM_ConfirmMail_ReMail_Txt1'])))184 {185 $_POST['UAM_ConfirmMail_ReMail_Txt1'] = preg_replace($pattern, $replacement, $_POST['UAM_ConfirmMail_ReMail_Txt1']);186 $UAM_ConfirmMail_Error_Txt1 = true;187 }188 189 if ((preg_match($pattern, $_POST['UAM_ConfirmMail_ReMail_Txt2'])))190 {191 $_POST['UAM_ConfirmMail_ReMail_Txt2'] = preg_replace($pattern, $replacement, $_POST['UAM_ConfirmMail_ReMail_Txt2']);192 193 $UAM_ConfirmMail_Error_Txt2 = true;194 }195 196 array_push($page['errors'], l10n('mail_text_error'));197 }198 163 199 164 $newconf_UAM_ConfirmMail = array ( … … 366 331 'UAM_ADMINCONFMAIL_FALSE' => $conf_UAM[21]=='false' ? 'checked="checked"' : '' , 367 332 'UAM_PASSWORD_TEST_SCORE' => $UAM_Password_Test_Score, 368 'UAM_ERROR_REPORTS1' => $UAM_MailInfo_Error_Txt,369 'UAM_ERROR_REPORTS2' => $UAM_ConfirmMail_Error_Txt,370 'UAM_ERROR_REPORTS3' => $UAM_Reminder_Error_Txt,371 333 'UAM_ERROR_REPORTS4' => $UAM_Exclusionlist_Error, 372 334 'UAM_CONFIRMMAIL_TIMEOUT_TRUE' => $conf_UAM_ConfirmMail[0]=='true' ? 'checked="checked"' : '' , … … 377 339 'UAM_CONFIRMMAIL_REMAIL_TXT1' => $conf_UAM_ConfirmMail[2], 378 340 'UAM_CONFIRMMAIL_REMAIL_TXT2' => $conf_UAM_ConfirmMail[4], 379 'UAM_ERROR_REPORTS1' => $UAM_ConfirmMail_Error_Txt1,380 'UAM_ERROR_REPORTS2' => $UAM_ConfirmMail_Error_Txt2,381 341 ) 382 342 ); -
extensions/NBC_UserAdvManager/branches/2.14/admin/global.tpl
r5065 r5087 109 109 <ul> 110 110 {if $UAM_MAIL_INFO_TRUE} 111 {if $UAM_ERROR_REPORTS1} 112 <li><label class="cluetip" title="{'UAM_infotxtTitle'|translate}|{'UAM_infotxtTitle_d'|translate}">{'UAM_MailInfo_Text'|@translate}</label><br><br> 113 <textarea name="UAM_MailInfo_Text" id="UAM_MailInfo_Text" rows="10" cols="80" style="color: red" {$TAG_INPUT_ENABLED}>{$UAM_MAILINFO_TEXT}</textarea><br><br> 114 </li> 115 {else} 116 <li><label class="cluetip" title="{'UAM_infotxtTitle'|translate}|{'UAM_infotxtTitle_d'|translate}">{'UAM_MailInfo_Text'|@translate}</label><br><br> 117 <textarea name="UAM_MailInfo_Text" id="UAM_MailInfo_Text" rows="10" cols="80" {$TAG_INPUT_ENABLED}>{$UAM_MAILINFO_TEXT}</textarea><br><br> 118 </li> 119 {/if} 111 <li><label class="cluetip" title="{'UAM_infotxtTitle'|translate}|{'UAM_infotxtTitle_d'|translate}">{'UAM_MailInfo_Text'|@translate}</label><br><br> 112 <textarea name="UAM_MailInfo_Text" id="UAM_MailInfo_Text" rows="10" cols="80" {$TAG_INPUT_ENABLED}>{$UAM_MAILINFO_TEXT}</textarea><br><br> 113 </li> 120 114 {else} 121 115 <li><label class="cluetip" title="{'UAM_infotxtTitle'|translate}|{'UAM_infotxtTitle_d'|translate}">{'UAM_MailInfo_Text'|@translate}</label><br><br> … … 143 137 </li> 144 138 {if $UAM_CONFIRM_MAIL_TRUE} 145 {if $UAM_ERROR_REPORTS2}146 <li><label class="cluetip" title="{'UAM_confirmtxtTitle'|translate}|{'UAM_confirmtxtTitle_d'|translate}">{'UAM_ConfirmMail_Text'|@translate}</label><br><br>147 <textarea name="UAM_ConfirmMail_Text" id="UAM_ConfirmMail_Text" rows="10" cols="80" style="color: red" {$TAG_INPUT_ENABLED}>{$UAM_CONFIRMMAIL_TEXT}</textarea><br><br>148 </li>149 {else}150 139 <li><label class="cluetip" title="{'UAM_confirmtxtTitle'|translate}|{'UAM_confirmtxtTitle_d'|translate}">{'UAM_ConfirmMail_Text'|@translate}</label><br><br> 151 140 <textarea name="UAM_ConfirmMail_Text" id="UAM_ConfirmMail_Text" rows="10" cols="80" {$TAG_INPUT_ENABLED}>{$UAM_CONFIRMMAIL_TEXT}</textarea><br><br> 152 141 </li> 153 {/if}154 142 {else} 155 143 <li><label class="cluetip" title="{'UAM_confirmtxtTitle'|translate}|{'UAM_confirmtxtTitle_d'|translate}">{'UAM_ConfirmMail_Text'|@translate}</label><br><br> … … 214 202 <ul> 215 203 {if $UAM_CONFIRMMAIL_REMAIL_TRUE} 216 {if $UAM_ERROR_REPORTS1}217 <li><label class="cluetip" title="{'UAM_remailtxt1Title'|translate}|{'UAM_remailtxt1Title_d'|translate}">{'UAM_ConfirmMail_ReMail_Txt1'|@translate}</label><br><br>218 <textarea name="UAM_ConfirmMail_ReMail_Txt1" id="UAM_ConfirmMail_ReMail_Txt1" rows="10" cols="80" style="color: red" {$TAG_INPUT_ENABLED}>{$UAM_CONFIRMMAIL_REMAIL_TXT1}</textarea><br><br>219 </li>220 {else}221 204 <li><label class="cluetip" title="{'UAM_remailtxt1Title'|translate}|{'UAM_remailtxt1Title_d'|translate}">{'UAM_ConfirmMail_ReMail_Txt1'|@translate}</label><br><br> 222 205 <textarea name="UAM_ConfirmMail_ReMail_Txt1" id="UAM_ConfirmMail_ReMail_Txt1" rows="10" cols="80" {$TAG_INPUT_ENABLED}>{$UAM_CONFIRMMAIL_REMAIL_TXT1}</textarea><br><br> 223 206 </li> 224 {/if}225 207 {else} 226 208 <li><label class="cluetip" title="{'UAM_remailtxt1Title'|translate}|{'UAM_remailtxt1Title_d'|translate}">{'UAM_ConfirmMail_ReMail_Txt1'|@translate}</label><br><br> … … 237 219 238 220 {if $UAM_CONFIRMMAIL_REMAIL_TRUE} 239 {if $UAM_ERROR_REPORTS2}240 <li><label class="cluetip" title="{'UAM_remailtxt2Title'|translate}|{'UAM_remailtxt2Title_d'|translate}">{'UAM_ConfirmMail_ReMail_Txt2'|@translate}</label><br><br>241 <textarea name="UAM_ConfirmMail_ReMail_Txt2" id="UAM_ConfirmMail_ReMail_Txt2" rows="10" cols="80" style="color: red" {$TAG_INPUT_ENABLED}>{$UAM_CONFIRMMAIL_REMAIL_TXT2}</textarea><br>242 </li>243 {else}244 221 <li><label class="cluetip" title="{'UAM_remailtxt2Title'|translate}|{'UAM_remailtxt2Title_d'|translate}">{'UAM_ConfirmMail_ReMail_Txt2'|@translate}</label><br><br> 245 222 <textarea name="UAM_ConfirmMail_ReMail_Txt2" id="UAM_ConfirmMail_ReMail_Txt2" rows="10" cols="80" {$TAG_INPUT_ENABLED}>{$UAM_CONFIRMMAIL_REMAIL_TXT2}</textarea><br> 246 223 </li> 247 {/if}248 224 {else} 249 225 <li><label class="cluetip" title="{'UAM_remailtxt2Title'|translate}|{'UAM_remailtxt2Title_d'|translate}">{'UAM_ConfirmMail_ReMail_Txt2'|@translate}</label><br><br> … … 281 257 <ul> 282 258 {if $UAM_GHOSTRACKER_TRUE} 283 {if $UAM_ERROR_REPORTS3}284 <li><label class="cluetip" title="{'UAM_gttextTitle'|translate}|{'UAM_gttextTitle_d'|translate}">{'UAM_GhostTracker_ReminderText'|@translate}</label><br><br>285 <textarea name="UAM_GhostTracker_ReminderText" id="UAM_GhostTracker_ReminderText" rows="10" cols="80" style="color: red" {$TAG_INPUT_ENABLED}>{$UAM_GHOSTRACKER_REMINDERTEXT}</textarea><br><br>286 </li>287 {else}288 259 <li><label class="cluetip" title="{'UAM_gttextTitle'|translate}|{'UAM_gttextTitle_d'|translate}">{'UAM_GhostTracker_ReminderText'|@translate}</label><br><br> 289 260 <textarea name="UAM_GhostTracker_ReminderText" id="UAM_GhostTracker_ReminderText" rows="10" cols="80" {$TAG_INPUT_ENABLED}>{$UAM_GHOSTRACKER_REMINDERTEXT}</textarea><br><br> 290 261 </li> 291 {/if}292 262 {else} 293 263 <li><label class="cluetip" title="{'UAM_gttextTitle'|translate}|{'UAM_gttextTitle_d'|translate}">{'UAM_GhostTracker_ReminderText'|@translate}</label><br><br> -
extensions/NBC_UserAdvManager/branches/2.14/changelog.txt.php
r5065 r5087 148 148 Evolution 1485 - The admin's can choose if the validation of registration have to be sent to users created by them 149 149 Improving obsolete files cleaning 150 Evolution 1488 - When an admin creates an account an information email is always sent to created user 150 151 Code simplification - All variables are changed from "UserAdvManager" to "UAM" 151 152 */ -
extensions/NBC_UserAdvManager/branches/2.14/include/functions.inc.php
r5065 r5087 98 98 } 99 99 } 100 101 /* ******************************************************** */ 102 /* **** Pending code since to find how to make it work **** */ 103 /* ******************************************************** */ 104 // Testing if FCK Editor is used. Then decoding htmlchars to avoid problems with pwg_mail() 105 /*$areas = array(); 106 array_push( $areas,'UAM_MailInfo_Text','UAM_ConfirmMail_Text'); 107 108 if (function_exists('set_fckeditor_instance')) 109 { 110 $fcke_config = unserialize($conf['FCKEditor']); 111 foreach($areas as $area) 112 { 113 if (isset($fcke_config['UAM_MailInfo_Text']) and $fcke_config['UAM_MailInfo_Text'] = true) 114 { 115 $infos1_perso = html_entity_decode($infos1_perso,ENT_QUOTES,UTF-8); 116 } 117 118 if (isset($fcke_config['UAM_ConfirmMail_Text']) and $fcke_config['UAM_ConfirmMail_Text'] = true) 119 { 120 $infos2_perso = html_entity_decode($infos2_perso,ENT_QUOTES,UTF-8); 121 } 122 } 123 }*/ 124 100 125 101 126 /* Sending the email with subject and contents */ -
extensions/NBC_UserAdvManager/branches/2.14/language/de_DE/plugin.lang.php
r5065 r5087 95 95 $lang['GT_Reset'] = 'Geist Tracker neu stellen'; 96 96 // --------- End: New or revised $lang ---- from version 2.12.2 97 98 99 // --------- Starting below: New or revised $lang ---- from version 2.12.7100 /* Errors and Warnings */101 $lang['mail_text_error'] = '<b>Warnung!</b> - Semikolon (;) sind nicht im addtionnal E-Mail-Text erlaubt. Diese Zeichen wurden automatisch durch einen Punkt ersetzt (.). Für Informationen, ist der geänderte Text (n) (sind) in Rot in das entsprechende Feld (s dargestellt). Sie bitte, ob es (sie) aus.';102 // --------- End: New or revised $lang ---- from version 2.12.7103 97 104 98 … … 180 174 $lang['UAM_No_Comment_Anonymous_false'] = ' Deaktivieren (Standard)'; 181 175 182 $lang['UAM_Tips1'] = 'Registrations with email validation and warning message on the Piwigo\'s homepage';183 $lang['UAM_Tips1_txt'] = '184 <ul>185 <li>186 Ingredients needed:<br>187 - 2 Piwigo\'s user groups at least: "Waiting" for visitors awaiting validation and "Validated" for visitors who have validated their registration<br>188 - NBC_UAM plugin<br>189 - PWG Stuffs plugin<br>190 - Possibly Extended Description plugin (to support multi-lingual)191 </li>192 <br><br>193 <li>194 La recette :<br>195 <ul>196 <li>197 Preamble: It\'s located in the case of a private gallery or semi-private (ie only a small part of categories is available by Guests and registered can see everything). We consider that the required plugins are installed (does it remind you?).<br><br>198 </li>199 <li>200 Attribute group "Waiting" no permission on private categories<br><br>201 </li>202 <li>203 Attribute group "Validated" all permissions on the private categories<br><br>204 </li>205 <li>206 In NBC_UAM plugin:207 <ol>208 <li>Enable registration confirmation</li>209 <li>In the field below "Customizing the confirmation email", enter text for additional explanation will be attached to email registration confirmation. Possibly, it is possible to use markup language implemented by the plugin Extended Description</li>210 <li>In the "Group for users who have not validated their registration", select group "Waiting"</li>211 <li>In the "Group for users who have validated their registration", select group "Validated"</li>212 <li>Save the plugin configuration</li>213 </ol>214 </li>215 <br><br>216 <li>217 In PWG Stuff plugin:218 <ol>219 <li>Add a new module personal block like an edito</li>220 <li>In the module\'s configuration, in addition to its title (eg "Registration pending validation") and its description, check only the authorized group "Waiting"</li>221 <li>In the content module, enter the message text which sought information will be visible as invalid user. Again, ability to manage multi-language through Extended Description\'s tags</li>222 <li>Validate module</li>223 <li>Define its place on the main page of the gallery</li>224 </ol>225 </li>226 </ul>227 </li>228 <br><br>229 <li>230 The result:<br>231 - A "Guest" arrives on the gallery, he sees nothing other than the public categories and no information message.<br>232 - He registers. This generates an email validation and automatic membership to the group "Waiting".<br>233 - At the end, he\'s redirected to the gallery homepage and a message indicating the waiting of validate its registration<br><br>234 He received his email validation, following the link provided for that purpose in the mail, releases the group "Waiting" and takes place in the group "Validated". By clicking the "Home", then he\'s connected to the gallery with full access to private groups and without the information message.235 </li>236 </ul>';237 238 176 $lang['Tab_UserManager'] = 'Tracking Validierungen'; 239 177 … … 269 207 $lang['UAM_Admin_ConfMail_true'] = ' Aktivieren'; 270 208 $lang['UAM_Admin_ConfMail_false'] = ' Deaktivieren (Standard)'; 209 $lang['UAM_Tips1'] = 'Anmeldungen mit E-Mail Validierung und Warnmeldung auf der Piwigo\'s Homepage'; 210 $lang['UAM_Tips1_txt'] = ' 211 <ul> 212 <li> 213 Tore:<br> 214 - Bei seiner Ankunft in der Galerie: Unterrichtung der Besucher, dass er sich registrieren um Zugang private Fotos<br> 215 - Bei der Registrierung: Erzeugen Sie eine E-Mail Validierung mit direkter Verbindung, sie dem neuen Anwender seiner Nicht-Validierung und Integration von ihm mit der Gruppe "Warten"<br> 216 - Bei der Validierung: Switch automatisch zur Gruppe "Warten" der Gruppe "Validiert", die den Zugang zu privaten Gruppen bietet<br><br> 217 <span style="font-style:italic">Warnung: Im Standard-Betrieb, der "Gast" sieht nur den öffentlichen Kategorien, ohne Angaben Nachricht.</span> 218 </li><br><br> 219 <li> 220 Voraussetzung:<br> 221 - Eine Galerie mit allen oder einigen privaten Kategorien, sichtbar nur durch registrierte Benutzer<br> 222 - Mindestens 2 der folgenden Piwigo Nutzergruppen: "Warten", ohne die Erlaubnis der privaten Gruppen und "Validiert" mit allen Berechtigungen für den privaten Kategorien<br> 223 - NBC_UAM plugin<br> 224 - PWG Stuffs plugin, für das Hinzufügen eines Moduls Art "Personal Block"<br> 225 - Optional können Sie das Plugin Extended Description Multi-Sprachen<br> 226 </li><br><br> 227 <li> 228 Etappen:<br><br> 229 A. In plugin NBC_UAM: 230 <ol> 231 <li>Aktivieren Sie Anmeldebestätigung</li> 232 <li>Geben Sie den Text für weitere Erklärung, die angebracht werden, um Anmeldebestätigung mail sendet. Wenn das Plugin Extended Description aktiviert ist, können die Sprach-Tags verwendet werden</li> 233 <li>Wählen Sie das "Warten"-Gruppe unter "Für Anwender, die noch nicht validiert ihrer Eintragung"</li> 234 <li>Wählen Sie das "Validiert"-Gruppe unter "Für Anwender, die ihre Anmeldung bestätigt haben"</li> 235 <li>Speichern Sie das Plugin-Konfiguration</li> 236 </ol> 237 </li><br> 238 B. In plugin PWG Stuffs : 239 <ol> 240 <li>Fügen Sie ein neues Modul Typ "Personal-Block: Zeigt einen Block Personal (z. B. eine redaktionelle)"</li> 241 <li>Konfigurieren Sie das Modul unter Angabe der Titel (zB "Anmeldung bis Validierung") und seine Beschreibung, und aktivieren Sie nur "Warten" in der Liste der Gruppen erlaubt</li> 242 <li>Kompletten Inhalt des Moduls mit der Meldung Informationen, die den Benutzern angezeigt werden nicht validiert. Als NBC_UAM kann Markup-Sprachen verwendet werden, wenn das Plugin Extended Description aktiviert ist</li> 243 <li>Check "Display das Modul auf der Homepage der Website"</li> 244 <li>Überprüfen Sie die Konfiguration des Moduls</li> 245 </ol> 246 </ul>'; 271 247 // --------- End: New or revised $lang ---- from version 2.14.0 272 248 ?> -
extensions/NBC_UserAdvManager/branches/2.14/language/en_UK/plugin.lang.php
r5065 r5087 95 95 $lang['GT_Reset'] = 'Reset Ghost Tracker'; 96 96 // --------- End: New or revised $lang ---- from version 2.12.2 97 98 99 // --------- Starting below: New or revised $lang ---- from version 2.12.7100 /* Errors and Warnings */101 $lang['mail_text_error'] = '<b>Warning!</b> - Semicolons (;) are not allowed in addtionnal email text. This Character have been automatically replaced by a dot (.). For information, the amended text(s) is(are) shown in red in the corresponding field(s). Please, check it(them) out.';102 // --------- End: New or revised $lang ---- from version 2.12.7103 97 104 98 … … 181 175 182 176 $lang['UAM_Tips1'] = 'Registrations with email validation and warning message on the Piwigo\'s homepage'; 183 $lang['UAM_Tips1_txt'] = '184 <ul>185 <li>186 Ingredients needed:<br>187 - 2 Piwigo\'s user groups at least: "Waiting" for visitors awaiting validation and "Validated" for visitors who have validated their registration<br>188 - NBC_UAM plugin<br>189 - PWG Stuffs plugin<br>190 - Possibly Extended Description plugin (to support multi-lingual)191 </li>192 <br><br>193 <li>194 La recette :<br>195 <ul>196 <li>197 Preamble: It\'s located in the case of a private gallery or semi-private (ie only a small part of categories is available by Guests and registered can see everything). We consider that the required plugins are installed (does it remind you?).<br><br>198 </li>199 <li>200 Attribute group "Waiting" no permission on private categories<br><br>201 </li>202 <li>203 Attribute group "Validated" all permissions on the private categories<br><br>204 </li>205 <li>206 In NBC_UAM plugin:207 <ol>208 <li>Enable registration confirmation</li>209 <li>In the field below "Customizing the confirmation email", enter text for additional explanation will be attached to email registration confirmation. Possibly, it is possible to use markup language implemented by the plugin Extended Description</li>210 <li>In the "Group for users who have not validated their registration", select group "Waiting"</li>211 <li>In the "Group for users who have validated their registration", select group "Validated"</li>212 <li>Save the plugin configuration</li>213 </ol>214 </li>215 <br><br>216 <li>217 In PWG Stuff plugin:218 <ol>219 <li>Add a new module personal block like an edito</li>220 <li>In the module\'s configuration, in addition to its title (eg "Registration pending validation") and its description, check only the authorized group "Waiting"</li>221 <li>In the content module, enter the message text which sought information will be visible as invalid user. Again, ability to manage multi-language through Extended Description\'s tags</li>222 <li>Validate module</li>223 <li>Define its place on the main page of the gallery</li>224 </ol>225 </li>226 </ul>227 </li>228 <br><br>229 <li>230 The result:<br>231 - A "Guest" arrives on the gallery, he sees nothing other than the public categories and no information message.<br>232 - He registers. This generates an email validation and automatic membership to the group "Waiting".<br>233 - At the end, he\'s redirected to the gallery homepage and a message indicating the waiting of validate its registration<br><br>234 He received his email validation, following the link provided for that purpose in the mail, releases the group "Waiting" and takes place in the group "Validated". By clicking the "Home", then he\'s connected to the gallery with full access to private groups and without the information message.235 </li>236 </ul>';237 177 238 178 $lang['Tab_UserManager'] = 'Tracking validations'; … … 269 209 $lang['UAM_Admin_ConfMail_true'] = ' Enable'; 270 210 $lang['UAM_Admin_ConfMail_false'] = ' Disable (default)'; 211 $lang['UAM_Tips1_txt'] = ' 212 <ul> 213 <li> 214 Goals:<br> 215 - On his arrival at the gallery: To inform the visitor that he has to register to access private photos<br> 216 - At registration: Generate an email validation with direct link, inform the new user of its non-validation and integrate him to the group "Waiting"<br> 217 - At validation: Switch automatically group "Waiting" to group "Validated", which provides access to private categories<br><br> 218 <span style="font-style:italic">Recall: In standard operation, the "Guest" only sees the public categories, without information message.</span> 219 </li><br><br> 220 <li> 221 Prerequisite:<br> 222 - A gallery with all or some private categories, visible only by registered users<br> 223 - At least 2 following Piwigo\'s users groups: "Waiting," without permission on private categories, and "Validated" with all the permissions on the private categories<br> 224 - NBC_UAM plugin<br> 225 - PWG Stuffs plugin, for adding a module type "Personal Block"<br> 226 - Optionally, the plugin Extended Description to support multi-languages<br> 227 </li><br><br> 228 <li> 229 Stages:<br><br> 230 A. In plugin NBC_UAM: 231 <ol> 232 <li>Enable registration confirmation</li> 233 <li>Enter text for additional explanation which will be attached to mail registration confirmation. If the plugin Extended Description is activated, the language tags can be used</li> 234 <li>Select the "Waiting" group under "For users who have not validated their registration"</li> 235 <li>Select the "Validated" group under "For users who have validated their registration"</li> 236 <li>Save the plugin configuration</li> 237 </ol> 238 </li><br> 239 B. In plugin PWG Stuffs : 240 <ol> 241 <li>Add a new module type "Personal block: Shows a block staff (eg an editorial)"</li> 242 <li>Configure the module, indicating the title (eg "Registration pending validation") and its description, and only check "Waiting" in the list of groups allowed</li> 243 <li>Complete content of the module with the message information to be displayed to users not validated. As NBC_UAM, languages markup may be used if the plugin is enabled Extended Description</li> 244 <li>Check "Display the module on the homepage of the site"</li> 245 <li>Validate the configuration of the module</li> 246 </ol> 247 </ul>'; 271 248 // --------- End: New or revised $lang ---- from version 2.14.0 272 249 ?> -
extensions/NBC_UserAdvManager/branches/2.14/language/es_ES/plugin.lang.php
r5065 r5087 95 95 $lang['GT_Reset'] = 'Perdí Ghost Tracker'; 96 96 // --------- End: New or revised $lang ---- from version 2.12.2 97 98 99 // --------- Starting below: New or revised $lang ---- from version 2.12.7100 /* Errors and Warnings */101 $lang['mail_text_error'] = '<b>¡Advertencia!</b> - Punto y coma (;) no están permitidos en el texto del mensaje addtionnal. Este carácter se han sustituido automáticamente por un punto (.). Para más información, el texto modificado(s) es(son) se muestra en rojo en el campo correspondiente(s). Por favor, compruebe que (ellos) hacia fuera.';102 // --------- End: New or revised $lang ---- from version 2.12.7103 97 104 98 … … 180 174 $lang['UAM_No_Comment_Anonymous_false'] = ' Desactivar (por defecto)'; 181 175 182 $lang['UAM_Tips1'] = 'Con la validación de los registros de correo electrónico y mensaje de advertencia en la página principal de Piwigo (ingles)'; 183 $lang['UAM_Tips1_txt'] = ' 184 <ul> 185 <li> 186 Ingredients needed:<br> 187 - 2 Piwigo\'s user groups at least: "Waiting" for visitors awaiting validation and "Validated" for visitors who have validated their registration<br> 188 - NBC_UAM plugin<br> 189 - PWG Stuffs plugin<br> 190 - Possibly Extended Description plugin (to support multi-lingual) 191 </li> 192 <br><br> 193 <li> 194 La recette :<br> 195 <ul> 196 <li> 197 Preamble: It\'s located in the case of a private gallery or semi-private (ie only a small part of categories is available by Guests and registered can see everything). We consider that the required plugins are installed (does it remind you?).<br><br> 198 </li> 199 <li> 200 Attribute group "Waiting" no permission on private categories<br><br> 201 </li> 202 <li> 203 Attribute group "Validated" all permissions on the private categories<br><br> 204 </li> 205 <li> 206 In NBC_UAM plugin: 207 <ol> 208 <li>Enable registration confirmation</li> 209 <li>In the field below "Customizing the confirmation email", enter text for additional explanation will be attached to email registration confirmation. Possibly, it is possible to use markup language implemented by the plugin Extended Description</li> 210 <li>In the "Group for users who have not validated their registration", select group "Waiting"</li> 211 <li>In the "Group for users who have validated their registration", select group "Validated"</li> 212 <li>Save the plugin configuration</li> 213 </ol> 214 </li> 215 <br><br> 216 <li> 217 In PWG Stuff plugin: 218 <ol> 219 <li>Add a new module personal block like an edito</li> 220 <li>In the module\'s configuration, in addition to its title (eg "Registration pending validation") and its description, check only the authorized group "Waiting"</li> 221 <li>In the content module, enter the message text which sought information will be visible as invalid user. Again, ability to manage multi-language through Extended Description\'s tags</li> 222 <li>Validate module</li> 223 <li>Define its place on the main page of the gallery</li> 224 </ol> 225 </li> 226 </ul> 227 </li> 228 <br><br> 229 <li> 230 The result:<br> 231 - A "Guest" arrives on the gallery, he sees nothing other than the public categories and no information message.<br> 232 - He registers. This generates an email validation and automatic membership to the group "Waiting".<br> 233 - At the end, he\'s redirected to the gallery homepage and a message indicating the waiting of validate its registration<br><br> 234 He received his email validation, following the link provided for that purpose in the mail, releases the group "Waiting" and takes place in the group "Validated". By clicking the "Home", then he\'s connected to the gallery with full access to private groups and without the information message. 235 </li> 236 </ul>'; 176 $lang['UAM_Tips1'] = 'Con la validación de los registros de correo electrónico y mensaje de advertencia en la página principal de Piwigo'; 237 177 238 178 $lang['Tab_UserManager'] = 'Seguimiento de las Validaciones'; … … 269 209 $lang['UAM_Admin_ConfMail_true'] = ' Activar'; 270 210 $lang['UAM_Admin_ConfMail_false'] = ' Desactivar (por defecto)'; 211 $lang['UAM_Tips1_txt'] = ' 212 <ul> 213 <li> 214 Goles:<br> 215 - A su llegada a la galería: Para informar al visitante de que tiene que registrarse para acceder a fotos privadas<br> 216 - En el registro: Generar una validación de correo electrónico con enlace directo, informar al nuevo usuario de su falta de validación y de integrarlo al grupo "Espera"<br> 217 - En la validación: cambiar automáticamente de grupo "Espera" al grupo "Validado", que proporciona acceso a categorías particulares<br><br> 218 <span style="font-style:italic">Recuerde: En funcionamiento normal, el "Invitado" sólo ve las categorías de público, sin mensaje de información.</span> 219 </li><br><br> 220 <li> 221 Requisito previo:<br> 222 - Una galería con todas o algunas categorías privado, visible sólo por los usuarios registrados<br> 223 - Al menos 2 siguientes Piwigo grupos de usuarios: "Espera," sin permiso en las categorías de privados, y "Validado" con todos los permisos en las categorías de privados<br> 224 - NBC_UAM plugin<br> 225 - PWG Stuffs plugin, para agregar un tipo de módulo "Personal Block"<br> 226 - Opcionalmente, la Extended Description plugin para soportar múltiples idiomas<br> 227 </li><br><br> 228 <li> 229 Etapas:<br><br> 230 A. En plugin NBC_UAM: 231 <ol> 232 <li>Activar la confirmación de registro</li> 233 <li>Introduzca el texto para la explicación adicional, que se adjunta al correo de confirmación de registro. Si se activa el plugin Extended Description, las etiquetas de idioma se puede utilizar</li> 234 <li>Seleccione la opción "Espera" del grupo en "Para los usuarios que no han validado su registro"</li> 235 <li>Seleccione la opción "Validado" en grupo "Para los usuarios que han validado su registro"</li> 236 <li>Guardar la configuración de plug-in</li> 237 </ol> 238 </li><br> 239 B. En plugin PWG Stuffs : 240 <ol> 241 <li>Añadir un tipo de módulo nuevo "bloque de Personal: Muestra una plantilla de bloque (por ejemplo, un editorial)"</li> 242 <li>Configurar el módulo, lo que indica el título (por ejemplo, "en espera de la validación de Registro") y su descripción, y solamente "Espera" en la lista de grupos permitido</li> 243 <li>El contenido completo del módulo con la información del mensaje que se mostrará a los usuarios no validados. Como NBC_UAM, lenguajes de marcas pueden ser utilizados si el plugin Extended Description está activado</li> 244 <li>Active la casilla "Mostrar el módulo en la página principal del sitio"</li> 245 <li>Validar la configuración del módulo</li> 246 </ol> 247 </ul>'; 271 248 // --------- End: New or revised $lang ---- from version 2.14.0 272 249 ?> -
extensions/NBC_UserAdvManager/branches/2.14/language/fr_FR/plugin.lang.php
r5065 r5087 95 95 $lang['GT_Reset'] = 'Initialisation Ghost Tracker'; 96 96 // --------- End: New or revised $lang ---- from version 2.12.2 97 98 99 // --------- Starting below: New or revised $lang ---- from version 2.12.7100 /* Errors and Warnings */101 $lang['mail_text_error'] = '<b>Attention!</b> - Le point-virgule (;) n\'est pas autorisé dans le texte additionnel des emails. Ce caractère a été automatiquement remplacé par un point (.). Pour information, le(s) texte(s) modifié(s) est(sont) affiché(s) en rouge dans le(s) champ(s) correspondant(s). Veuillez le(s) vérifier.';102 // --------- End: New or revised $lang ---- from version 2.12.7103 97 104 98 … … 182 176 183 177 $lang['UAM_Tips1'] = 'Inscriptions avec validation par email et message d\'avertissement sur la page d\'accueil de Piwigo'; 184 $lang['UAM_Tips1_txt'] = '185 <ul>186 <li>187 Les ingrédients nécessaires:<br>188 - 2 groupes d\'utilisateurs Piwigo au minimum: "Attente" pour les visiteur en attente de validation et "Validés" pour les visiteurs ayant validé leur inscription<br>189 - Le plugin NBC_UAM<br>190 - Le plugin PWG Stuffs<br>191 - Eventuellement le plugin Extended Description (pour le support multi-langues)192 </li>193 <br><br>194 <li>195 La recette:<br>196 <ul>197 <li>198 Préambule: On se place dans le cas d\'une galerie privée ou semi-privée (c\'est à dire qu\'une petite partie des catégories est accessible par les Guests et que les inscrits peuvent tout voir). On considère que les plugins requis sont installés (faut-il le rappeler ?).<br><br>199 </li>200 <li>201 N\'attribuer au groupe "Attente" aucune permission sur les catégories privées<br><br>202 </li>203 <li>204 Attribuer au groupe "Validés" toutes les permissions sur les catégories privées<br><br>205 </li>206 <li>207 Dans le plugin NBC_UAM:208 <ol>209 <li>Activer la confirmation d\'inscription</li>210 <li>Dans le champ sous "Personnalisation de l\'email confirmation", saisir un texte additionnel d\'explication qui sera joint au mail de confirmation d\'inscription. Eventuellement, il est possible d\'utiliser les balises de langues implémentées par le plugin Extended Description</li>211 <li>Dans la liste "Groupe pour les utilisateurs n\'ayant pas validé leur inscription", sélectionner le groupe "Attente"</li>212 <li>Dans la liste "Groupe pour les utilisateurs ayant validé leur inscription", sélectionner le groupe "Validés"</li>213 <li>Enregistrer la configuration du plugin</li>214 </ol>215 </li>216 <br><br>217 <li>218 Dans le plugin PWG Stuff:219 <ol>220 <li>Ajouter un nouveau module de type "Bloc personnel : Affiche un bloc personnel (un édito par exemple)"</li>221 <li>Dans la configuration du module, outre son titre (ex : "Inscription en attente de validation") et sa description, cocher uniquement le groupe autorisé "Attente"</li>222 <li>Dans le contenu du module, saisir le texte du message d\'information voulu qui ne sera visible que des utilisateurs non validés. Là aussi, possibilité de gérer le multi-langue grâce aux balises d\'Extended Description</li>223 <li>Valider le module</li>224 <li>Définir sa place dans l\'affiche de la page principale de la galerie</li>225 </ol>226 </li>227 </ul>228 </li>229 <br><br>230 <li>231 Le résultat:<br>232 - Un "Guest" arrive sur la galerie, il ne voit rien d\'autre que les catégories publiques et pas de message d\'information.<br>233 - Il s\'inscrit. Ce qui génère un email de validation et son appartenance automatique au groupe "Attente".<br>234 - A l\'issue, il est redirigé sur la page d\'accueil de la galerie avec, cette fois, un message lui indiquant la non-validation de son inscription<br><br>235 Il reçoit son email de validation, suit le lien prévu à cet effet dans le mail, ce qui le sort du groupe "Attente" et le place dans le groupe "Validés". En cliquant sur le bouton "Home", il est alors connecté à la galerie avec accès total aux catégories privées et sans le message d\'information.236 </li>237 </ul>';238 178 239 179 $lang['Tab_UserManager'] = 'Suivi des validations'; … … 269 209 $lang['UAM_Admin_ConfMail_true'] = ' Activer'; 270 210 $lang['UAM_Admin_ConfMail_false'] = ' Désactiver (valeur par défaut)'; 211 $lang['UAM_Tips1_txt'] = ' 212 <ul> 213 <li> 214 Objectifs:<br> 215 - A son arrivée sur la galerie : Informer le visiteur qu\'il peut s\'inscrire pour accéder aux photos privées<br> 216 - A l\'inscription : Générer un email avec lien direct de validation, informer le nouvel utilisateur de sa non-validation et le rattacher au groupe "Attente"<br> 217 - A la validation : Le passer automatiquement du groupe "Attente" au groupe "Validés", qui lui permet d\'accéder normalement aux catégories privées<br><br> 218 <span style="font-style:italic">Rappel: En fonctionnement standard, le "Guest" ne voit que les catégories publiques, sans message d\'information.</span> 219 </li><br><br> 220 <li> 221 Pré-requis:<br> 222 - Une galerie avec tout ou partie des catégories privées, visibles par les seuls utilisateurs inscrits<br> 223 - Au moins les 2 groupes d\'utilisateurs Piwigo suivants : "Attente", sans aucune permission sur les catégories privées, et "Validés", avec toutes les permissions sur les catégories privées<br> 224 - Le plugin NBC_UAM<br> 225 - Le plugin PWG Stuffs, pour l\'ajout d\'un module de type "Bloc personnel"<br> 226 - En option, le plugin Extended Description, pour le support multi-langues<br> 227 </li><br><br> 228 <li> 229 Réalisation:<br><br> 230 A. Dans le plugin NBC_UAM: 231 <ol> 232 <li>Activer la confirmation d\'inscription</li> 233 <li>Saisir un "texte d\'accueil personnalisé" qui sera joint au mail de confirmation d\'inscription. Si le plugin Extended Description est activé, les balises de langues peuvent être utilisées</li> 234 <li>Sélectionner le groupe "Attente" à la rubrique "Pour les utilisateurs n\'ayant pas validé leur inscription"</li> 235 <li>Sélectionner le groupe "Validés" à la rubrique "Pour les utilisateurs ayant validé leur inscription"</li> 236 <li>Enregistrer la configuration du plugin</li> 237 </ol> 238 </li><br> 239 B. Dans le plugin PWG Stuffs: 240 <ol> 241 <li>Ajouter un nouveau module de type "Bloc personnel : Affiche un bloc personnel (un édito par exemple)"</li> 242 <li>Configurer le module, en indiquant son titre (ex : "Inscription en attente de validation") et sa description, et cocher uniquement"Attente" dans la liste des groupes autorisés</li> 243 <li>Compléter le contenu du module avec le texte du message d\'information qui sera affiché aux utilisateurs non validés. Comme dans NBC_UAM, les balises de langues peuvent être utilisées si le plugin Extended Description est activé</li> 244 <li>Cocher "Afficher le module sur la page d\'accueil du site"</li> 245 <li>Valider la configuration du module</li> 246 </ol> 247 </ul>'; 271 248 // --------- End: New or revised $lang ---- from version 2.14.0 272 249 ?> -
extensions/NBC_UserAdvManager/branches/2.14/language/it_IT/plugin.lang.php
r5065 r5087 11 11 12 12 /* Mailing */ 13 $lang['infos_mail %s'] = '%s, di seguito i tuoi dati per accedere alla galleria:';13 $lang['infos_mail %s'] = '%s, di seguito i vostri dati per accedere alla galleria:'; 14 14 $lang['User: %s'] = 'Utente: %s'; 15 15 $lang['Password: %s'] = 'Password: %s'; … … 20 20 $lang['title_confirm_mail'] = 'Confermare la vostra iscrizzione'; 21 21 $lang['confirm_mail_page_title'] = 'Confermare l\'iscrizzione'; 22 $lang['confirm_mail_ok'] = '<br><br><br>Grazie per aver confermato il tuo indirizzo e-mail e per la registrazione sulla galleria. Buona visione!<br><br><br><br>';22 $lang['confirm_mail_ok'] = '<br><br><br>Grazie per aver confermato il vostro indirizzo e-mail e per la registrazione sulla galleria. Buona visione!<br><br><br><br>'; 23 23 24 24 25 25 /* Errors and Warnings */ 26 26 $lang['UAM_audit_ok'] = 'Audit OK'; 27 $lang['Err_audit_no_casse'] = '<b>Questi conti sono identici al caso da vicino:</b> ';27 $lang['Err_audit_no_casse'] = '<b>Questi conti sono identici (escluso maiuscola/minuscola):</b> '; 28 28 $lang['Err_audit_username_char'] = '<b>Questo conto utente utilizza uno o più caratteri vietati:</b> '; 29 29 $lang['Err_audit_email_forbidden'] = '<b>Questo conto utente usa un dominio di email proibito:</b> '; 30 $lang['Err_audit_advise'] = '<b> è necessario eseguire correzioni per conformarsi alle nuove regole che sono state attivate.<br>Utilizzare un programma per la gestione di database per correggere gli accountutente direttamente nella tabella ###_USERS';31 $lang['UAM_Empty Author'] = 'Il campo autore dev ono essere riempiti perinviare un commento.';30 $lang['Err_audit_advise'] = '<b>Dovete eseguire delle correzioni per rispettare le nuove impostazzioni che avete attivato.<br> Utilizzare un programma per la gestione della base dati per correggere i conti utente direttamente nella tabella ###_USERS'; 31 $lang['UAM_Empty Author'] = 'Il campo autore deve essere riempito per potere inviare un commento.'; 32 32 if ( isset($conf_UAM[1]) and $conf_UAM[1] == 'true' ) 33 $lang['reg_err_login5'] = 'Nome utente esist ono già, il nome di richiamo è case insensitive (Shift = Tiny).';34 $lang['reg_err_login6'] = 'Nome utente non deve co rrispondere i seguenti caratteri: ';35 $lang['reg_err_login7'] = 'Il tuo provider di posta elettronica è vietato per la registrazione. Vietato provider di posta elettronicasono i seguenti: ';33 $lang['reg_err_login5'] = 'Nome utente esiste già. Attenzione : il campo è insensibile alle maiuscole/minuscole.'; 34 $lang['reg_err_login6'] = 'Nome utente non deve contenere in caratteri seguenti: '; 35 $lang['reg_err_login7'] = 'Il tuo provider di posta usa dominio di email proibito. I dominii preibiti sono i seguenti: '; 36 36 $lang['UAM_empty_pwd'] = '[password vuota]'; 37 $lang['UAM_no_update_pwd'] = '[profilo aggiornato senza password cambiata]';37 $lang['UAM_no_update_pwd'] = '[profilo aggiornato senza modifica della password]'; 38 38 $lang['invalid_pwd'] = 'Nome utente o password non validi!'; 39 $lang['No_validation_for_Guest'] = ' "Guest" conto non è soggettaa convalida';40 $lang['No_validation_for_default_user'] = ' L\'account predefinito non è soggettaa convalida';41 $lang['No_validation_for_Webmaster'] = ' "Webmaster" conto non è soggettaa convalida';42 $lang['No_validation_for_your_account'] = 'Il tuo account admin Personnal non è soggettaa convalida';43 $lang['Database_Error'] = '<b><u>Attenzione! Errore di integrità critico nel database.</u></b><br><br>Si prega di verificare l\'integrità della tabella #_user_confirm_mail.';39 $lang['No_validation_for_Guest'] = 'Il conto "Guest" non è soggetto a convalida'; 40 $lang['No_validation_for_default_user'] = 'Il conto di default non è soggetto a convalida'; 41 $lang['No_validation_for_Webmaster'] = 'Il conto del "Webmaster" non è soggetto a convalida'; 42 $lang['No_validation_for_your_account'] = 'Il tuo conto amminstratore non è soggetto a convalida'; 43 $lang['Database_Error'] = '<b><u>Attenzione! Errore di integrità critico nella base dati.</u></b><br><br>Si prega di verificare l\'integrità della tabella #_user_confirm_mail.'; 44 44 45 45 46 46 /* Processing messages */ 47 $lang['%d_Mail_With_Key'] = '%d messaggio con il rinnovo chiave è stata inviata';48 $lang['%d_Mails_With_Key'] = '%d messaggi con il rinnovo chiave sono stati inviati';47 $lang['%d_Mail_With_Key'] = '%d messaggio con il rinnovo della chiave è stato inviato'; 48 $lang['%d_Mails_With_Key'] = '%d messaggi con il rinnovo della chiave sono stati inviati'; 49 49 $lang['%d_Reminder_Sent'] = '%d messaggio di promemoria è stato inviato'; 50 50 $lang['%d_Reminders_Sent'] = '%d messaggi di promemoria sono stati inviati'; 51 51 $lang['%d_Validated_User'] = '%d utente convalidato manualmente'; 52 $lang['%d_Validated_Users'] = '%d utenti convalidat omanualmente';52 $lang['%d_Validated_Users'] = '%d utenti convalidati manualmente'; 53 53 54 54 55 55 /* Action button names */ 56 $lang['Delete_selected'] = ' Eliminare';56 $lang['Delete_selected'] = 'Cancellare'; 57 57 $lang['Mail_without_key'] = 'Promemoria senza chiave'; 58 58 $lang['Mail_with_key'] = 'Promemoria con chiave'; 59 $lang['Force_Validation'] = ' Forzati di convalida';59 $lang['Force_Validation'] = 'Convalida forzata'; 60 60 61 61 … … 64 64 // --------- Starting below: New or revised $lang ---- from version 2.12.0 and 2.12.1 65 65 /* Global Configuration Tab */ 66 $lang['PasswordTest'] = 'Calcolo punteggio';66 $lang['PasswordTest'] = 'Calcolo del punteggio'; 67 67 /* Ghost Tracker Tab */ 68 68 $lang['Tab_GhostTracker'] = 'Ghost Tracker'; 69 $lang['LastVisit_Date'] = ' Ultima visita';69 $lang['LastVisit_Date'] = 'Data ultima visita'; 70 70 $lang['Reminder'] = 'E-mail di sollecito'; 71 71 $lang['Reminder_Sent_OK'] = 'SI'; … … 73 73 /* Errors and Warnings */ 74 74 $lang['UAM_save_config'] ='Configurazione salvata.'; 75 $lang['reg_err_login3'] = 'S ecurity: Password è obbligatorio!';76 $lang['reg_err_login4_%s'] = 'Sicurezza: un sistema di controllo calcola un punteggio sulla scelta password complessità. La complessità della password è troppo bassa (punteggio = %s). Si prega di scegliere una nuova password più sicura seguendo queste regole:<br>77 - Utilizzare le lettere enumeri<br>78 - Usare maiuscolee minuscole<br>79 - Aumentare la sualunghezza (numero di caratteri)<br>80 Le password punteggio minimo richiesto dall\'amministratore è: ';81 $lang['No_reminder_for_Guest'] = ' "Guest" conto non è soggetto a ricevere i promemoria daGhostTracker';82 $lang['No_reminder_for_default_user'] = ' L\'account predefinito non è soggetto a ricevere i promemoria daGhostTracker';83 $lang['No_reminder_for_Webmaster'] = ' "Webmaster" conto non è soggetto a ricevere i promemoria daGhostTracker';84 $lang['No_reminder_for_your_account'] = 'Il tuo account admin Personnal non è soggetto a ricevere i promemoria daGhostTracker';75 $lang['reg_err_login3'] = 'Sicurezza: La password è obbligatoria!'; 76 $lang['reg_err_login4_%s'] = 'Sicurezza: un sistema di controllo calcola un punteggio basandosi sulla complessità della password scelta. La complessità della password è troppo bassa (punteggio = %s). Si prega di scegliere una nuova password più sicura seguendo queste regole:<br> 77 - Utilizzare delle lettere e dei numeri<br> 78 - Usare delle maiuscole e delle minuscole<br> 79 - Aumentare la lunghezza (numero di caratteri)<br> 80 Il punteggio minimo richiesto dall\'amministratore per la password è di : '; 81 $lang['No_reminder_for_Guest'] = 'Il conto utente "Guest" non è soggetto a ricevere dei promemoria dal GhostTracker'; 82 $lang['No_reminder_for_default_user'] = 'Il conto utente di default non è soggetto a ricevere dei promemoria dal GhostTracker'; 83 $lang['No_reminder_for_Webmaster'] = 'Il conto utente "Webmaster" non è soggetto a ricevere dei promemoria dal GhostTracker'; 84 $lang['No_reminder_for_your_account'] = 'Il tuo conto amministratore non è soggetto a ricevere dei promemoria dal GhostTracker'; 85 85 /* Action button names */ 86 $lang['audit'] = 'Audit impostazioni';87 $lang['submit'] = 'Salva impostazioni';86 $lang['audit'] = 'Audit delle impostazioni'; 87 $lang['submit'] = 'Salvare le impostazioni'; 88 88 // --------- End: New or revised $lang ---- from version 2.12.0 and 2.12.1 89 89 … … 91 91 // --------- Starting below: New or revised $lang ---- from version 2.12.2 92 92 /* Errors and Warnings */ 93 $lang['GhostTracker_Init_OK'] = ' GhostTracker reset fatto!';93 $lang['GhostTracker_Init_OK'] = 'Inizzializzazione GhostTracker eseguita!'; 94 94 /* Action button names */ 95 $lang['GT_Reset'] = 'Reset GhostTracker';95 $lang['GT_Reset'] = 'Reset del GhostTracker'; 96 96 // --------- End: New or revised $lang ---- from version 2.12.2 97 98 99 // --------- Starting below: New or revised $lang ---- from version 2.12.7100 /* Errors and Warnings */101 $lang['mail_text_error'] = '<b>Attenzione!</b> - Punto e virgola (;) non sono ammessi in addtionnal testo e-mail. Questo carattere è stato automaticamente sostituito da un punto (.). Per informazioni, il testo modificato(s) è (sono) indicato in rosso nel campo corrispondente (s). Vi preghiamo di controllare lo(li) fuori.';102 // --------- End: New or revised $lang ---- from version 2.12.7103 97 104 98 … … 180 174 $lang['UAM_No_Comment_Anonymous_false'] = ' Disattivare (predefinito)'; 181 175 182 $lang['UAM_Tips1'] = 'Registrazioni con la convalida e-mail e messaggio di avviso nella home page del PhpWebGallery (Inglese)'; 183 /* TODO */$lang['UAM_Tips1_txt'] = ' 184 <ul> 185 <li> 186 Ingredients needed:<br> 187 - 2 Piwigo\'s user groups at least: "Waiting" for visitors awaiting validation and "Validated" for visitors who have validated their registration<br> 188 - NBC_UAM plugin<br> 189 - PWG Stuffs plugin<br> 190 - Possibly Extended Description plugin (to support multi-lingual) 191 </li> 192 <br><br> 193 <li> 194 La recette :<br> 195 <ul> 196 <li> 197 Preamble: It\'s located in the case of a private gallery or semi-private (ie only a small part of categories is available by Guests and registered can see everything). We consider that the required plugins are installed (does it remind you?).<br><br> 198 </li> 199 <li> 200 Attribute group "Waiting" no permission on private categories<br><br> 201 </li> 202 <li> 203 Attribute group "Validated" all permissions on the private categories<br><br> 204 </li> 205 <li> 206 In NBC_UAM plugin: 207 <ol> 208 <li>Enable registration confirmation</li> 209 <li>In the field below "Customizing the confirmation email", enter text for additional explanation will be attached to email registration confirmation. Possibly, it is possible to use markup language implemented by the plugin Extended Description</li> 210 <li>In the "Group for users who have not validated their registration", select group "Waiting"</li> 211 <li>In the "Group for users who have validated their registration", select group "Validated"</li> 212 <li>Save the plugin configuration</li> 213 </ol> 214 </li> 215 <br><br> 216 <li> 217 In PWG Stuff plugin: 218 <ol> 219 <li>Add a new module personal block like an edito</li> 220 <li>In the module\'s configuration, in addition to its title (eg "Registration pending validation") and its description, check only the authorized group "Waiting"</li> 221 <li>In the content module, enter the message text which sought information will be visible as invalid user. Again, ability to manage multi-language through Extended Description\'s tags</li> 222 <li>Validate module</li> 223 <li>Define its place on the main page of the gallery</li> 224 </ol> 225 </li> 226 </ul> 227 </li> 228 <br><br> 229 <li> 230 The result:<br> 231 - A "Guest" arrives on the gallery, he sees nothing other than the public categories and no information message.<br> 232 - He registers. This generates an email validation and automatic membership to the group "Waiting".<br> 233 - At the end, he\'s redirected to the gallery homepage and a message indicating the waiting of validate its registration<br><br> 234 He received his email validation, following the link provided for that purpose in the mail, releases the group "Waiting" and takes place in the group "Validated". By clicking the "Home", then he\'s connected to the gallery with full access to private groups and without the information message. 235 </li> 236 </ul>'; 176 $lang['UAM_Tips1'] = 'Registrazioni con la convalida e-mail e messaggio di avviso nella home page del Piwigo (Inglese)'; 237 177 238 178 $lang['Tab_UserManager'] = 'Tracciamento convalide'; … … 269 209 $lang['UAM_Admin_ConfMail_true'] = ' Consentire'; 270 210 $lang['UAM_Admin_ConfMail_false'] = ' Disattivare (predefinito)'; 211 $lang['UAM_Tips1_txt'] = ' 212 <ul> 213 <li> 214 Obiettivi:<br> 215 - Al suo arrivo presso la galleria: a informare il visitatore che si deve registrare per accedere a foto private<br> 216 - Al momento della registrazione: Genera una validazione e-mail con il link diretto, informa il nuovo utente della sua mancata convalida e integrare lo al gruppo "Attesa"<br> 217 - All\'atto della convalida: Switch automaticamente gruppo "Attesa" di gruppo "Validati", che fornisce l\'accesso a categorie privato<br><br> 218 <span style="font-style:italic">Ricordo: In funzionamento standard, il "cliente" vede solo le categorie del pubblico, senza messaggio di informazione.</span> 219 </li><br><br> 220 <li> 221 Prerequisito:<br> 222 - Una galleria con tutte o alcune categorie private, visibili solo agli utenti registrati<br> 223 - Almeno 2 seguenti gruppi di utenti Piwigo\'s: "Attesa", senza il consenso sulle categorie private, e "Validati" con tutte le autorizzazioni per le categorie privato<br> 224 - NBC_UAM plugin<br> 225 - PWG Stuffs plugin, per aggiungere un tipo di modulo "Personal Block"<br> 226 - Facoltativamente, il plugin Extended Description al supporto multi-lingue<br> 227 </li><br><br> 228 <li> 229 Tappe:<br><br> 230 A. In plugin NBC_UAM: 231 <ol> 232 <li>Consentire la conferma della registrazione</li> 233 <li>Inserisci il testo per ulteriori spiegazioni, che sarà allegato a una mail di conferma della registrazione. Se il plugin Extended Description è attivato, i tag linguaggio può essere utilizzato</li> 234 <li>Selezionare l\'opzione "Attesa" gruppo sotto la voce "Per gli utenti che non hanno convalidato la loro registrazione"</li> 235 <li>Selezionare l\'opzione "Validati" gruppo sotto la voce "Per gli utenti che hanno convalidato la loro iscrizione"</li> 236 <li>Salvare la configurazione</li> 237 </ol> 238 </li><br> 239 B. In plugin PWG Stuffs : 240 <ol> 241 <li>Aggiungere un nuovo tipo di modulo "block personali: mostra personale di blocco (ad esempio, un editoriale)"</li> 242 <li>Configurare il modulo, indicando il titolo (ad esempio, "in attesa di convalida Registrazione") e la sua descrizione, e selezionare solo "Attesa" nella lista dei gruppi ammessi</li> 243 <li>Contenuto completo del modulo con le informazioni di messaggio da visualizzare per gli utenti non convalidato. Come NBC_UAM, linguaggi di markup possono essere utilizzati se il plugin Extended Description è abilitato</li> 244 <li>Check "visualizzare il modulo nella homepage del sito"</li> 245 <li>Convalidare la configurazione del modulo</li> 246 </ol> 247 </ul>'; 271 248 // --------- End: New or revised $lang ---- from version 2.14.0 272 249 ?> -
extensions/NBC_UserAdvManager/branches/2.14/maintain.inc.php
r5065 r5087 280 280 function upgrade_213() 281 281 { 282 $data = explode(';', $conf['nbc_UserAdvManager']); 282 global $conf; 283 284 $conf_UAM = explode(';', $conf['nbc_UserAdvManager']); 285 286 $upgrade_UAM = array($conf_UAM[0],$conf_UAM[1],$conf_UAM[2],$conf_UAM[3],$conf_UAM[4],$conf_UAM[5],$conf_UAM[6],$conf_UAM[7],$conf_UAM[8],$conf_UAM[9],$conf_UAM[10],$conf_UAM[11],$conf_UAM[12],$conf_UAM[13],$conf_UAM[14],$conf_UAM[15],$conf_UAM[16],$conf_UAM[17],$conf_UAM[18],$conf_UAM[19],$conf_UAM[20],'false'); 283 287 284 288 $query = ' 285 289 UPDATE '.CONFIG_TABLE.' 286 SET value = "'.addslashes(serialize($ data)).'"290 SET value = "'.addslashes(serialize($upgrade_UAM)).'" 287 291 WHERE param = "nbc_UserAdvManager" 288 292 ;';
Note: See TracChangeset
for help on using the changeset viewer.