Ignore:
Timestamp:
Mar 8, 2010, 11:11:51 PM (14 years ago)
Author:
Eric
Message:

[NBC_UserAdvManager] Pre-2.14.0 merged from trunk to branch 2.14

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  
    2727
    2828$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;
    3429$UAM_Exclusionlist_Error = false;
    3530
     
    7166// +----------------------------------------------------------+
    7267
    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();
     73array_push( $areas,'UAM_MailInfo_Text','UAM_ConfirmMail_Text','UAM_GhostTracker_ReminderText','UAM_ConfirmMail_ReMail_Txt1','UAM_ConfirmMail_ReMail_Txt2');
     74
     75if (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}*/
    8289
    8390
     
    106113
    107114
    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 */
    133116    if (preg_match('/^[\s]+/', $_POST['UAM_MailExclusion_List']))
    134117    {
     
    178161    $_POST['UAM_ConfirmMail_ReMail_Txt2'] = str_replace("\'", "'", str_replace("\\\\", "\\", $_POST['UAM_ConfirmMail_ReMail_Txt2']));
    179162
    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     }
    198163
    199164          $newconf_UAM_ConfirmMail = array (
     
    366331    'UAM_ADMINCONFMAIL_FALSE'        => $conf_UAM[21]=='false' ?  'checked="checked"' : '' ,
    367332                '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,
    371333    'UAM_ERROR_REPORTS4'             => $UAM_Exclusionlist_Error,
    372334                'UAM_CONFIRMMAIL_TIMEOUT_TRUE'   => $conf_UAM_ConfirmMail[0]=='true' ?  'checked="checked"' : '' ,
     
    377339    'UAM_CONFIRMMAIL_REMAIL_TXT1'                => $conf_UAM_ConfirmMail[2],
    378340    'UAM_CONFIRMMAIL_REMAIL_TXT2'                => $conf_UAM_ConfirmMail[4],
    379     'UAM_ERROR_REPORTS1'             => $UAM_ConfirmMail_Error_Txt1,
    380     'UAM_ERROR_REPORTS2'             => $UAM_ConfirmMail_Error_Txt2,
    381341    )
    382342  );
  • extensions/NBC_UserAdvManager/branches/2.14/admin/global.tpl

    r5065 r5087  
    109109        <ul>
    110110{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>
    120114{else}
    121115          <li><label class="cluetip" title="{'UAM_infotxtTitle'|translate}|{'UAM_infotxtTitle_d'|translate}">{'UAM_MailInfo_Text'|@translate}</label><br><br>
     
    143137          </li>
    144138{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}
    150139          <li><label class="cluetip" title="{'UAM_confirmtxtTitle'|translate}|{'UAM_confirmtxtTitle_d'|translate}">{'UAM_ConfirmMail_Text'|@translate}</label><br><br>
    151140            <textarea name="UAM_ConfirmMail_Text" id="UAM_ConfirmMail_Text" rows="10" cols="80" {$TAG_INPUT_ENABLED}>{$UAM_CONFIRMMAIL_TEXT}</textarea><br><br>
    152141          </li>
    153   {/if}
    154142{else}
    155143          <li><label class="cluetip" title="{'UAM_confirmtxtTitle'|translate}|{'UAM_confirmtxtTitle_d'|translate}">{'UAM_ConfirmMail_Text'|@translate}</label><br><br>
     
    214202        <ul>
    215203{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}
    221204        <li><label class="cluetip" title="{'UAM_remailtxt1Title'|translate}|{'UAM_remailtxt1Title_d'|translate}">{'UAM_ConfirmMail_ReMail_Txt1'|@translate}</label><br><br>
    222205          <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>
    223206        </li>
    224   {/if}
    225207{else}
    226208        <li><label class="cluetip" title="{'UAM_remailtxt1Title'|translate}|{'UAM_remailtxt1Title_d'|translate}">{'UAM_ConfirmMail_ReMail_Txt1'|@translate}</label><br><br>
     
    237219
    238220{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}               
    244221        <li><label class="cluetip" title="{'UAM_remailtxt2Title'|translate}|{'UAM_remailtxt2Title_d'|translate}">{'UAM_ConfirmMail_ReMail_Txt2'|@translate}</label><br><br>
    245222          <textarea name="UAM_ConfirmMail_ReMail_Txt2" id="UAM_ConfirmMail_ReMail_Txt2" rows="10" cols="80" {$TAG_INPUT_ENABLED}>{$UAM_CONFIRMMAIL_REMAIL_TXT2}</textarea><br>
    246223        </li>
    247   {/if}
    248224{else}
    249225        <li><label class="cluetip" title="{'UAM_remailtxt2Title'|translate}|{'UAM_remailtxt2Title_d'|translate}">{'UAM_ConfirmMail_ReMail_Txt2'|@translate}</label><br><br>
     
    281257        <ul>
    282258{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}
    288259          <li><label class="cluetip" title="{'UAM_gttextTitle'|translate}|{'UAM_gttextTitle_d'|translate}">{'UAM_GhostTracker_ReminderText'|@translate}</label><br><br>
    289260            <textarea name="UAM_GhostTracker_ReminderText" id="UAM_GhostTracker_ReminderText" rows="10" cols="80" {$TAG_INPUT_ENABLED}>{$UAM_GHOSTRACKER_REMINDERTEXT}</textarea><br><br>
    290261          </li>
    291   {/if}
    292262{else}
    293263          <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  
    148148            Evolution 1485 - The admin's can choose if the validation of registration have to be sent to users created by them
    149149            Improving obsolete files cleaning
     150            Evolution 1488 - When an admin creates an account an information email is always sent to created user
    150151            Code simplification - All variables are changed from "UserAdvManager" to "UAM"
    151152*/
  • extensions/NBC_UserAdvManager/branches/2.14/include/functions.inc.php

    r5065 r5087  
    9898    }
    9999  }
     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();
     106array_push( $areas,'UAM_MailInfo_Text','UAM_ConfirmMail_Text');
     107
     108if (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
    100125
    101126/* Sending the email with subject and contents */
  • extensions/NBC_UserAdvManager/branches/2.14/language/de_DE/plugin.lang.php

    r5065 r5087  
    9595$lang['GT_Reset'] = 'Geist Tracker neu stellen';
    9696// --------- End: New or revised $lang ---- from version 2.12.2
    97 
    98 
    99 // --------- Starting below: New or revised $lang ---- from version 2.12.7
    100 /* 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.7
    10397
    10498
     
    180174$lang['UAM_No_Comment_Anonymous_false'] = ' Deaktivieren (Standard)';
    181175
    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: &quot;Waiting&quot; for visitors awaiting validation and &quot;Validated&quot; 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 &quot;Waiting&quot; no permission on private categories<br><br>
    201               </li>
    202               <li>
    203 Attribute group &quot;Validated&quot; 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 &quot;Customizing the confirmation email&quot;, 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 &quot;Group for users who have not validated their registration&quot;, select group &quot;Waiting&quot;</li>
    211                 <li>In the &quot;Group for users who have validated their registration&quot;, select group &quot;Validated&quot;</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 &quot;Registration pending validation&quot;) and its description, check only the authorized group &quot;Waiting&quot;</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 &quot;Guest&quot; 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 &quot;Waiting&quot;.<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 &quot;Waiting&quot; and takes place in the group &quot;Validated&quot;. By clicking the &quot;Home&quot;, then he\'s connected to the gallery with full access to private groups and without the information message.
    235             </li>
    236           </ul>';
    237 
    238176$lang['Tab_UserManager'] = 'Tracking Validierungen';
    239177
     
    269207$lang['UAM_Admin_ConfMail_true'] = ' Aktivieren';
    270208$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>
     220Voraussetzung:<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>
     228Etappen:<br><br>
     229A. 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>
     238B. 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>';
    271247// --------- End: New or revised $lang ---- from version 2.14.0
    272248?>
  • extensions/NBC_UserAdvManager/branches/2.14/language/en_UK/plugin.lang.php

    r5065 r5087  
    9595$lang['GT_Reset'] = 'Reset Ghost Tracker';
    9696// --------- End: New or revised $lang ---- from version 2.12.2
    97 
    98 
    99 // --------- Starting below: New or revised $lang ---- from version 2.12.7
    100 /* 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.7
    10397
    10498
     
    181175
    182176$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: &quot;Waiting&quot; for visitors awaiting validation and &quot;Validated&quot; 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 &quot;Waiting&quot; no permission on private categories<br><br>
    201               </li>
    202               <li>
    203 Attribute group &quot;Validated&quot; 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 &quot;Customizing the confirmation email&quot;, 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 &quot;Group for users who have not validated their registration&quot;, select group &quot;Waiting&quot;</li>
    211                 <li>In the &quot;Group for users who have validated their registration&quot;, select group &quot;Validated&quot;</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 &quot;Registration pending validation&quot;) and its description, check only the authorized group &quot;Waiting&quot;</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 &quot;Waiting&quot;.<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 &quot;Waiting&quot; and takes place in the group &quot;Validated&quot;. By clicking the &quot;Home&quot;, then he\'s connected to the gallery with full access to private groups and without the information message.
    235             </li>
    236           </ul>';
    237177
    238178$lang['Tab_UserManager'] = 'Tracking validations';
     
    269209$lang['UAM_Admin_ConfMail_true'] = ' Enable';
    270210$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>
     221Prerequisite:<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>
     229Stages:<br><br>
     230A. 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>
     239B. 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>';
    271248// --------- End: New or revised $lang ---- from version 2.14.0
    272249?>
  • extensions/NBC_UserAdvManager/branches/2.14/language/es_ES/plugin.lang.php

    r5065 r5087  
    9595$lang['GT_Reset'] = 'Perdí Ghost Tracker';
    9696// --------- End: New or revised $lang ---- from version 2.12.2
    97 
    98 
    99 // --------- Starting below: New or revised $lang ---- from version 2.12.7
    100 /* 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.7
    10397
    10498
     
    180174$lang['UAM_No_Comment_Anonymous_false'] = ' Desactivar (por defecto)';
    181175
    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: &quot;Waiting&quot; for visitors awaiting validation and &quot;Validated&quot; 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 &quot;Waiting&quot; no permission on private categories<br><br>
    201               </li>
    202               <li>
    203 Attribute group &quot;Validated&quot; 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 &quot;Customizing the confirmation email&quot;, 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 &quot;Group for users who have not validated their registration&quot;, select group &quot;Waiting&quot;</li>
    211                 <li>In the &quot;Group for users who have validated their registration&quot;, select group &quot;Validated&quot;</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 &quot;Registration pending validation&quot;) and its description, check only the authorized group &quot;Waiting&quot;</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 &quot;Waiting&quot;.<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 &quot;Waiting&quot; and takes place in the group &quot;Validated&quot;. By clicking the &quot;Home&quot;, 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';
    237177
    238178$lang['Tab_UserManager'] = 'Seguimiento de las Validaciones';
     
    269209$lang['UAM_Admin_ConfMail_true'] = ' Activar';
    270210$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>
     221Requisito 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>
     229Etapas:<br><br>
     230A. 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>
     239B. 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>';
    271248// --------- End: New or revised $lang ---- from version 2.14.0
    272249?>
  • extensions/NBC_UserAdvManager/branches/2.14/language/fr_FR/plugin.lang.php

    r5065 r5087  
    9595$lang['GT_Reset'] = 'Initialisation Ghost Tracker';
    9696// --------- End: New or revised $lang ---- from version 2.12.2
    97 
    98 
    99 // --------- Starting below: New or revised $lang ---- from version 2.12.7
    100 /* 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.7
    10397
    10498
     
    182176
    183177$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: &quot;Attente&quot; pour les visiteur en attente de validation et &quot;Validés&quot; 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 &quot;Attente&quot; aucune permission sur les catégories privées<br><br>
    202               </li>
    203               <li>
    204 Attribuer au groupe &quot;Validés&quot; 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 &quot;Personnalisation de l\'email confirmation&quot;, 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 &quot;Groupe pour les utilisateurs n\'ayant pas validé leur inscription&quot;, sélectionner le groupe &quot;Attente&quot;</li>
    212                 <li>Dans la liste &quot;Groupe pour les utilisateurs ayant validé leur inscription&quot;, sélectionner le groupe &quot;Validés&quot;</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 &quot;Bloc personnel : Affiche un bloc personnel (un édito par exemple)&quot;</li>
    221                 <li>Dans la configuration du module, outre son titre (ex : &quot;Inscription en attente de validation&quot;) et sa description, cocher uniquement le groupe autorisé &quot;Attente&quot;</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 &quot;Guest&quot; 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 &quot;Attente&quot;.<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 &quot;Attente&quot; et le place dans le groupe &quot;Validés&quot;. En cliquant sur le bouton &quot;Home&quot;, 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>';
    238178
    239179$lang['Tab_UserManager'] = 'Suivi des validations';
     
    269209$lang['UAM_Admin_ConfMail_true'] = ' Activer';
    270210$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 &quot;Attente&quot;<br>
     217            - A la validation : Le passer automatiquement du groupe &quot;Attente&quot; au groupe &quot;Validés&quot;, 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 &quot;Guest&quot; ne voit que les catégories publiques, sans message d\'information.</span>
     219            </li><br><br>
     220            <li>
     221Pré-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 : &quot;Attente&quot;, sans aucune permission sur les catégories privées, et &quot;Validés&quot;, 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 &quot;Bloc personnel&quot;<br>
     226- En option, le plugin Extended Description, pour le support multi-langues<br>
     227            </li><br><br>
     228              <li>
     229Réalisation:<br><br>
     230A. Dans le plugin NBC_UAM:
     231              <ol>
     232                <li>Activer la confirmation d\'inscription</li>
     233                <li>Saisir un &quot;texte d\'accueil personnalisé&quot; 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 &quot;Attente&quot; à la rubrique &quot;Pour les utilisateurs n\'ayant pas validé leur inscription&quot;</li>
     235                <li>Sélectionner le groupe &quot;Validés&quot; à la rubrique &quot;Pour les utilisateurs ayant validé leur inscription&quot;</li>
     236                <li>Enregistrer la configuration du plugin</li>
     237              </ol>
     238              </li><br>
     239B. Dans le plugin PWG Stuffs:
     240              <ol>
     241                <li>Ajouter un nouveau module de type &quot;Bloc personnel : Affiche un bloc personnel (un édito par exemple)&quot;</li>
     242                <li>Configurer le module, en indiquant son titre (ex : &quot;Inscription en attente de validation&quot;) et sa description, et cocher uniquement&quot;Attente&quot; 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 &quot;Afficher le module sur la page d\'accueil du site&quot;</li>
     245                <li>Valider la configuration du module</li>
     246              </ol>
     247          </ul>';
    271248// --------- End: New or revised $lang ---- from version 2.14.0
    272249?>
  • extensions/NBC_UserAdvManager/branches/2.14/language/it_IT/plugin.lang.php

    r5065 r5087  
    1111
    1212/* 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:';
    1414$lang['User: %s'] = 'Utente: %s';
    1515$lang['Password: %s'] = 'Password: %s';
     
    2020$lang['title_confirm_mail'] = 'Confermare la vostra iscrizzione';
    2121$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>';
    2323
    2424
    2525/* Errors and Warnings */
    2626$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> ';
    2828$lang['Err_audit_username_char'] = '<b>Questo conto utente utilizza uno o più caratteri vietati:</b> ';
    2929$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 account utente direttamente nella tabella ###_USERS';
    31 $lang['UAM_Empty Author'] = 'Il campo autore devono essere riempiti per inviare 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.';
    3232if ( isset($conf_UAM[1]) and $conf_UAM[1] == 'true' )
    33         $lang['reg_err_login5'] = 'Nome utente esistono già, il nome di richiamo è case insensitive (Shift = Tiny).';
    34 $lang['reg_err_login6'] = 'Nome utente non deve corrispondere i seguenti caratteri: ';
    35 $lang['reg_err_login7'] = 'Il tuo provider di posta elettronica è vietato per la registrazione. Vietato provider di posta elettronica sono 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: ';
    3636$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]';
    3838$lang['invalid_pwd'] = 'Nome utente o password non validi!';
    39 $lang['No_validation_for_Guest'] = '"Guest" conto non è soggetta a convalida';
    40 $lang['No_validation_for_default_user'] = 'L\'account predefinito non è soggetta a convalida';
    41 $lang['No_validation_for_Webmaster'] = '"Webmaster" conto non è soggetta a convalida';
    42 $lang['No_validation_for_your_account'] = 'Il tuo account admin Personnal non è soggetta a 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.';
    4444
    4545
    4646/* 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';
    4949$lang['%d_Reminder_Sent'] = '%d messaggio di promemoria è stato inviato';
    5050$lang['%d_Reminders_Sent'] = '%d messaggi di promemoria sono stati inviati';
    5151$lang['%d_Validated_User'] = '%d utente convalidato manualmente';
    52 $lang['%d_Validated_Users'] = '%d utenti convalidato manualmente';
     52$lang['%d_Validated_Users'] = '%d utenti convalidati manualmente';
    5353
    5454
    5555/* Action button names */
    56 $lang['Delete_selected'] = 'Eliminare';
     56$lang['Delete_selected'] = 'Cancellare';
    5757$lang['Mail_without_key'] = 'Promemoria senza chiave';
    5858$lang['Mail_with_key'] = 'Promemoria con chiave';
    59 $lang['Force_Validation'] = 'Forzati di convalida';
     59$lang['Force_Validation'] = 'Convalida forzata';
    6060
    6161
     
    6464// --------- Starting below: New or revised $lang ---- from version 2.12.0 and 2.12.1
    6565/* Global Configuration Tab */
    66 $lang['PasswordTest'] = 'Calcolo punteggio';
     66$lang['PasswordTest'] = 'Calcolo del punteggio';
    6767/* Ghost Tracker Tab */
    6868$lang['Tab_GhostTracker'] = 'Ghost Tracker';
    69 $lang['LastVisit_Date'] = 'Ultima visita';
     69$lang['LastVisit_Date'] = 'Data ultima visita';
    7070$lang['Reminder'] = 'E-mail di sollecito';
    7171$lang['Reminder_Sent_OK'] = 'SI';
     
    7373/* Errors and Warnings */
    7474$lang['UAM_save_config'] ='Configurazione salvata.';
    75 $lang['reg_err_login3'] = 'Security: 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 e numeri<br>
    78 - Usare maiuscole e minuscole<br>
    79 - Aumentare la sua lunghezza (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 da GhostTracker';
    82 $lang['No_reminder_for_default_user'] = 'L\'account predefinito non è soggetto a ricevere i promemoria da GhostTracker';
    83 $lang['No_reminder_for_Webmaster'] = '"Webmaster" conto non è soggetto a ricevere i promemoria da GhostTracker';
    84 $lang['No_reminder_for_your_account'] = 'Il tuo account admin Personnal non è soggetto a ricevere i promemoria da GhostTracker';
     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>
     80Il 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';
    8585/* 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';
    8888// --------- End: New or revised $lang ---- from version 2.12.0 and 2.12.1
    8989
     
    9191// --------- Starting below: New or revised $lang ---- from version 2.12.2
    9292/* Errors and Warnings */
    93 $lang['GhostTracker_Init_OK'] = 'GhostTracker reset fatto!';
     93$lang['GhostTracker_Init_OK'] = 'Inizzializzazione GhostTracker eseguita!';
    9494/* Action button names */
    95 $lang['GT_Reset'] = 'Reset Ghost Tracker';
     95$lang['GT_Reset'] = 'Reset del GhostTracker';
    9696// --------- End: New or revised $lang ---- from version 2.12.2
    97 
    98 
    99 // --------- Starting below: New or revised $lang ---- from version 2.12.7
    100 /* 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.7
    10397
    10498
     
    180174$lang['UAM_No_Comment_Anonymous_false'] = ' Disattivare (predefinito)';
    181175
    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: &quot;Waiting&quot; for visitors awaiting validation and &quot;Validated&quot; 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 &quot;Waiting&quot; no permission on private categories<br><br>
    201               </li>
    202               <li>
    203 Attribute group &quot;Validated&quot; 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 &quot;Customizing the confirmation email&quot;, 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 &quot;Group for users who have not validated their registration&quot;, select group &quot;Waiting&quot;</li>
    211                 <li>In the &quot;Group for users who have validated their registration&quot;, select group &quot;Validated&quot;</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 &quot;Registration pending validation&quot;) and its description, check only the authorized group &quot;Waiting&quot;</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 &quot;Waiting&quot;.<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 &quot;Waiting&quot; and takes place in the group &quot;Validated&quot;. By clicking the &quot;Home&quot;, 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)';
    237177
    238178$lang['Tab_UserManager'] = 'Tracciamento convalide';
     
    269209$lang['UAM_Admin_ConfMail_true'] = ' Consentire';
    270210$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>
     221Prerequisito:<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>
     229Tappe:<br><br>
     230A. 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>
     239B. 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>';
    271248// --------- End: New or revised $lang ---- from version 2.14.0
    272249?>
  • extensions/NBC_UserAdvManager/branches/2.14/maintain.inc.php

    r5065 r5087  
    280280function upgrade_213()
    281281{
    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');
    283287
    284288  $query = '
    285289UPDATE '.CONFIG_TABLE.'
    286   SET value = "'.addslashes(serialize($data)).'"
     290  SET value = "'.addslashes(serialize($upgrade_UAM)).'"
    287291  WHERE param = "nbc_UserAdvManager"
    288292;';
Note: See TracChangeset for help on using the changeset viewer.