Changeset 13124


Ignore:
Timestamp:
Feb 12, 2012, 2:47:54 PM (12 years ago)
Author:
Eric
Message:

Merged from trunk to branch 2.30

Location:
extensions/UserAdvManager/branches/2.30
Files:
2 added
21 edited

Legend:

Unmodified
Added
Removed
  • extensions/UserAdvManager/branches/2.30/admin/UAM_admin.php

    r12667 r13124  
    3636$UAM_Illegal_Flag_Error2 = false;
    3737$UAM_Illegal_Flag_Error3 = false;
     38$UAM_Email_Mandatory_Check = false;
    3839
    3940$dump_download = '';
     
    5253               $my_base_url.'&tab=global');
    5354  $tabsheet->add('userlist',
    54                  l10n('UAM_Tab_UserList'),
     55                 l10n('UAM_Tracking registered users'),
    5556                 $my_base_url.'&tab=userlist');
    5657$tabsheet->add('usermanager',
    57                l10n('UAM_Tab_UserManager'),
     58               l10n('UAM_Tracking confirmations'),
    5859               $my_base_url.'&tab=usermanager');
    5960$tabsheet->add('ghosttracker',
     
    516517                        )
    517518          );
     519  }
     520
     521  // Check if emails are mandatory for registrations (needed for email exclusion option)
     522  // -----------------------------------------------------------------------------------
     523  if (!$conf['obligatory_user_mail_address'])
     524  {
     525    $UAM_Email_Mandatory_Check = true;
    518526  }
    519527
     
    605613    'UAM_ERROR_REPORTS3'             => $UAM_Illegal_Flag_Error2,
    606614    'UAM_ERROR_REPORTS4'             => $UAM_Illegal_Flag_Error3,
     615    'UAM_EMAIL_MANDATORY'            => $UAM_Email_Mandatory_Check,
    607616                'UAM_CONFIRMMAIL_TIMEOUT_TRUE'   => $conf_UAM_ConfirmMail[0]=='true' ?  'checked="checked"' : '' ,
    608617                'UAM_CONFIRMMAIL_TIMEOUT_FALSE'  => $conf_UAM_ConfirmMail[0]=='false' ?  'checked="checked"' : '' ,
  • extensions/UserAdvManager/branches/2.30/admin/template/global.tpl

    r12667 r13124  
    123123     
    124124          <li>
     125          {if $UAM_EMAIL_MANDATORY}
     126            <label class="cluetip" title="{'UAM_MailExclusion'|translate}|{'UAM_mailexcTitle_d'|translate}">
     127              {'UAM_MailExclusion_No'|@translate}
     128            </label>
     129
     130            <div class="uam_hide">
     131            <br><br>
     132              <input type="radio" value="false" {$UAM_MAILEXCLUSION_FALSE} name="UAM_MailExclusion">
     133                {'UAM_Disable'|@translate}
     134            <br>
     135              <input type="radio" value="true" {$UAM_MAILEXCLUSION_TRUE} name="UAM_MailExclusion">
     136                {'UAM_MailExclusion_true'|@translate}
     137            <br><br>
     138            </div>
     139          {else}
    125140            <label class="cluetip" title="{'UAM_MailExclusion'|translate}|{'UAM_mailexcTitle_d'|translate}">
    126141              {'UAM_MailExclusion'|@translate}
    127142            </label>
    128           <br><br>
    129             <input type="radio" value="false" {$UAM_MAILEXCLUSION_FALSE} name="UAM_MailExclusion">
    130               {'UAM_Disable'|@translate}
    131           <br>
    132             <input type="radio" value="true" {$UAM_MAILEXCLUSION_TRUE} name="UAM_MailExclusion">
    133               {'UAM_MailExclusion_true'|@translate}
    134           <br><br>
    135           </li>
     143
     144            <br><br>
     145              <input type="radio" value="false" {$UAM_MAILEXCLUSION_FALSE} name="UAM_MailExclusion">
     146                {'UAM_Disable'|@translate}
     147            <br>
     148              <input type="radio" value="true" {$UAM_MAILEXCLUSION_TRUE} name="UAM_MailExclusion">
     149                {'UAM_MailExclusion_true'|@translate}
     150            <br><br>
    136151
    137152          {if $UAM_ERROR_REPORTS1}     
     
    146161            <br><br>
    147162          {/if}
     163          {/if}
     164          </li>
    148165        </ul>
    149166      </fieldset>
     
    165182      <fieldset>
    166183        <ul>
    167           <li>
    168             <label class="cluetip" title="{'UAM_Mail_Info'|translate}|{'UAM_infomailTitle_d'|translate}">
    169               {'UAM_Mail_Info'|@translate}
    170             </label>
    171           <br><br>
    172             <input type="radio" value="false" {$UAM_MAIL_INFO_FALSE} name="UAM_Mail_Info">
    173               {'UAM_Disable'|@translate}
    174           <br>
    175             <input type="radio" value="true" {$UAM_MAIL_INFO_TRUE} name="UAM_Mail_Info">
    176               {'UAM_Enable'|@translate}
    177           <br><br>
    178           </li>
    179 
    180         {if $UAM_MAIL_INFO_FALSE}
    181           <div class="uam_hide">
    182         {/if}
    183 
    184           <fieldset>
    185             <ul>
    186               <li>
    187                 <label class="cluetip" title="{'UAM_HidePassw'|translate}|{'UAM_HidePasswTitle_d'|translate}">
    188                   {'UAM_HidePassw'|@translate}
    189                 </label>
    190               <br><br>
    191                 <input type="radio" value="false" {$UAM_HIDEPASSW_FALSE} name="UAM_HidePassw">
    192                   {'UAM_Disable'|@translate}
    193               <br>
    194                 <input type="radio" value="true" {$UAM_HIDEPASSW_TRUE} name="UAM_HidePassw">
    195                   {'UAM_Enable'|@translate}
    196               <br><br>
    197               </li>
    198          
    199               <li>
    200                 <label class="cluetip" title="{'UAM_MailInfo_Text'|translate}|{'UAM_infotxtTitle_d'|translate}">
    201                   {'UAM_MailInfo_Text'|@translate}
    202                 </label>
    203               <br><br>
    204                 <textarea class="uam_textfields" name="UAM_MailInfo_Text" id="UAM_MailInfo_Text" rows="10" {$TAG_INPUT_ENABLED}>{$UAM_MAILINFO_TEXT}</textarea>
    205               <br><br>
    206               </li>
    207 <!--
    208             {* if 'FCK_PATH'|@defined *}
    209               <div style="text-align:right;">
    210                 <a href="#" onClick="toogleEditor('UAM_MailInfo_Text'); return false;">FCK Editor On/Off</a>
    211               </div>
    212             {* /if *}
    213 -->
    214             </ul>
    215           </fieldset>
    216 
    217         {if $UAM_MAIL_INFO_FALSE}
    218           </div>
    219         {/if}
    220 
    221184                <li>
    222185            <label class="cluetip" title="{'UAM_Confirm_Mail'|translate}|{'UAM_confirmmailTitle_d'|translate}">
     
    238201          <div class="uam_hide">
    239202        {/if}
     203            <ul>
     204                    <li>
     205                <label class="cluetip" title="{'UAM_Stuffs'|translate}|{'UAM_StuffsTitle_d'|translate}">
     206                  {'UAM_Stuffs'|@translate}
     207                </label>
     208              <br><br>
     209                <input type="radio" value="false" {$UAM_STUFFS_FALSE} name="UAM_Stuffs">
     210                  {'UAM_Disable'|@translate}
     211              <br>
     212                <input type="radio" value="true" {$UAM_STUFFS_TRUE} name="UAM_Stuffs">
     213                  {'UAM_Enable'|@translate}
     214              <br><br>
     215              </li>
     216
     217                    <li>
     218                <label class="cluetip" title="{'UAM_AdminConfMail'|translate}|{'UAM_adminconfmailTitle_d'|translate}">
     219                  {'UAM_AdminConfMail'|@translate}
     220                </label>
     221              <br><br>
     222                <input type="radio" value="false" {$UAM_ADMINCONFMAIL_FALSE} name="UAM_Admin_ConfMail">
     223                  {'UAM_Disable'|@translate}
     224              <br>
     225                <input type="radio" value="true" {$UAM_ADMINCONFMAIL_TRUE} name="UAM_Admin_ConfMail">
     226                  {'UAM_Enable'|@translate}
     227              <br><br>
     228              </li>
     229            </ul>
    240230
    241231          <fieldset>
    242232          <ul>
    243                   <li>
    244               <label class="cluetip" title="{'UAM_Stuffs'|translate}|{'UAM_StuffsTitle_d'|translate}">
    245                 {'UAM_Stuffs'|@translate}
    246               </label>
    247             <br><br>
    248               <input type="radio" value="false" {$UAM_STUFFS_FALSE} name="UAM_Stuffs">
    249                 {'UAM_Disable'|@translate}
    250             <br>
    251               <input type="radio" value="true" {$UAM_STUFFS_TRUE} name="UAM_Stuffs">
    252                 {'UAM_Enable'|@translate}
    253             <br><br>
    254             </li>
    255 
    256233            <li>
    257234              <label class="cluetip" title="{'UAM_AdminValidationMail_Text'|translate}|{'UAM_AdminValidationMail_d'|translate}">
     
    265242
    266243          <ul>
    267                   <li>
    268               <label class="cluetip" title="{'UAM_AdminConfMail'|translate}|{'UAM_adminconfmailTitle_d'|translate}">
    269                 {'UAM_AdminConfMail'|@translate}
    270               </label>
    271             <br><br>
    272               <input type="radio" value="false" {$UAM_ADMINCONFMAIL_FALSE} name="UAM_Admin_ConfMail">
    273                 {'UAM_Disable'|@translate}
    274             <br>
    275               <input type="radio" value="true" {$UAM_ADMINCONFMAIL_TRUE} name="UAM_Admin_ConfMail">
    276                 {'UAM_Enable'|@translate}
    277             <br><br>
    278             </li>
    279            
    280244            <li>
    281245              <label class="cluetip" title="{'UAM_ConfirmMail_Text'|translate}|{'UAM_confirmtxtTitle_d'|translate}">
     
    754718        <ul>
    755719          <li>
    756             <label><b>{'UAM_MiscOptions'|@translate}</b></label>
     720            <label class="cluetip" title="{'UAM_Mail_Info'|translate}|{'UAM_infomailTitle_d'|translate}">
     721              {'UAM_Mail_Info'|@translate}
     722            </label>
     723          <br><br>
     724            <input type="radio" value="false" {$UAM_MAIL_INFO_FALSE} name="UAM_Mail_Info">
     725              {'UAM_Disable'|@translate}
     726          <br>
     727            <input type="radio" value="true" {$UAM_MAIL_INFO_TRUE} name="UAM_Mail_Info">
     728              {'UAM_Enable'|@translate}
     729          <br><br>
    757730          </li>
    758731        </ul>
     732      {if $UAM_MAIL_INFO_FALSE}
     733        <div class="uam_hide">
     734      {/if}
     735
    759736        <fieldset>
    760737          <ul>
    761738            <li>
    762               <label class="cluetip" title="{'UAM_LastVisit'|translate}|{'UAM_lastvisitTitle_d'|translate}">
    763                 {'UAM_LastVisit'|@translate}
     739              <label class="cluetip" title="{'UAM_HidePassw'|translate}|{'UAM_HidePasswTitle_d'|translate}">
     740                {'UAM_HidePassw'|@translate}
    764741              </label>
    765742            <br><br>
    766               <input type="radio" value="false" {$UAM_ADDLASTVISIT_FALSE} name="UAM_Add_LastVisit_Column">
     743              <input type="radio" value="false" {$UAM_HIDEPASSW_FALSE} name="UAM_HidePassw">
    767744                {'UAM_Disable'|@translate}
    768745            <br>
    769               <input type="radio" value="true" {$UAM_ADDLASTVISIT_TRUE} name="UAM_Add_LastVisit_Column">
     746              <input type="radio" value="true" {$UAM_HIDEPASSW_TRUE} name="UAM_HidePassw">
    770747                {'UAM_Enable'|@translate}
    771748            <br><br>
     
    773750
    774751            <li>
    775               <label class="cluetip" title="{'UAM_RedirToProfile'|translate}|{'UAM_RedirTitle_d'|translate}">
    776                 {'UAM_RedirToProfile'|@translate}
     752              <label class="cluetip" title="{'UAM_MailInfo_Text'|translate}|{'UAM_infotxtTitle_d'|translate}">
     753                {'UAM_MailInfo_Text'|@translate}
    777754              </label>
    778755            <br><br>
    779               <input type="radio" value="false" {$UAM_REDIRTOPROFILE_FALSE} name="UAM_RedirToProfile">
    780                 {'UAM_Disable'|@translate}
    781             <br>
    782               <input type="radio" value="true" {$UAM_REDIRTOPROFILE_TRUE} name="UAM_RedirToProfile">
    783                 {'UAM_Enable'|@translate}
     756              <textarea class="uam_textfields" name="UAM_MailInfo_Text" id="UAM_MailInfo_Text" rows="10" {$TAG_INPUT_ENABLED}>{$UAM_MAILINFO_TEXT}</textarea>
    784757            <br><br>
    785758            </li>
    786 
    787             <li>
    788               <label class="cluetip" title="{'UAM_PwdReset'|translate}|{'UAM_PwdResetTitle_d'|translate}">
    789                 {'UAM_PwdReset'|@translate}
    790               </label>
    791             <br><br>
    792               <input type="radio" value="false" {$UAM_PWDRESET_FALSE} name="UAM_PwdReset">
    793                 {'UAM_Disable'|@translate}
    794             <br>
    795               <input type="radio" value="true" {$UAM_PWDRESET_TRUE} name="UAM_PwdReset">
    796                 {'UAM_Enable'|@translate}
    797             <br><br>
    798             </li>
     759<!--
     760            {* if 'FCK_PATH'|@defined *}
     761              <div style="text-align:right;">
     762                <a href="#" onClick="toogleEditor('UAM_MailInfo_Text'); return false;">FCK Editor On/Off</a>
     763              </div>
     764            {* /if *}
     765-->
    799766          </ul>
    800767        </fieldset>
    801768
    802         <fieldset>
    803           <ul>
    804             <li>
    805               <label class="cluetip" title="{'UAM_CustomPasswRetr'|translate}|{'UAM_CustomPasswRetrTitle_d'|translate}">
    806                 {'UAM_CustomPasswRetr'|@translate}
    807               </label>
    808             <br><br>
    809               <input type="radio" value="false" {$UAM_CUSTOMPASSWRETR_FALSE} name="UAM_CustomPasswRetr">
    810                 {'UAM_Disable'|@translate}
    811             <br>
    812               <input type="radio" value="true" {$UAM_CUSTOMPASSWRETR_TRUE} name="UAM_CustomPasswRetr">
    813                 {'UAM_Enable'|@translate}
    814             <br><br><br>
    815               <textarea class="uam_textfields" name="UAM_CustomPasswRetr_Text" id="UAM_CustomPasswRetr_Text" rows="10" {$TAG_INPUT_ENABLED}>{$UAM_CUSTOMPASSWRETR_TEXT}</textarea>
    816             <br><br>
    817             </li>
    818           </ul>
    819         </fieldset>
     769      {if $UAM_MAIL_INFO_FALSE}
     770        </div>
     771      {/if}
     772      </fieldset>
     773
     774      <fieldset>
     775        <ul>
     776          <li>
     777            <label class="cluetip" title="{'UAM_Tracking registered users'|translate}|{'UAM_Tracking registered users_d'|translate}">
     778              {'UAM_Tracking registered users'|@translate}
     779            </label>
     780          <br><br>
     781            <input type="radio" value="false" {$UAM_ADDLASTVISIT_FALSE} name="UAM_Add_LastVisit_Column">
     782              {'UAM_Disable'|@translate}
     783          <br>
     784            <input type="radio" value="true" {$UAM_ADDLASTVISIT_TRUE} name="UAM_Add_LastVisit_Column">
     785              {'UAM_Enable'|@translate}
     786          <br><br>
     787          </li>
     788
     789          <li>
     790            <label class="cluetip" title="{'UAM_RedirToProfile'|translate}|{'UAM_RedirTitle_d'|translate}">
     791              {'UAM_RedirToProfile'|@translate}
     792            </label>
     793          <br><br>
     794            <input type="radio" value="false" {$UAM_REDIRTOPROFILE_FALSE} name="UAM_RedirToProfile">
     795              {'UAM_Disable'|@translate}
     796          <br>
     797            <input type="radio" value="true" {$UAM_REDIRTOPROFILE_TRUE} name="UAM_RedirToProfile">
     798              {'UAM_Enable'|@translate}
     799          <br><br>
     800          </li>
     801
     802          <li>
     803            <label class="cluetip" title="{'UAM_PwdReset'|translate}|{'UAM_PwdResetTitle_d'|translate}">
     804              {'UAM_PwdReset'|@translate}
     805            </label>
     806          <br><br>
     807            <input type="radio" value="false" {$UAM_PWDRESET_FALSE} name="UAM_PwdReset">
     808              {'UAM_Disable'|@translate}
     809          <br>
     810            <input type="radio" value="true" {$UAM_PWDRESET_TRUE} name="UAM_PwdReset">
     811              {'UAM_Enable'|@translate}
     812          <br><br>
     813          </li>
     814        </ul>
     815      </fieldset>
     816
     817      <fieldset>
     818        <ul>
     819          <li>
     820            <label class="cluetip" title="{'UAM_CustomPasswRetr'|translate}|{'UAM_CustomPasswRetrTitle_d'|translate}">
     821              {'UAM_CustomPasswRetr'|@translate}
     822            </label>
     823          <br><br>
     824            <input type="radio" value="false" {$UAM_CUSTOMPASSWRETR_FALSE} name="UAM_CustomPasswRetr">
     825              {'UAM_Disable'|@translate}
     826          <br>
     827            <input type="radio" value="true" {$UAM_CUSTOMPASSWRETR_TRUE} name="UAM_CustomPasswRetr">
     828              {'UAM_Enable'|@translate}
     829          <br><br><br>
     830            <textarea class="uam_textfields" name="UAM_CustomPasswRetr_Text" id="UAM_CustomPasswRetr_Text" rows="10" {$TAG_INPUT_ENABLED}>{$UAM_CUSTOMPASSWRETR_TEXT}</textarea>
     831          <br><br>
     832          </li>
     833        </ul>
    820834      </fieldset>
    821835    </div>
  • extensions/UserAdvManager/branches/2.30/admin/template/userlist.tpl

    r12667 r13124  
    3939
    4040<div class="titrePage">
    41   <h2>{'UAM_Title_Tab'|@translate} {$UAM_VERSION}<br>{'UAM_SubTitle5'|@translate}</h2>
     41  <h2>{'UAM_Title_Tab'|@translate} {$UAM_VERSION}<br>{'UAM_Tracking registered users'|@translate}</h2>
    4242</div>
    4343
    4444<form method="post" action="" class="general">
    4545  <fieldset>
    46         <legend class="cluetip" title="{'UAM_UserList_Title'|translate}|{'UAM_userlistTitle_d'|translate}">{'UAM_UserList_Title'|@translate}</legend>
     46        <legend class="cluetip" title="{'UAM_Tracking registered users'|translate}|{'UAM_userlistTitle_d'|translate}">{'UAM_Tracking registered users'|@translate}</legend>
    4747    {if count($users) > 0}
    4848      <table id="sorting" class="table2" width="97%" summary="">
  • extensions/UserAdvManager/branches/2.30/admin/template/usermanager.tpl

    r12667 r13124  
    2626
    2727<div class="titrePage">
    28   <h2>{'UAM_Title_Tab'|@translate} {$UAM_VERSION}<br>{'UAM_SubTitle3'|@translate}</h2>
     28  <h2>{'UAM_Title_Tab'|@translate} {$UAM_VERSION}<br>{'UAM_Tracking confirmations'|@translate}</h2>
    2929</div>
    3030
    3131<form method="post" action="" class="general">
    3232  <fieldset>
    33         <legend class="cluetip" title="{'UAM_UserManager_Title'|translate}|{'UAM_usermanTitle_d'|translate}">{'UAM_UserManager_Title'|@translate}</legend>
     33        <legend class="cluetip" title="{'UAM_Tracking confirmations'|translate}|{'UAM_usermanTitle_d'|translate}">{'UAM_Tracking confirmations'|@translate}</legend>
    3434    {if count($users) > 0}
    3535      <table id="sorting" class="table2" width="97%" summary="">
  • extensions/UserAdvManager/branches/2.30/changelog.txt.php

    r12667 r13124  
    276276
    277277-- 2.30.2 : Bug 2456 fixed - New feature : Avoid user connexion to the gallery until there has been no validation of registration. Users are redirected to a customizable content page.
     278
     279-- 2.30.3 : Bug 2524 fixed - The "Information email" option has been moved to "misc options" section of admin panel
     280            Bug 2525 fixed - "Obligatory email for registrations" option is checked before using the email exclusion option
     281            Bug 2526 fixed - "PWG stuff" option has been moved one step higher in admin panel
     282            Bug 2527 fixed - "Confirmation for admins" option has been moved one step higher in admin panel
     283            Bug 2528 fixed - The word "validation" for "registration validation" has been replaced by "confirmation"
     284            Bug 2569 fixed - Missing connexion rejected page
    278285*/
    279286?>
  • extensions/UserAdvManager/branches/2.30/language/de_DE/help.lang.php

    r12667 r13124  
    22global $lang;
    33
    4 $lang['UAM_confirmTitle_d'] = '
    5 - Informationen E-Mail generation<br>
     4$lang['UAM_confirmTitle_d'] = '- Informationen E-Mail generation<br>
    65- Registrieren und Validierung E-Mail generation<br>
    76- Gruppen oder Status automatisch Beitritt<br>
     
    2423Der Inhalt der Nachricht gesendet wird von einem anpassbaren Teil komponiert, um eine kleine Begrüßung und Einführung fester Bestandteil in denen die Login, Passwort und E-Mail-Adresse des Benutzers.';
    2524$lang['UAM_confirmgrpTitle'] = 'Validation Gruppen';
    26 $lang['UAM_confirmgrpTitle_d'] = '<b style=&quot;color: red;&quot;>WARNUNG: Validierung Gruppen setzt voraus, dass Sie mindestens einen Benutzer Gruppe angelegt haben und definiert ist &quot;by default&quot; im User-Gruppen Piwigo-Management.</b><br><br>
     25$lang['UAM_confirmgrpTitle_d'] = '<b style=&quot;color: red;&quot;>WARNUNG: Validierung Gruppen setzt voraus, dass Sie mindestens einen Benutzer Gruppe angelegt haben und definiert ist standardmäßig im User-Gruppen Piwigo-Management.</b><br><br>
    2726Die Gruppen sind validiert f&uuml;r den Einsatz in Verbindung mit der &quot;Best&auml;tigung der Anmeldung&quot;';
    2827$lang['UAM_confirmstatTitle'] = 'Validation Satzung';
     
    3130$lang['UAM_remailtxt1Title'] = 'Reminder per E-Mail mit den neuen Schlüssel generiert';
    3231$lang['UAM_remailtxt2Title'] = 'Reminder per E-Mail, ohne dass neue Schlüssel generiert';
    33 $lang['UAM_lastvisitTitle_d'] = 'Dies aktiviert einen Tisch in der &quot;Tracking users&quot;-Reiter, die Mitglieder der Galerie aufgef&uuml;hrt sind und zum Zeitpunkt ihres letzten Besuch und verbrachte Zeit (Tage) seit ihrem letzten Besuch. Die &Uuml;berwachung ist rein informativ f&uuml;r den Administrator der Galerie.';
    3432$lang['UAM_tipsTitle_d'] = 'Tipps und verschiedene Anwendungsbeispiele';
    3533
     
    4341
    4442// --------- Starting below: New or revised $lang ---- from version 2.15.4
    45 $lang['UAM_restricTitle_d'] = '
    46 - Charaktere Ausgrenzung<br>
     43$lang['UAM_restricTitle_d'] = '- Charaktere Ausgrenzung<br>
    4744- Passwort Durchsetzung<br>
    4845- E-Mail-Domänen Ausgrenzung<br>
    4946...
    5047';
    51 $lang['UAM_userlistTitle_d'] = 'Diese Seite gibt es zur Information an den Administrator. Es zeigt eine Liste von allen Nutzern auf der Galerie zeigt das Datum und die Anzahl der Tage seit dem letzten Besuch registriert. Die Liste ist in aufsteigender Reihenfolge der Anzahl der Tage sortiert.
    52 <br><br>
    53 <b><u>Erst wenn der Geist Tracker aktiv ist</u></b>, wird die Anzahl der Tage ohne einen Besuch wie der folgende Farbcode nach dem Maximum in der Geist Tracker Optionen:
    54 <br>
    55 - <b style=&quot;color: lime;&quot;>Grün</b> : Wenn der Benutzer hat die Galerie <b style=&quot;color:lime;&quot;><u>weniger als 50%</u></b> besucht der angegebene H&ouml;chstzahl in der Geist-Tracker.<br>
    56 - <b style=&quot;color: orange;&quot;>Orange</b> : Wenn der Benutzer hat die Galerie <b style=&quot;color:orange;&quot;><u>zwischen 50% und 99%</u></b> besucht der angegebene H&ouml;chstzahl in der Geist-Tracker.<br>
    57 - <b style=&quot;color: red;&quot;>Rot</b> : Wenn der Benutzer hat die Galerie <b style=&quot;color:red;&quot;><u>f&uuml;r mehr als 100%</u></b> besucht der angegebene H&ouml;chstzahl in der Geist-Tracker. <b><u>In diesem Fall muss der Benutzer sich auch in der Geist-Tracker-Tabelle.</u></b><br>
    58 <br>
    59 Beispiel:
    60 <br>
    61 Die Höchstdauer von Geist Tracker ist so konfiguriert, dass 100 Tage.
    62 <br>
    63 Ein Benutzer wird in grün angezeigt, wenn er die Galerie für weniger als 50 Tagen besucht haben, in orange, wenn sein letzter Besuch stattgefunden hat zwischen 50 und 99 Tage und rot für 100 Tage und mehr.
    64 <br><br>
    65 <b>HINWEIS</b>: Die Liste wird nicht angezeigt, die nicht validiert ihrer Registrierung (falls die M&ouml;glichkeit der Validierung der Registrierung aktiviert ist). Diese Benutzer werden dann in besonderer Weise in der &quot;Tracking Validierungen verwaltet&quot; aus.
    66 <br><br>
    67 <b>Die Sortierung der Tabelle Function</b>: Sie können die Daten mit einem Klick auf die Spaltenüberschriften angezeigt. Halten Sie SHIFT-Taste, um Art bis zu 4 gleichzeitige maximale Spalten.';
    68 $lang['UAM_usermanTitle_d'] = 'Wenn die Begrenzung der Frist für die Anmeldung aktiviert ist, finden Sie weiter unten die Liste der Benutzer, deren Validierung Eintragung erwartet wird, <b style=&quot;text-decoration: underline;&quot;>ob oder nicht</b> sind sie in der Zeit zu validieren.<br><br>
     48$lang['UAM_usermanTitle_d'] = 'Wenn die Begrenzung der Frist für die Anmeldung aktiviert ist, finden Sie weiter unten die Liste der Benutzer, deren Validierung Eintragung erwartet wird, <b style="text-decoration: underline;">ob oder nicht</b> sind sie in der Zeit zu validieren.<br><br>
    6949Das Datum der Eintragung wird in grün angezeigt, wenn der Benutzer unter dem betreffenden Frist wird auf seine Registrierung zu bestätigen. In diesem Fall ist die Validierung Schlüssel noch gültig ist, und wir können eine E-Mail mit oder ohne eine neue Validierung Schlüssel zu schicken.<br><br>
    7050Wenn das Datum der Eintragung erscheint in Rot, die Validierung abgelaufen. In diesem Fall müssen Sie eine E-Mail mit der Regeneration der Validierung Schlüssel senden, wenn Sie dem Benutzer die Möglichkeit, ihre Anmeldung bestätigen möchten.<br><br>
     
    8868<br><br>
    8969<b>Die Sortierung der Tabelle Function</b> : Sie können die Daten mit einem Klick auf die Spaltenüberschriften angezeigt. Halten Sie SHIFT-Taste, um Art bis zu 4 gleichzeitige maximale Spalten.';
    90 /*TODO*/$lang['UAM_confirmmailTitle_d'] = 'This option allows a user to either confirm registration by clicking on a link received in an email sent upon registration or the administrator to manually activate the registration.<br><br>
    91 In first case, the e-mail is composed of a customizable part to introduce a little welcome note and a fixed part containing the activation link that is generated from a random key that can possibly regenerate through the &quot;Tracking validations&quot; tab.<br><br>
    92 <br><br>
    93 In second case, <b><u>there is no validation key send by email!</u></b>. Visitors have to wait until an administrator validate them himself in &quot;Validation tracking&quot; tab. It\s recommanded to activate the Piwigo\'s option &quot;Email admins when a new user registers&quot; (see in Piwigo\'s configuration options) and to use the &quot;Information email to user&quot; to warn new registers to wait on their account activation.
    94 <br>
    95 <b style=&quot;color: red;&quot;>NB: Options &quot;Deadline for registration validation limited&quot; and &quot;Remind unvalidated users  &quot; have to be set to off when admin\'s manual validation is enabled.</b>
    96 <br><br>
    97 Diese Option ist in der Regel mit der automatischen Zuordnung der Gruppe und / oder Satzung verwendet. Zum Beispiel, ein Benutzer, der nicht validiert ihre Eintragung in eine bestimmte Gruppe von Nutzern eingestellt werden (mit oder ohne Einschr&auml;nkungen auf der Galerie), w&auml;hrend ein Benutzer, der seine Registrierung best&auml;tigt wird in einem &quot;normalen&quot; Gruppe eingestellt werden.';
     70$lang['UAM_confirmmailTitle_d'] = 'This option allows a user to either confirm registration by clicking on a link received in an email sent upon registration or the administrator to manually activate the registration.<br><br>
     71In first case, the e-mail is composed of a customizable part to introduce a little welcome note and a fixed part containing the activation link that is generated from a random key that can possibly regenerate through the "Tracking validations" tab.<br><br>
     72<br><br>
     73In second case, <b><u>there is no validation key send by email!</u></b>. Visitors have to wait until an administrator validate them himself in "Validation tracking" tab. It\s recommanded to activate the Piwigo\'s option "Email admins when a new user registers" (see in Piwigo\'s configuration options) and to use the "Information email to user" to warn new registers to wait on their account activation.
     74<br>
     75<b style="color: red;">NB: Options "Deadline for registration validation limited" and "Remind unvalidated users  " have to be set to off when admin\'s manual validation is enabled.</b>
     76<br><br>
     77Diese Option ist in der Regel mit der automatischen Zuordnung der Gruppe und / oder Satzung verwendet. Zum Beispiel, ein Benutzer, der nicht validiert ihre Eintragung in eine bestimmte Gruppe von Nutzern eingestellt werden (mit oder ohne Einschränkungen auf der Galerie), während ein Benutzer, der seine Registrierung bestätigt wird in einem "normalen" Gruppe eingestellt werden.';
    9878// --------- End: New or revised $lang ---- from version 2.15.4
    9979
     
    10686
    10787// --------- Starting below: New or revised $lang ---- from version 2.16.0
    108 $lang['UAM_miscTitle_d'] = '
    109 - Automatische oder manuelle Verwaltung von Geist Benutzern<br>
    110 - Gefolgt registrierte Benutzer<br>
     88$lang['UAM_miscTitle_d'] = '- Gefolgt registrierte Benutzer<br>
    11189- Nickname obligatorisch für Gäste Kommentare<br>
    11290...
     
    125103$lang['UAM_GTAutoDelTitle'] = 'Benutzerdefinierte Meldung auf gelöschtes Konto';
    126104$lang['UAM_GTAutoGpTitle'] = 'Automatischer Wechsel der Gruppe / Status';
    127 /*TODO*/$lang['UAM_GTAutoGpTitle_d'] = 'The automatic change of group or status equivalent to a demotion of the accounts involved and working on the same principle as the group or the status of validation (see &quot;Setting confirmations and validations of registration&quot;). Therefore be to define a group and / or status demoting access to the gallery. If this has already been defined with the use of registration confirmation function, you can use the same group / status.<br><br>
    128 <b style=&quot;color: red;&quot;>Important note :</b> If a ghost user still has not heard from after the time limit and despite the automatic notification by email (if enabled), he\'s automatically deleted from the database.';
    129 /*TODO*/$lang['UAM_GTAutoMailTitle_d'] = 'When an account is expired (group / status change demoting the visitor), an email information can be sent to clarify the reasons for this change and the means to recover the initial access to the gallery.
    130 <br>To do this, a link to revalidation of registration is attached to the email (automatic generation of a new validation key).<b style=&quot;color: red;&quot;>If the user has already been notified, his account is automatically destroyed.</b>
    131 <br><br>Enter the custom text that also explain the reasons for the demotion, to accompany the validation link. The custom text is not mandatory but strongly recommended. In fact, your visitors will not appreciate receiving an email containing only a single link without further explanation. ;-)
    132 <br><br>Um mehrere Sprachen zu benutzen, können Sie die Extended description Plugin-Tags verwenden, wenn er aktiv ist.
    133 <br><br><b style=&quot;color: red;&quot;>Warning: The use of this function is intimately associated with the confirmation of registration by the user (confirmation by mail) and can not be activated without this option.</b>';
    134 // --------- End: New or revised $lang ---- from version 2.16.0
     105$lang['UAM_GTAutoGpTitle_d'] = 'Der automatische Wechsel der Gruppe oder den gleichen Status zu einer Degradierung der Konten beteiligt und arbeiten nach dem gleichen Prinzip wie die Gruppe oder den Status der Validierung (finden Sie unter &quot;Einstellen Bestätigungen und Validierungen der Registrierung&quot;). Daher sein, eine Gruppe und / oder Status herabstufen Zugang zur Galerie zu definieren. Wenn dies bereits mit dem Einsatz von Anmeldebestätigung Funktion definiert wurde, können Sie mit dem gleichen Gruppe / Status.<br><br>
     106<b style=&quot;color: red;&quot;>Wichtiger Hinweis:</b> Wenn ein Geist Benutzer hat noch kein von der nach Ablauf der Frist und trotz der automatische Benachrichtigung per E-Mail (wenn aktiviert) gehört, ist er automatisch aus der Datenbank gelöscht.';
     107$lang['UAM_GTAutoMailTitle_d'] = 'Wenn ein Konto abgelaufen ist (Gruppe / Status-Änderung herabstufen den Besucher), kann eine E-Mail-Informationen geschickt, um die Gründe für diese Änderung und die Mittel, um den ersten Zugriff auf die Galerie wieder zu klären.
     108<br>Um dies zu tun, wird ein Link auf die Verlängerung der Registrierung per E-Mail (automatische Generierung eines neuen Validierungsschlüssel) befestigt.<b style=&quot;color: red;&quot;>Wenn der Benutzer bereits angemeldet ist, wird sein Konto automatisch zerstört.</b>
     109<br><br>Geben Sie den Text, die auch eine Erläuterung der Gründe für die Rückstufung, um die Validierung Link zu begleiten. Der Text ist nicht vorgeschrieben, aber dringend empfohlen. In der Tat werden Ihre Besucher nicht zu schätzen Empfang einer E-Mail mit nur einem einzigen Link ohne weitere Erklärung. ;-)
     110<br><br>Um mehrere Sprachen zu benutzen, können Sie die Extended Description Plugin-Tags verwenden, wenn er aktiv ist.
     111<br><br><b style=&quot;color: red;&quot;>Warnung: Nutzung dieser Funktion ist eng mit der Bestätigung der Anmeldung durch den Benutzer (per Mail) verbunden und kann nicht ohne diese Option aktiviert werden.</b>';
    135112
    136113
    137114// --------- Starting below: New or revised $lang ---- from version 2.20.0
    138 /*TODO*/$lang['UAM_validationlimitTitle_d'] = 'Diese Option ermöglicht es, die Gültigkeit der Schlüssel Validierung E-Mail-Grenze geschickt, um neue Registranten. Besucher, wer x Tage Zeit haben, um sich identifizieren, zu registrieren. Nach Ablauf dieser Frist die Validierung Link läuft.
    139 <br><br>
    140 Diese Option ist in Verbindung mit der &quot;Best&auml;tigung der Anmeldung verwendet&quot;
    141 <br><br>
    142 If this option and the option &quot;Erinnern Unvalidierte User&quot; are activated, new options will appear below in this section to enable the automation of unvalidated users management.';
    143 /*TODO*/$lang['UAM_remailTitle_d'] = 'Mit dieser Option k&ouml;nnen Sie eine Erinnerung per E-Mail an registrierte Benutzer zu senden, aber noch nicht best&auml;tigt ihre Eintragung in die Zeit. Es funktioniert also in Verbindung mit der &quot;Best&auml;tigung der Anmeldung&quot;
     115$lang['UAM_validationlimitTitle_d'] = 'Diese Option ermöglicht es, die Gültigkeit der Schlüssel Validierung E-Mail-Grenze geschickt, um neue Registranten. Besucher, wer x Tage Zeit haben, um sich identifizieren, zu registrieren. Nach Ablauf dieser Frist die Validierung Link läuft.
     116<br><br>
     117Diese Option ist in Verbindung mit der "Bestätigung der Anmeldung verwendet"
     118<br><br>
     119If this option and the option "Erinnern Unvalidierte User" are activated, new options will appear below in this section to enable the automation of unvalidated users management.';
     120$lang['UAM_remailTitle_d'] = 'Mit dieser Option können Sie eine Erinnerung per E-Mail an registrierte Benutzer zu senden, aber noch nicht bestätigt ihre Eintragung in die Zeit. Es funktioniert also in Verbindung mit der "Bestätigung der Anmeldung"
    144121<br><br>
    1451222 Arten von E-Mails gesendet werden können: Mit oder ohne Regeneration der Validierung Schlüssel. Gegebenenfalls kann der Inhalt von E-Mails angepasst werden.
    146123<br><br>
    147 Wenden Sie sich an die &quot;Tracking Validierungen&quot; aus.
    148 <br><br>
    149 If this option and the option &quot;Anmeldeschluss Validierung beschränkt&quot; are activated, new options will appear below in this section to enable the automation of unvalidated users management.';
    150 /*TODO*/$lang['UAM_USRAutoTitle_d'] = 'Automatic handling of unvalidated visitors is triggered each time you connect to the gallery and works as follows:
    151 <br><br>
    152 - Automatic deletion of accounts not validated in the allotted time without sending automatic email reminder -> &quot;Deadline for registration validation limited&quot; <b><u>enabled</u></b> and &quot;Remind unvalidated users&quot; <b><u>disabled</u></b>.
    153 <br><br>
    154 - Automatically sending a reminder message with a new generation of validation key and automatic deletion of accounts not validated in the time after sending the reminder -> &quot;Deadline for registration validation limited&quot; <b><u>enabled</u></b> et &quot;Remind unvalidated users&quot; <b><u>enabled</u></b>.';
    155 /*TODO*/$lang['UAM_USRAutoMailTitle_d'] = 'When activated, this function will automatically send personalized content in &quot;Reminder email with new key generated&quot; to visitors who match criteria.';
    156 /*TODO*/$lang['UAM_StuffsTitle_d'] = 'This enables an additional UAM block in PWG Stuffs plugin (if installed) to inform your visitors who did not validate their registration about their condition.
    157 <br><br>
    158 Please refer to the <b>Tipps und Beispiele</b> at the bottom of this page for details.';
    159 // --------- End: New or revised $lang ---- from version 2.20.0
     124Wenden Sie sich an die "Tracking Validierungen" aus.
     125<br><br>
     126If this option and the option "Anmeldeschluss Validierung beschränkt" are activated, new options will appear below in this section to enable the automation of unvalidated users management.';
     127$lang['UAM_USRAutoTitle_d'] = 'Automatic handling of unvalidated visitors is triggered each time you connect to the gallery and works as follows:
     128<br><br>
     129- Automatic deletion of accounts not validated in the allotted time without sending automatic email reminder -> "Deadline for registration validation limited" <b><u>enabled</u></b> and "Remind unvalidated users" <b><u>disabled</u></b>.
     130<br><br>
     131- Automatically sending a reminder message with a new generation of validation key and automatic deletion of accounts not validated in the time after sending the reminder -> "Deadline for registration validation limited" <b><u>enabled</u></b> et "Remind unvalidated users" <b><u>enabled</u></b>.';
    160132
    161133
     
    168140<br><br>
    169141Die Erholung von dieser Schnittstelle wird nicht unterstützt. Verwenden Sie Tools wie phpMyAdmin.';
    170 // --------- End: New or revised $lang ---- from version 2.20.3
    171 
    172 
    173 // --------- Starting below: New or revised $lang ---- from version 2.20.4
    174142/*TODO*/$lang['UAM_HidePasswTitle_d'] = 'Choose here if you want to display the password chosen by the visitor in the information email. If you enable the option, the password will then appear in clear text. If you disable the password will not appear at all.';
    175143// --------- End: New or revised $lang ---- from version 2.20.4
     
    177145
    178146// --------- Starting below: New or revised $lang ---- from version 2.20.11
    179 /*TODO*/$lang['UAM_gttextTitle_d'] = 'Geben Sie den gewünschten Text in die E-Mail-Erinnerung angezeigt, die Benutzer rechtzeitig, um wieder zur Galerie zu besuchen (Anm.: Der Text Fertigpen mit der Installation des Plugins ist als Beispiel vorgesehen).
     147$lang['UAM_gttextTitle_d'] = 'Geben Sie den gewünschten Text in die E-Mail-Erinnerung angezeigt, die Benutzer rechtzeitig, um wieder zur Galerie zu besuchen (Anm.: Der Text Fertigpen mit der Installation des Plugins ist als Beispiel vorgesehen).
    180148<br><br>
    181149Further customize the content with special inserted tags:<br>
     
    185153<br><br>
    186154Um mehrere Sprachen zu benutzen, können Sie die Extended description Plugin-Tags verwenden, wenn er aktiv ist.';
    187 /*TODO*/$lang['UAM_confirmtxtTitle_d'] = 'Geben Sie den einleitenden Text, den Sie in der E-Mail-Bestätigung der Anmeldung erscheinen.
    188 <br><br>
    189 Further customize the content with special inserted tags:<br>
    190 - <b style=&quot;color: red;&quot;>[username]</b> to automatically insert the name of the destination user of the email.<br>
    191 - <b style=&quot;color: red;&quot;>[mygallery]</b> to insert the title of your gallery.<br>
    192 - <b style=&quot;color: red;&quot;>[myurl]</b> to insert your gallery URL if set in Piwigo\'s configuration options.<br>
    193 - <b style=&quot;color: red;&quot;>[Kdays]</b> to insert the number of days limit to validate a registration (&quot;Anmeldeschluss Validierung beschränkt;&quot; have to be enabled).
    194 <br><br>
    195 Um mehrere Sprachen zu benutzen, können Sie die Extended description Plugin-Tags verwenden, wenn er aktiv ist.';
    196 /*TODO*/$lang['UAM_remailtxt1Title_d'] = 'Geben Sie den einleitenden Text, den Sie in der E-Mail-Erinnerung angezeigt wird, zusätzlich zu der Prüfschlüssel regeneriert.
     155$lang['UAM_confirmtxtTitle_d'] = 'Geben Sie den einleitenden Text, den Sie in der E-Mail-Bestätigung der Anmeldung erscheinen.
     156<br><br>
     157Weitere Anpassung des Inhalts mit speziellen eingefügt tags:<br>
     158- <b style="color: red;">[username]</b> , um automatisch den Namen des Zielbenutzers der E-Mail.<br>
     159- <b style="color: red;">[mygallery]</b> , um den Titel Ihrer Galerie einzufügen.<br>
     160- <b style="color: red;">[myurl]</b> Ihre Galerie-URL einfügen, wenn in den Konfigurationsoptionen Piwigo gesetzt.<br>
     161- <b style="color: red;">[Kdays]</b> um die Anzahl von Tagen einfügen, um eine Registrierung zu bestätigen ("Anmeldeschluss Validierung beschränkt;" müssen aktiviert werden).
     162<br><br>
     163Um mehrere Sprachen zu benutzen, können Sie die Extended description Plugin-Tags verwenden, wenn er aktiv ist.';
     164$lang['UAM_remailtxt1Title_d'] = 'Geben Sie den einleitenden Text, den Sie in der E-Mail-Erinnerung angezeigt wird, zusätzlich zu der Prüfschlüssel regeneriert.
    197165<br><br>
    198166Wenn leer, wird die E-Mail-Erinnerung nur den Bestätigungslink. Es wird daher dringend empfohlen, ein wenig erläuternden Text zu nehmen. (NB: Der Text Fertigpen mit der Installation des Plugins ist als Beispiel vorgesehen).
    199167<br><br>
    200 Further customize the content with special inserted tags:<br>
    201 - <b style=&quot;color: red;&quot;>[username]</b> to automatically insert the name of the destination user of the email.<br>
    202 - <b style=&quot;color: red;&quot;>[mygallery]</b> to insert the title of your gallery.<br>
    203 - <b style=&quot;color: red;&quot;>[myurl]</b> to insert your gallery URL if set in Piwigo\'s configuration options.<br>
    204 - <b style=&quot;color: red;&quot;>[Kdays]</b> to insert the number of days limit to validate a registration (&quot;Anmeldeschluss Validierung beschränkt;&quot; have to be enabled).
    205 <br><br>
    206 Um mehrere Sprachen zu benutzen, können Sie die Extended description Plugin-Tags verwenden, wenn er aktiv ist.';
    207 /*TODO*/$lang['UAM_remailtxt2Title_d'] = 'Geben Sie den einleitenden Text, den Sie in der Erinnerung, ohne eine Bestätigung per E-Mail-Taste erscheinen regeneriert.
     168Weitere Anpassung des Inhalts mit speziellen eingefügt tags:<br>
     169- <b style="color: red;">[username]</b> , um automatisch den Namen des Zielbenutzers der E-Mail.<br>
     170- <b style="color: red;">[mygallery]</b> , um den Titel Ihrer Galerie einzufügen.<br>
     171- <b style="color: red;">[myurl]</b> Ihre Galerie-URL einfügen, wenn in den Konfigurationsoptionen Piwigo gesetzt.<br>
     172- <b style="color: red;">[Kdays]</b> um die Anzahl von Tagen einfügen, um eine Registrierung zu bestätigen ("Anmeldeschluss Validierung beschränkt;" müssen aktiviert werden).
     173<br><br>
     174Um mehrere Sprachen zu benutzen, können Sie die Extended description Plugin-Tags verwenden, wenn er aktiv ist.';
     175$lang['UAM_remailtxt2Title_d'] = 'Geben Sie den einleitenden Text, den Sie in der Erinnerung, ohne eine Bestätigung per E-Mail-Taste erscheinen regeneriert.
    208176<br><br>
    209177Wenn links leer ist, wird die E-Mail-Erinnerung leer sein. Es wird daher dringend empfohlen, ein wenig erläuternden Text zu nehmen. (NB: Der Text Fertigpen mit der Installation des Plugins ist als Beispiel vorgesehen).
    210178<br><br>
    211 Further customize the content with special inserted tags:<br>
    212 - <b style=&quot;color: red;&quot;>[username]</b> to automatically insert the name of the destination user of the email.<br>
    213 - <b style=&quot;color: red;&quot;>[mygallery]</b> to insert the title of your gallery.<br>
    214 - <b style=&quot;color: red;&quot;>[myurl]</b> to insert your gallery URL if set in Piwigo\'s configuration options.<br>
    215 - <b style=&quot;color: red;&quot;>[Kdays]</b> to insert the number of days limit to validate a registration (&quot;Anmeldeschluss Validierung beschränkt;&quot; have to be enabled).
    216 <br><br>
    217 Um mehrere Sprachen zu benutzen, können Sie die Extended description Plugin-Tags verwenden, wenn er aktiv ist.';
    218 /*TODO*/$lang['UAM_infotxtTitle_d'] = 'Geben Sie den einleitenden Text, den Sie in der Informations-E-Mail angezeigt.
     179Weitere Anpassung des Inhalts mit speziellen eingefügt tags:<br>
     180- <b style="color: red;">[username]</b> , um automatisch den Namen des Zielbenutzers der E-Mail.<br>
     181- <b style="color: red;">[mygallery]</b> , um den Titel Ihrer Galerie einzufügen.<br>
     182- <b style="color: red;">[myurl]</b> Ihre Galerie-URL einfügen, wenn in den Konfigurationsoptionen Piwigo gesetzt.<br>
     183- <b style="color: red;">[Kdays]</b> um die Anzahl von Tagen einfügen, um eine Registrierung zu bestätigen ("Anmeldeschluss Validierung beschränkt;" müssen aktiviert werden).
     184<br><br>
     185Um mehrere Sprachen zu benutzen, können Sie die Extended description Plugin-Tags verwenden, wenn er aktiv ist.';
     186$lang['UAM_infotxtTitle_d'] = 'Geben Sie den einleitenden Text, den Sie in der Informations-E-Mail angezeigt.
    219187<br><br>
    220188Further customize the content with special inserted tags:<br>
     
    224192<br><br>
    225193Um mehrere Sprachen zu benutzen, können Sie die Extended description Plugin-Tags verwenden, wenn er aktiv ist.';
    226 /*TODO*/$lang['UAM_AdminValidationMail_d'] = 'Wenn ein Administrator oder Webmaster der Galerie manuell gültige Registrierung anhängig ist, ist eine Benachrichtigungs-Email automatisch an den Benutzer gesendet. Geben Sie hier den Text ein, in dieser E-Mail angezeigt.
    227 <br><br>
    228 Further customize the content with special inserted tags:<br>
    229 - <b style=&quot;color: red;&quot;>[username]</b> to automatically insert the name of the destination user of the email.<br>
    230 - <b style=&quot;color: red;&quot;>[mygallery]</b> to insert the title of your gallery.<br>
    231 - <b style=&quot;color: red;&quot;>[myurl]</b> to insert your gallery URL if set in Piwigo\'s configuration options.
    232 <br><br>
    233 Um mehrere Sprachen zu benutzen, können Sie die Extended description Plugin-Tags verwenden, wenn er aktiv ist.';
    234 /*TODO*/$lang['UAM_confirmmail_custom1_d'] = 'Wenn die Option &quot;Bestätigung der Anmeldung&quot; aktiv ist, können Sie in diesem zu <b><u>Akzeptanz Text anpassen</u></b> auf der Anmeldebestätigung Seite angezeigt, wenn Benutzer auf den Bestätigungs-Link, die empfangen wurde per E-Mail.
     194$lang['UAM_AdminValidationMail_d'] = 'Wenn ein Administrator oder Webmaster der Galerie manuell gültige Registrierung anhängig ist, ist eine Benachrichtigungs-Email automatisch an den Benutzer gesendet. Geben Sie hier den Text ein, in dieser E-Mail angezeigt.
     195<br><br>
     196Weitere Anpassung des Inhalts mit speziellen eingefügt tags:<br>
     197- <b style="color: red;">[username]</b> , um automatisch den Namen des Zielbenutzers der E-Mail.<br>
     198- <b style="color: red;">[mygallery]</b> , um den Titel Ihrer Galerie einzufügen.<br>
     199- <b style="color: red;">[myurl]</b> Ihre Galerie-URL einfügen, wenn in den Konfigurationsoptionen Piwigo gesetzt.
     200<br><br>
     201Um mehrere Sprachen zu benutzen, können Sie die Extended description Plugin-Tags verwenden, wenn er aktiv ist.';
     202$lang['UAM_confirmmail_custom1_d'] = 'Wenn die Option &quot;Bestätigung der Anmeldung&quot; aktiv ist, können Sie in diesem zu <b><u>Akzeptanz Text anpassen</u></b> auf der Anmeldebestätigung Seite angezeigt, wenn Benutzer auf den Bestätigungs-Link, die empfangen wurde per E-Mail.
    235203<br><br>
    236204Nach der Installation des Plugin ist ein Standard-Text als Beispiel vorangehen.
    237205<br><br>
    238 Further customize the content with special inserted tags:<br>
    239 - <b style=&quot;color: red;&quot;>[username]</b> to automatically insert the name of the destination user of the email.<br>
    240 - <b style=&quot;color: red;&quot;>[mygallery]</b> to insert the title of your gallery.<br>
    241 - <b style=&quot;color: red;&quot;>[myurl]</b> to insert your gallery URL if set in Piwigo\'s configuration options.
    242 <br><br>
    243 Dieses Feld ist kompatibel mit den FCK-Editor und, um mehrere Sprachen zu benutzen, können Sie die Extended description Plugin-Tags verwenden, wenn er aktiv ist.';
    244 /*TODO*/$lang['UAM_confirmmail_custom2_d'] = 'Wenn die Option &quot;Bestätigung der Anmeldung&quot; aktiv ist, können Sie in diesem zu <b><u>rejectance Text anpassen</u></b> auf der Anmeldebestätigung Seite angezeigt, wenn Benutzer auf den Bestätigungs-Link, die empfangen wurde per E-Mail.
     206Weitere Anpassung des Inhalts mit speziellen eingefügt tags:<br>
     207- <b style="color: red;">[username]</b> , um automatisch den Namen des Zielbenutzers der E-Mail.<br>
     208- <b style="color: red;">[mygallery]</b> , um den Titel Ihrer Galerie einzufügen.<br>
     209- <b style="color: red;">[myurl]</b> Ihre Galerie-URL einfügen, wenn in den Konfigurationsoptionen Piwigo gesetzt.
     210<br><br>
     211Dieses Feld ist kompatibel mit den FCK-Editor und, um mehrere Sprachen zu benutzen, können Sie die Extended Description Plugin-Tags verwenden, wenn er aktiv ist.';
     212$lang['UAM_confirmmail_custom2_d'] = 'Wenn die Option &quot;Bestätigung der Anmeldung&quot; aktiv ist, können Sie in diesem zu <b><u>rejectance Text anpassen</u></b> auf der Anmeldebestätigung Seite angezeigt, wenn Benutzer auf den Bestätigungs-Link, die empfangen wurde per E-Mail.
    245213<br><br>
    246214Nach der Installation des Plugin ist ein Standard-Text als Beispiel vorangehen.
    247215<br><br>
    248 Further customize the content with special inserted tags:<br>
    249 - <b style=&quot;color: red;&quot;>[username]</b> to automatically insert the name of the destination user of the email.<br>
    250 - <b style=&quot;color: red;&quot;>[mygallery]</b> to insert the title of your gallery.<br>
    251 - <b style=&quot;color: red;&quot;>[myurl]</b> to insert your gallery URL if set in Piwigo\'s configuration options.
    252 <br><br>
    253 Dieses Feld ist kompatibel mit den FCK-Editor und, um mehrere Sprachen zu benutzen, können Sie die Extended description Plugin-Tags verwenden, wenn er aktiv ist.';
    254 /*TODO*/$lang['UAM_GTAutoDelTitle_d'] = 'Dies ist nur gültig, wenn der Benutzer, dessen Konto ist abgelaufen selbst löst die Streichung Mechanismus (selten, aber möglich). Er ist dann der Galerie getrennt und umgeleitet auf eine Seite mit der Löschung seines Accounts und gegebenenfalls die Gründe für die Streichung dieses Absatzes.
    255 <br><br>
    256 Further customize the content with special inserted tags:<br>
    257 - <b style=&quot;color: red;&quot;>[mygallery]</b> to insert the title of your gallery.<br>
    258 - <b style=&quot;color: red;&quot;>[myurl]</b> to insert your gallery URL if set in Piwigo\'s configuration options.<br>
    259 <b style=&quot;color: red;&quot;>[username]</b> is not available here because concerned user has been deleted.
    260 <br><br>
    261 Custom Text für die Weiterleitungsseite können in dieses Feld eingegeben werden dass ist kompatibel mit den FCK-Editor und, um mehrere Sprachen zu benutzen, können Sie die Extended description Plugin-Tags verwenden, wenn er aktiv ist.';
    262 /*TODO*/$lang['UAM_GTAutoMailTitle_d'] = 'When an account is expired (group / status change demoting the visitor), an email information can be sent to clarify the reasons for this change and the means to recover the initial access to the gallery.
    263 <br>To do this, a link to revalidation of registration is attached to the email (automatic generation of a new validation key).<b style=&quot;color: red;&quot;>If the user has already been notified, his account is automatically destroyed.</b>
    264 <br><br>
    265 Enter the custom text that also explain the reasons for the demotion, to accompany the validation link. The custom text is not mandatory but strongly recommended. In fact, your visitors will not appreciate receiving an email containing only a single link without further explanation. ;-)
    266 <br><br>
    267 Further customize the content with special inserted tags:<br>
    268 - <b style=&quot;color: red;&quot;>[username]</b> to automatically insert the name of the destination user of the email.<br>
    269 - <b style=&quot;color: red;&quot;>[mygallery]</b> to insert the title of your gallery.<br>
    270 - <b style=&quot;color: red;&quot;>[myurl]</b> to insert your gallery URL if set in Piwigo\'s configuration options.
    271 <br><br>
    272 Um mehrere Sprachen zu benutzen, können Sie die Extended description Plugin-Tags verwenden, wenn er aktiv ist.
    273 <br><br>
    274 <b style=&quot;color: red;&quot;>Warning: The use of this function is intimately associated with the confirmation of registration by the user (confirmation by mail) and can not be activated without this option.</b>';
    275 /*TODO*/$lang['UAM_CustomPasswRetrTitle_d'] = 'By default, when a user has lost his password and selects the option of recovery, he receives an email containing only his username and his new password.
    276 <br><br>
    277 Here, you can add text of your choice to be inserted <b><u>before</u></b> the standard information.
    278 <br><br>
    279 Further customize the content with special inserted tags:<br>
    280 - <b style=&quot;color: red;&quot;>[mygallery]</b> to insert the title of your gallery.<br>
    281 - <b style=&quot;color: red;&quot;>[myurl]</b> to insert your gallery URL if set in Piwigo\'s configuration options.
    282 <br><br>
    283 To use multiple languages, you can use the Extended description plugin\'s tags if it is active.';
    284 /*TODO*/$lang['UAM_USRAutoDelTitle_d'] = 'This is only valid when the user whose account has expired itself triggers the deletion mechanism (rare but possible). he\'s then disconnected of the gallery and redirected to a page showing the deletion of his account and, possibly, the reasons for this deletion.
    285 <br><br>
    286 Further customize the content with special inserted tags:<br>
    287 - <b style=&quot;color: red;&quot;>[mygallery]</b> to insert the title of your gallery.<br>
    288 - <b style=&quot;color: red;&quot;>[myurl]</b> to insert your gallery URL if set in Piwigo\'s configuration options.<br>
    289 <b style=&quot;color: red;&quot;>[username]</b> is not available here because concerned user has been deleted.
    290 <br><br>
    291 Custom text for the redirect page can be entered in this field that is compatible with the FCK Editor and, for multi-languages, you can use the tags [lang] of the plugin Extended description if it\'s active.';
    292 // --------- End: New or revised $lang ---- from version 2.20.11
     216Weitere Anpassung des Inhalts mit speziellen eingefügt tags:<br>
     217- <b style="color: red;">[username]</b> , um automatisch den Namen des Zielbenutzers der E-Mail.<br>
     218- <b style="color: red;">[mygallery]</b> , um den Titel Ihrer Galerie einzufügen.<br>
     219- <b style="color: red;">[myurl]</b> Ihre Galerie-URL einfügen, wenn in den Konfigurationsoptionen Piwigo gesetzt.
     220<br><br>
     221Dieses Feld ist kompatibel mit den FCK-Editor und, um mehrere Sprachen zu benutzen, können Sie die Extended Description Plugin-Tags verwenden, wenn er aktiv ist.';
     222$lang['UAM_GTAutoDelTitle_d'] = 'Dies ist nur gültig, wenn der Benutzer, dessen Konto ist abgelaufen selbst löst die Streichung Mechanismus (selten, aber möglich). Er ist dann der Galerie getrennt und umgeleitet auf eine Seite mit der Löschung seines Accounts und gegebenenfalls die Gründe für die Streichung dieses Absatzes.
     223<br><br>
     224Weitere Anpassung des Inhalts mit speziellen eingefügt tags:<br>
     225- <b style="color: red;">[mygallery]</b> , um den Titel Ihrer Galerie einzufügen.<br>
     226- <b style="color: red;">[myurl]</b> Ihre Galerie-URL einfügen, wenn in den Konfigurationsoptionen Piwigo gesetzt.<br>
     227<b style=&quot;color: red;&quot;>[username]</b> ist hier nicht verfügbar, weil betroffene Anwender gelöscht wurde.
     228<br><br>
     229Custom Text für die Weiterleitungsseite können in dieses Feld eingegeben werden dass ist kompatibel mit den FCK-Editor und, um mehrere Sprachen zu benutzen, können Sie die Extended Description Plugin-Tags verwenden, wenn er aktiv ist.';
     230$lang['UAM_confirmlevelTitle_d'] = '<b style=&quot;color: red;&quot;>WARNUNG: Die Verwendung von Privatsphäre Ebene erforderlich, dass Sie sie mit Ihren Bildern verwendet. Bitte beachten Sie die Piwigo in der Dokumentation für weitere Details.</b><br><br>
     231Das Niveau der Privatsphäre ist für den Einsatz in Verbindung mit der &quot;Bestätigung der Anmeldung&quot validiert;';
     232$lang['UAM_CustomPasswRetrTitle_d'] = 'Standardmäßig wird, wenn ein Benutzer sein Passwort verloren und wählt die Option für eine Erholung, erhält er eine E-Mail, die nur seinen Benutzernamen und sein neues Passwort zu.
     233<br><br>
     234Hier können Sie von Ihnen gewünschten Text eingefügt werden soll <b><u>vor</u></b> die Standard-Informationen.
     235<br><br>
     236Weitere Anpassung des Inhalts mit speziellen eingefügt tags:<br>
     237- <b style="color: red;">[mygallery]</b> , um den Titel Ihrer Galerie einzufügen.<br>
     238- <b style="color: red;">[myurl]</b> Ihre Galerie-URL einfügen, wenn in den Konfigurationsoptionen Piwigo gesetzt.
     239<br><br>
     240Um mehrere Sprachen zu benutzen, können Sie die Extended Description Plugin-Tags verwenden, wenn er aktiv ist.';
     241$lang['UAM_GT_MainTitle_d'] = '- Automatische oder manuelle Verwaltung von Benutzern Gespenst<br>
     242- E-mailing<br>
     243...
     244';
     245$lang['UAM_PwdResetTitle_d'] = 'Das Aktivieren dieser Option wird eine neue Funktion im Piwigo-Benutzerverwaltung Panel hinzufügen (Benutzer> Verwalten), das kann sich bewerben, um das Passwort für ausgewählte Benutzer zu erneuern. Darüber hinaus wird eine neue Spalte hinzugefügt, um den Status von Passwörtern für jeden von ihnen für die folgenden Werte:<br>
     246- Passwort erneuert werden: Ein Passwort Antrag auf Verlängerung ist geplant.<br>
     247- Passwort erneuert: Das Passwort hat nach einer Anfrage erneuert worden.<br>
     248- Original-Passwort: Das Original-Passwort an Account-Erstellung gewählt und hat noch nie für eine Erneuerung erforderlich gewesen.<br>
     249Webmaster, generischen und Gast-Accounts sind von dieser Funktion ausgeschlossen.<br>
     250Diese Benutzer werden automatisch auf ihre Anpassung an jeder Seite ihrer Verbindungen umgeleitet werden, bis sie ihr Passwort geändert und eine explizite Meldung auf dieser Seite angezeigt werden.';
     251$lang['UAM_RejectConnexion_Custom_Txt_d'] = 'Passen Sie hier Ihre Erklärung Text zum unbestätigten Benutzer informieren dass sie nicht in der Lage um die Galerie verbinden bis sie ihre Anmeldung bestätigt haben.
     252<br>
     253Dieses Feld ist kompatibel mit FCK Editor und, für Multi-Sprachen, können Sie die [lang] Tags der Extended Description Plugin zu benutzen, wenn es aktiv ist.';
     254$lang['UAM_RejectConnexion_d'] = 'Wenn aktiviert, wird neu registrierten Benutzern nicht bestätigen, haben ihre Anmeldung nicht in der Lage sein, um zur Galerie zu verbinden. Sie werden auf eine spezielle Seite umgeleitet werden, um sie von diesem Zustand zu informieren.<br><br>
     255<b style="color: red;">Warnung - Dies funktioniert nur in Verbindung mit der Bestätigung Gruppen! Siehe unten, um die Gruppen nach Bedarf eingestellt.</b>';
     256$lang['UAM_StuffsTitle_d'] = 'Dies ermöglicht eine zusätzliche UAM-Block in PWG Stuffs Plugin (wenn installiert) um Ihre Besucher die nicht validiert hat ihre Registrierung über ihren Zustand informieren.
     257<br><br>
     258Bitte beachten Sie die <b>Tipps und Beispiele</b> am unteren Ende dieser Seite für Details.';
     259$lang['UAM_userlistTitle_d'] = 'Diese Seite gibt es zur Information an den Administrator. Es zeigt eine Liste von allen Nutzern auf der Galerie zeigt das Datum und die Anzahl der Tage seit dem letzten Besuch registriert. Die Liste ist in aufsteigender Reihenfolge der Anzahl der Tage sortiert.
     260<br><br>
     261<b><u>Erst wenn der Geist Tracker aktiv ist</u></b>, wird die Anzahl der Tage ohne einen Besuch wie der folgende Farbcode nach dem Maximum in der Geist Tracker Optionen:
     262<br>
     263- <b style=&quot;color: lime;&quot;>Grün</b> : Wenn der Benutzer hat die Galerie <b style=&quot;color:lime;&quot;><u>weniger als 50%</u></b> besucht der angegebene H&ouml;chstzahl in der Geist-Tracker.<br>
     264- <b style=&quot;color: orange;&quot;>Orange</b> : Wenn der Benutzer hat die Galerie <b style=&quot;color:orange;&quot;><u>zwischen 50% und 99%</u></b> besucht der angegebene H&ouml;chstzahl in der Geist-Tracker.<br>
     265- <b style=&quot;color: red;&quot;>Rot</b> : Wenn der Benutzer hat die Galerie <b style=&quot;color:red;&quot;><u>f&uuml;r mehr als 100%</u></b> besucht der angegebene H&ouml;chstzahl in der Geist-Tracker. <b><u>In diesem Fall muss der Benutzer sich auch in der Geist-Tracker-Tabelle.</u></b><br>
     266<br>
     267Beispiel:
     268<br>
     269Die Höchstdauer von Geist Tracker ist so konfiguriert, dass 100 Tage.
     270<br>
     271Ein Benutzer wird in grün angezeigt, wenn er die Galerie für weniger als 50 Tagen besucht haben, in orange, wenn sein letzter Besuch stattgefunden hat zwischen 50 und 99 Tage und rot für 100 Tage und mehr.
     272<br><br>
     273<b>HINWEIS</b>: Die Liste wird nicht angezeigt, die nicht validiert ihrer Registrierung (falls die M&ouml;glichkeit der Validierung der Registrierung aktiviert ist). Diese Benutzer werden dann in besonderer Weise in der &quot;Tracking Validierungen verwaltet&quot; aus.
     274<br><br>
     275<b>Die Sortierung der Tabelle Function</b>: Sie können die Daten mit einem Klick auf die Spaltenüberschriften angezeigt. Halten Sie SHIFT-Taste, um Art bis zu 4 gleichzeitige maximale Spalten.';
     276$lang['UAM_USRAutoDelTitle_d'] = 'Dies ist nur gültig, wenn der Benutzer, dessen Konto ist abgelaufen selbst löst die Löschung Mechanismus (selten, aber möglich). er hat dann von der Galerie getrennt und umgeleitet zu einer Seite mit der Löschung seines Accounts und ggf. die Gründe für diese Löschung.
     277<br><br>
     278Weitere Anpassung des Inhalts mit speziellen eingefügt tags:<br>
     279- <b style="color: red;">[mygallery]</b> , um den Titel Ihrer Galerie einzufügen.<br>
     280- <b style="color: red;">[myurl]</b> Ihre Galerie-URL einfügen, wenn in den Konfigurationsoptionen Piwigo gesetzt.<br>
     281<b style=&quot;color: red;&quot;>[username]</b> ist hier nicht verfügbar, weil betroffene Anwender gelöscht wurde.
     282<br><br>
     283Custom Text für die Weiterleitungsseite können in dieses Feld eingegeben werden dass ist kompatibel mit den FCK-Editor und, um mehrere Sprachen zu benutzen, können Sie die Extended Description Plugin-Tags verwenden, wenn er aktiv ist.';
     284$lang['UAM_USRAutoMailTitle_d'] = 'Wenn aktiviert, wird diese Funktion automatisch zu senden personalisierte Inhalte in "Reminder per E-Mail mit neuer Schlüssel generiert", um Besucher, die Kriterien entsprechen.';
    293285?>
  • extensions/UserAdvManager/branches/2.30/language/de_DE/plugin.lang.php

    r12667 r13124  
    9797// --------- Starting below: New or revised $lang ---- from version 2.13.0
    9898/* UserList Tab */
    99 $lang['UAM_UserList_Title'] = 'Monitoring registrierte Benutzer';
    10099$lang['UAM_Nb_Days'] = 'Anzahl der Tage seit<br>dem letzten Besuch';
    101100// --------- End: New or revised $lang ---- from version 2.13.0
     
    112111$lang['UAM_Title4'] = 'Tipps und Beispiele für die Benutzung';
    113112$lang['UAM_No_Casse'] = 'Benutzernamen: Groß-und Kleinschreibung';
    114 $lang['UAM_Username_Char'] = ' Benutzernamen: Ausschluss von Zeichen';
     113$lang['UAM_Username_Char'] = 'Benutzernamen: Ausschluss von Zeichen';
    115114$lang['UAM_Username_Char_true'] = ' Zeichen Verboten:<br>(Verwenden Sie ein Komma, um ein Zeichen getrennt)<br><br>';
    116115$lang['UAM_Username_Char_false'] = ' Erlauben Sie alle (Standard)';
     
    142141$lang['UAM_GhostTracker_true'] = ' Aktivieren. Maximale Zeit in Tagen zwischen zwei Besuche: ';
    143142$lang['UAM_GhostTracker_ReminderText'] = 'Anpassen der Geist Tracker Erinnerungs-Nachricht';
    144 $lang['UAM_LastVisit'] = ' Tracking registrierte Benutzer';
    145 
    146 $lang['UAM_Tab_UserManager'] = 'Tracking Validierungen';
    147 
    148 /* UserManager Tab */
    149 $lang['UAM_SubTitle3'] = 'Tracking Validierungen';
    150 $lang['UAM_UserManager_Title'] = 'Tracking Validierungen';
     143
    151144/* Ghost Tracker Tab */
    152145$lang['UAM_SubTitle4'] = 'Geist Tracker';
    153 $lang['UAM_GT_Init'] = 'Initializing Ghost Tracker';
     146$lang['UAM_GT_Init'] = 'Initialisieren Geist Tracker';
    154147$lang['UAM_GhostTracker_Title'] = 'Geist Besucher-Management';
    155148$lang['UAM_GhostTracker_Init'] = 'Wenn Sie diese Funktion zum ersten Mal oder haben Sie nach einem langen Zeitraum aus, in dem neue Besucher registriert sind, müssen Sie initialisieren, oder setzen Sie den Geist Tracker reaktiviert. Dieser Vorgang ist nur nach Aktivierung oder Reaktivierung von der Möglichkeit gemacht. Bitte klicken Sie <u>einmal</u> die Reset-Taste unten.';
    156 /* UserList Tab */
    157 $lang['UAM_SubTitle5'] = 'Tracking-Besucher';
    158 $lang['UAM_Tab_UserList'] = 'Tracking-Besucher';
    159149/* Mailing */
    160150$lang['UAM_Add of %s'] = 'Profil erstellt für %s';
     
    216206
    217207// --------- Starting below: New or revised $lang ---- from version 2.20.0
    218 /*TODO*/$lang['UAM_CustomPasswRetr'] = 'Customize lost password email content';
    219 /*TODO*/$lang['UAM_USRAuto'] = 'Automatic management of unvalidated users';
    220 /*TODO*/$lang['UAM_USRAutoDel'] = 'Custom message on deleted account';
    221 /*TODO*/$lang['UAM_USRAutoMail'] = 'Automated email reminder';
    222208$lang['UAM_Disable'] = ' Deaktivieren (Standard)';
    223209$lang['UAM_Enable'] = ' Aktivieren ';
    224 /*TODO*/$lang['UAM_Tips1'] = 'Information of non-validated registration with UAM and PWG_Stuffs';
    225 /*TODO*/$lang['UAM_Tips1_txt'] = '
    226           <ul>
    227             <li>
    228             Goals: Inform the visitor that the registration is awaiting approval by displaying a personal block on the home page of the gallery, and this, as registration is not approved.
    229             <br><br>
    230             <b>Warnung: Im Standard-Betrieb, der "Gast" sieht nur den öffentlichen Kategorien, ohne Angaben Nachricht.</b>
    231             </li><br><br>
    232             <li>
    233 Voraussetzung:<br>
    234 - Eine Galerie mit allen oder einigen privaten Kategorien, sichtbar nur durch registrierte Benutzer<br>
    235 - Mindestens 2 der folgenden Piwigo Nutzergruppen: "Warten", ohne die Erlaubnis der privaten Gruppen und "Validiert" mit allen Berechtigungen für den privaten Kategorien<br>
    236 - UAM plugin<br>
    237 - PWG Stuffs plugin, für das Hinzufügen eines speziellen UAM Moduls<br>
    238 - Optional können Sie das Plugin Extended Description Multi-Sprachen<br>
    239             </li><br><br>
    240             <li>
    241 Etappen:<br><br>
    242 A. In plugin UAM:
    243               <ol>
    244                 <li>Aktivieren Sie Anmeldebestätigung</li>
    245                 <li>Aktivieren PWG Stuffs Modul</li>
    246                 <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>
    247                 <li>Wählen Sie das "Warten"-Gruppe unter "Für Anwender, die noch nicht validiert ihrer Eintragung"</li>
    248                 <li>Wählen Sie das "Validiert"-Gruppe unter "Für Anwender, die ihre Anmeldung bestätigt haben"</li>
    249                 <li>Speichern Sie das Plugin-Konfiguration</li>
    250               </ol>
    251 <br>
    252 B. In plugin PWG Stuffs :
    253               <ol>
    254                 <li>Gehen Sie zur Registerkarte "Hinzufügen eines neuen Moduls"</li>
    255                 <li>Wählen Sie "UAM-Modul"</li>
    256                 <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>
    257                 <li>Kompletten Inhalt des Moduls mit der Meldung Informationen, die den Benutzern angezeigt werden nicht validiert. Als UAM kann Markup-Sprachen verwendet werden, wenn das Plugin Extended Description aktiviert ist</li>
    258                 <li>Check "Display das Modul auf der Homepage der Website"</li>
    259                 <li>Überprüfen Sie die Konfiguration des Moduls</li>
    260               </ol>
    261             </li>
    262           </ul>';
    263 /*TODO*/$lang['UAM_Tips2'] = 'Information of non-validated registration with UAM and Additional Pages';
    264 /*TODO*/$lang['UAM_Tips2_txt'] = '
    265           <ul>
    266             <li>
    267             Goals: Inform the visitor that the registration is awaiting validation by posting an additional page replacing the standard index page gallery at each of these connections, and this, as registration is not approved.
    268             <br><br>
    269             Advantages over the method with PWG_Stuffs: Allow formatting information and displaying the information immediately upon registration of visitors.
    270             </li><br><br>
    271             <li>
    272 Voraussetzung:<br>
    273 - Eine Galerie mit allen oder einigen privaten Kategorien, sichtbar nur durch registrierte Benutzer<br>
    274 - Mindestens 2 der folgenden Piwigo Nutzergruppen: "Warten", ohne die Erlaubnis der privaten Gruppen und "Validiert" mit allen Berechtigungen für den privaten Kategorien<br>
    275 - UAM plugin<br>
    276 - Additional Pages plugin for adding and managing an additional page to replace the default index page of the gallery<br>
    277 - Optional können Sie das Plugin Extended Description Multi-Sprachen<br>
    278             </li><br><br>
    279             <li>
    280 Etappen:<br><br>
    281 A. In plugin UAM:
    282               <ol>
    283                 <li>Aktivieren Sie Anmeldebestätigung</li>
    284                 <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>
    285                 <li>Wählen Sie das "Warten"-Gruppe unter "Für Anwender, die noch nicht validiert ihrer Eintragung"</li>
    286                 <li>Wählen Sie das "Validiert"-Gruppe unter "Für Anwender, die ihre Anmeldung bestätigt haben"</li>
    287                 <li>Speichern Sie das Plugin-Konfiguration</li>
    288               </ol>
    289 <br>
    290 B. In plugin Additional Pages:<br>
    291                 <b>NOTE : The management of access rights for groups on Additional Pages must be turned on (see plugin configuration settings).</b>
    292                 <br>
    293               <ol>
    294                 <li>Add a new page with at least the following parameters:</li>
    295                 <ul>
    296                   <li>Page name: The name you wish to give to the additional page (ie: Registration not validated)</li>
    297                   <li>Set as homepage checked</li>
    298                   <li>Groups allowed: Check the box corresponding to the group "Waiting" configured in UAM</li>
    299                   <li>Content: The text you want to use for visitors.</li>
    300                 </ul>
    301                 <br>
    302                 <li>And that\'s it! Only visitors registered and whose registration has not been validated will see this additional index page.</li>
    303               </ol>
    304             </li>
    305           </ul>';
    306 /*TODO*/$lang['UAM_No_Ghosts'] = 'No ghosts visitors for the moment';
    307 /*TODO*/$lang['UAM_No_Userlist'] = 'No visitors to list for the moment';
    308 /*TODO*/$lang['UAM_No_Usermanager'] = 'No unvalidated registers to list for the moment';
    309210$lang['UAM_Stuffs_Title'] = 'UAM-Modul';
    310 /*TODO*/$lang['UAM_Stuffs_Desc'] = 'Adds an information block for unvalidated users';
    311211$lang['UAM_Stuffs'] = 'PWG Stuffs Modul';
    312212// --------- End: New or revised $lang ---- from version 2.20.0
     
    327227
    328228
    329 // --------- Starting below: New or revised $lang ---- from version 2.20.11
    330 /*TODO*/$lang['UAM_Error_Using_illegal_flag'] = 'Syntax error ! The [Kdays] AutoText flag is used as the "Anmeldeschluss Validierung beschränkt" option was not activated. Please activate the option or correct the text field(s) colored in red.';
    331 // --------- End: New or revised $lang ---- from version 2.20.11
    332 
    333 
    334229// --------- Starting below: New or revised $lang ---- from version 2.30.2
    335230$lang['UAM_RedirToProfile'] = 'Umleitung auf Benutzerdaten Seite';
    336231$lang['UAM_GTAutoGp'] = 'Automatischer Wechsel der Gruppe / Status / Vertraulichkeit Grad';
    337232$lang['UAM_GTAutoMail'] = 'Automatisches Versenden einer E-Mail beim Wechsel Gruppe / Status / Vertraulichkeit Grad';
    338 /*TODO*/$lang['UAM_NewFeature'] = 'New feature !';
    339 /*TODO*/$lang['UAM_RejectConnexion'] = 'Reject user\'s connexion until registration is validated';
    340 /*TODO*/$lang['UAM_RejectConnexion_Custom_Txt'] = 'Customize rejection text';
    341 /*TODO*/$lang['UAM_Default_RejectConnexion_Txt'] = 'Sorry, you don\'t have validate your registration yet, so you can\'t connect the gallery now. Please check your email box. You should find an email sent by the gallery, containing a link to perform your validation. If not, please contact the webmaster.';
    342 /*TODO*/$lang['UAM_Reject_Page_Title'] = 'Connexion not allowed !';
    343233// --------- End: New or revised $lang ---- from version 2.30.2
     234$lang['UAM_Tips1_txt'] = '          <ul>
     235            <li>
     236            Tore: Informieren Sie die Besucher, dass die Registrierung wartet auf die Genehmigung durch die Anzeige eines persönlichen Block auf der Homepage der Galerie, und dies, da eine Registrierung ist nicht zugelassen.
     237            <br><br>
     238            <b>Erinnern: Im Standard-Modus, der "Gast" sieht nur die öffentlichen Kategorien, ohne Informationen Nachricht.</b>
     239            </li><br><br>
     240            <li>
     241Voraussetzung:<br>
     242- Eine Galerie mit allen oder einigen privaten Kategorien, sichtbar nur von registrierten Benutzern<br>
     243- Mindestens 2 nach Piwigo der Anwender Gruppen: "Warten", ohne Erlaubnis auf privatem Kategorien und "Bestätigt" mit alle den Berechtigungen für die private Kategorien<br>
     244- UAM plugin<br>
     245- PWG Stuffs plugin, zum Addieren eines speziellen UAM-Modul<br>
     246- Optional für das Hinzufügen, das Plugin Extended Description zu Multi-Sprachen unterstützen<br>
     247            </li><br><br>
     248            <li>
     249Schritte:<br><br>
     250A. Im plugin UAM:
     251              <ol>
     252                <li>Aktivieren Sie Anmeldebestätigung</li>
     253                <li>Aktivieren PWG Stuffs Modul Option</li>
     254                <li>Geben Sie den Text für zusätzliche Erklärung, die auf Mail-Registrierung eine Bestätigung beigefügt werden. Wenn das Plugin Extended Description aktiviert ist, können die Sprach-Tags verwendet werden</li>
     255                <li>Wählen Sie das "Warten"-Gruppe unter "Für Anwender, die nicht ihre Anmeldung bestätigt haben"</li>
     256                <li>Wählen Sie den "Bestätigt"-Gruppe unter "Für Anwender, die ihre Anmeldung bestätigt haben"</li>
     257                <li>Speichern Sie das Plugin-Konfiguration</li>
     258              </ol>
     259<br>
     260B. Im plugin PWG Stuffs :
     261              <ol>
     262                <li>Auf der Registerkarte "Hinzufügen eines neuen Moduls"</li>
     263                <li>Wählen Sie "UAM-Modul"</li>
     264                <li>Konfigurieren Sie das Modul unter Angabe des Titels (z. B.: "Anmeldung bis zur Bestätigung") und ihre Beschreibung, und nur überprüfen, "Waiting" in der Liste der Gruppen erlaubt</li>
     265                <li>Kompletten Inhalt des Moduls mit der Meldung Informationen zu den Benutzern nicht bestätigt angezeigt werden. Als UAM, kann Markup Sprachen verwendet werden, wenn das Plugin aktiviert ist Extended Description werden</li>
     266                <li>Aktivieren Sie "Zeigen Sie das Modul auf der Homepage der Website"</li>
     267                <li>Bestätigen Sie die Konfiguration des Moduls</li>
     268              </ol>
     269            </li>
     270          </ul>';
     271$lang['UAM_Tips2_txt'] = '          <ul>
     272            <li>
     273           Tore: Informieren Sie die Besucher, dass die Registrierung auf eine Bestätigung durch Entsendung einer zusätzlichen Seite anstelle der Standard-Index-Seite Galerie an jeder dieser Anschlüsse, und dies, da eine Registrierung ist nicht zugelassen.
     274            <br><br>
     275            Vorteile gegenüber dem Verfahren mit PWG_Stuffs: Lassen Sie die Formatierung und Darstellung von Informationen sofort nach der Registrierung der Besucher.
     276            </li><br><br>
     277            <li>
     278Voraussetzung:<br>
     279- Eine Galerie mit allen oder einigen privaten Kategorien, sichtbar nur von registrierten Benutzern<br>
     280- Mindestens 2 nach Piwigo der Anwender Gruppen: "Warten", ohne Erlaubnis auf privatem Kategorien und "Bestätigt" mit alle den Berechtigungen für die private Kategorien<br>
     281- UAM plugin<br>
     282- "Additional Pages"-Plugin für das Hinzufügen und Verwalten einer zusätzlichen Seite, um die Standard-Index-Seite der Galerie ersetzen<br>
     283- Optional für das Hinzufügen, das Plugin Extended Description zu Multi-Sprachen unterstützen<br>
     284            </li><br><br>
     285            <li>
     286Schritte:<br><br>
     287A. Im plugin UAM:
     288              <ol>
     289                <li>Aktivieren Sie Anmeldebestätigung</li>
     290                <li>Geben Sie den Text für zusätzliche Erklärung, die auf Mail-Registrierung eine Bestätigung beigefügt werden. Wenn das Plugin Extended Description aktiviert ist, können die Sprach-Tags verwendet werden</li>
     291                <li>Wählen Sie das "Warten"-Gruppe unter "Für Anwender, die nicht ihre Anmeldung bestätigt haben"</li>
     292                <li>Wählen Sie den "Bestätigt"-Gruppe unter "Für Anwender, die ihre Anmeldung bestätigt haben"</li>
     293                <li>Speichern Sie das Plugin-Konfiguration</li>
     294              </ol>
     295<br>
     296B. Im plugin Additional Pages:<br>
     297                <b>HINWEIS: Die Verwaltung von Zugriffsrechten für Gruppen auf zusätzlichen Seiten muss eingeschaltet sein (siehe Plugin Konfigurationseinstellungen).</b>
     298                <br>
     299              <ol>
     300                <li>Fügen Sie eine neue Seite mit mindestens den folgenden Parametern:</li>
     301                <ul>
     302                  <li>Page name: Der Name, den Sie möchten, auf die zusätzliche Seite geben (z. B.: Registrierung nicht bestätigt)</li>
     303                  <li>Als Homepage überprüft</li>
     304                  <li>Gruppen erlaubt: Aktivieren Sie das Kästchen, um der Gruppe "Warten" in UAM konfiguriert</li>
     305                  <li>Inhalt: Der Text, den Sie für die Besucher zu nutzen.</li>
     306                </ul>
     307                <br>
     308                <li>Und das ist es! Nur registrierte Besucher und deren Eintragung wurde nicht bestätigt werden sehen, diese zusätzliche Index-Seite.</li>
     309              </ol>
     310            </li>
     311          </ul>';
     312            </li><br><br>
     313            <li>
     314Prerequisite:<br>
     315- A gallery with all or some private categories, visible only by registered users<br>
     316- At least 2 following Piwigo\'s users groups: "Waiting," without permission on private categories, and "Confirmed" with all the permissions on the private categories<br>
     317- UAM plugin<br>
     318- Additional Pages plugin for adding and managing an additional page to replace the default index page of the gallery<br>
     319- Optionally, the plugin Extended Description to support multi-languages<br>
     320            </li><br><br>
     321            <li>
     322Stages:<br><br>
     323A. In plugin UAM:
     324              <ol>
     325                <li>Enable registration confirmation</li>
     326                <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>
     327                <li>Select the "Waiting" group under "For users who have not confirmed their registration"</li>
     328                <li>Select the "Confirmed" group under "For users who have confirmed their registration"</li>
     329                <li>Save the plugin configuration</li>
     330              </ol>
     331<br>
     332B. In plugin Additional Pages:<br>
     333                <b>NOTE : The management of access rights for groups on Additional Pages must be turned on (see plugin configuration settings).</b>
     334                <br>
     335              <ol>
     336                <li>Add a new page with at least the following parameters:</li>
     337                <ul>
     338                  <li>Page name: The name you wish to give to the additional page (ie: Registration not confirmed)</li>
     339                  <li>Set as homepage checked</li>
     340                  <li>Groups allowed: Check the box corresponding to the group "Waiting" configured in UAM</li>
     341                  <li>Content: The text you want to use for visitors.</li>
     342                </ul>
     343                <br>
     344                <li>And that\'s it! Only visitors registered and whose registration has not been confirmed will see this additional index page.</li>
     345              </ol>
     346            </li>
     347          </ul>';
     348$lang['UAM %d user pwdreseted'] = 'Passwort erneuern für %d Benutzer erforderlich';
     349$lang['UAM %d users pwdreseted'] = 'Passwort erneuern für %d Benutzer erforderlich';
     350$lang['UAM_Admins cannot be pwdreset'] = 'Passwort erneuern kann nicht f';
     351$lang['UAM_Bad_version_backup'] = 'Die Version der Backup-Datei entspricht nicht der Version des Plugins! Die Restaurierung wurde nicht durchgef';
     352$lang['UAM_Confirm_Level'] = 'Datenschutz Niveau<br>(------- verlassen, um die Piwigo der Standard zu halten)';
     353$lang['UAM_Default user cannot be pwgreset'] = 'Passwort erneuern kann nicht für Standard-Benutzer eingestellt werden!';
     354$lang['UAM_Default_AdminValidation_Txt'] = 'Hallo [username]! Danke für die Registrierung und willkommen bei [mygallery].
     355
     356Ihr Konto wurde manuell durch den Webmaster von [mygallery] bestätigt. Sie können sich jetzt anmelden unter [myurl] und nehmen alle erforderlichen Änderungen an Ihrem Profil.';
     357$lang['UAM_Default_CfmMail_Custom_Txt1'] = 'Willkommen [username]! Sie haben best';
     358$lang['UAM_Default_CfmMail_Custom_Txt2'] = 'Ihr Aktivierungscode ist falsch oder abgelaufen oder haben Sie schon Ihren Account bestätigt, kontaktieren Sie bitte den Webmaster, um dieses Problem zu beheben.';
     359$lang['UAM_Default_CfmMail_Remail_Txt1'] = 'Hallo [username].
     360
     361Dies ist eine Erinnerung Nachricht, weil Sie auf unserer Galerie registriert [mygallery] aber nicht bestätigen Ihre Anmeldung und Ihre Bestätigung Schlüssel abgelaufen ist. Um noch können Sie in unserer Galerie zuzugreifen, hat Ihre Bestätigung Zeitraum wurden zurückgesetzt. Sie haben wieder x Tage, um Ihre Registrierung zu bestätigen.
     362
     363Hinweis: Nach Ablauf dieses Zeitraums wird Ihr Konto dauerhaft gelöscht.';
     364$lang['UAM_Default_CfmMail_Remail_Txt2'] = 'Hallo [username].
     365
     366Dies ist eine Erinnerung Nachricht, weil Sie auf unserer Galerie registriert [mygallery] aber nicht bestätigen Ihre Anmeldung und Ihre Bestätigung Schlüssel abläuft. Damit Sie unsere Galerie zuzugreifen, müssen Sie x Tage, um Ihre Anmeldung durch Klick auf den Link in der Nachricht, die Sie erhalten haben, sollten Sie bei der Registrierung zu bestätigen.
     367
     368Hinweis: Nach Ablauf dieses Zeitraums wird Ihr Konto dauerhaft gelöscht.';
     369$lang['UAM_Default_ConfirmMail_Txt'] = 'Hallo [username]! Wir danken Ihnen, auf [mygallery] haben registrieren lassen.
     370
     371Um den Vorgang abzuschlie';
     372$lang['UAM_Default_GhstDeletion_Txt'] = 'Leider [username], Ihr Konto wurde aufgrund einer zu langen Zeit seit Ihrem letzten Besuch am [mygallery] weitergegeben gel';
     373$lang['UAM_Default_GhstDemotion_Txt'] = 'Leider [username], Ihr Konto wurde aufgrund einer zu langen Zeit seit Ihrem letzten Besuch am [mygallery] weitergegeben wurde verworfen. Bitte benutzen Sie den folgenden Link, um Ihr Konto zu bestätigen:';
     374$lang['UAM_Default_GhstReminder_Txt'] = 'Hallo [username].
     375
     376Dies ist eine Erinnerung, weil eine sehr lange Zeit vergangen, seit Ihrem letzten Besuch auf unserer Galerie [mygallery]. Wenn Sie nicht mehr tun wollen Ihren Zugang Konto verwenden, informieren Sie uns bitte durch eine Beantwortung dieser E-Mail. Ihr Konto wird gel';
     377$lang['UAM_Default_InfoMail_Txt'] = 'Hallo [username]! Wir danken Ihnen, auf [mygallery] haben registrieren lassen.
     378
     379Bitte, finden Sie unten Ihre Verbindung Informationen.';
     380$lang['UAM_Default_PwdRequest_Txt'] = 'Sie haben ein Passwort-Reset auf unserer Galerie anzubieten. Bitte unten Ihre neue Verbindung Einstellungen zu finden.';
     381$lang['UAM_Default_RejectConnexion_Txt'] = 'Leider müssen Sie nicht Ihre Anmeldung bestätigt noch haben, so können Sie nicht schließen Sie die Galerie jetzt. Bitte überprüfen Sie Ihre E-Mail-Box. Sie sollten eine E-Mail durch die Galerie geschickt, mit einem Link zu Ihrer Bestätigung durchzuführen. Wenn nicht, wenden Sie sich bitte an den Webmaster.';
     382$lang['UAM_Default_ValidationTimeout_Txt'] = 'Sorry, dein Konto wurde gelöscht, weil Sie nicht Ihre Anmeldung im gewünschten Zeitraum ([Kdays] Tage) bestätigt haben. Bitte versuchen Registrierung mit einer gültigen und nicht blockiert E-Mail-Konto.';
     383$lang['UAM_Error_Using_illegal_flag'] = 'Syntax-Fehler! Die [Kdays] AutoText Flagge wird als "Anmeldeschluss Bestätigung begrenzt"-Option verwendet wurde nicht aktiviert. Bitte aktivieren Sie die Option, oder korrigieren Sie die Text-Feld rot eingefärbt.';
     384$lang['UAM_Error_Using_illegal_Kdays'] = 'Mit dem [Kdays]-Tag ist nur zulässig, wenn die Frist für die Anmeldebestätigung begrenzt aktiv ist. Lesen Sie das Textfeld in rot, um das Problem zu beheben.';
     385$lang['UAM_Expired_Level'] = '<b>Datenschutz Niveau</b> für Benutzer-Registrierung abgelaufen<br>';
     386$lang['UAM_Generic cannot be pwdreset'] = 'Passwort erneuern kann nicht f';
     387$lang['UAM_Guest cannot be pwdreset'] = 'Passwort erneuern kann nicht für die Gäste gestellt werden!';
     388$lang['UAM_MailExclusion_No'] = 'E-Mail-Domänen Ausgrenzung - Nicht verfügbar, da E-Mails nicht zwingend notwendig sind für die Registrierung!';
     389$lang['UAM_MiscOptions'] = 'Andere Verschiedene Optionen';
     390$lang['UAM_NewFeature'] = 'Neue Funktion!';
     391$lang['UAM_No_Backup_File'] = 'Kein Backup-Datei verf';
     392$lang['UAM_No_Ghosts'] = 'Keine Geister Besucher im Moment';
     393$lang['UAM_No_Userlist'] = 'Keine Besucher Liste im Moment';
     394$lang['UAM_No_Usermanager'] = 'Keine unbestätigten registriert sich vor Liste';
     395$lang['UAM_No_Valid_Level'] = 'Datenschutz Niveau für Benutzer, die nicht ihre Registrierung bestätigt haben<br>';
     396$lang['UAM_Password reset selected users'] = 'Passwort anfordern Erneuerung für ausgewählte Benutzer';
     397$lang['UAM_Password_Reset_Msg'] = 'Bitte, ändern Sie Ihr Passwort!';
     398$lang['UAM_PwdReset'] = 'Passwort erneuern';
     399$lang['UAM_PwdReset_Done'] = 'Passwort erneuert';
     400$lang['UAM_PwdReset_NA'] = 'Original-Passwort';
     401$lang['UAM_PwdReset_Todo'] = 'Passwort erneuert werden';
     402$lang['UAM_RejectConnexion'] = 'Ablehnen Benutzer-Verbindung, bis die Registrierung bestätigt wird,';
     403$lang['UAM_RejectConnexion_Custom_Txt'] = 'Passen Ablehnung Text';
     404$lang['UAM_Reject_Page_Title'] = 'Connexion nicht erlaubt!';
     405$lang['UAM_Restoration_NOK'] = 'Fehler beim Wiederherstellen der Konfiguration. Bitte pr';
     406$lang['UAM_Restoration_OK'] = 'Wiederherstellen der Konfiguration wurde erfolgreich abgeschlossen! Bitte laden UAM-Administration, um die wiederhergestellten Einstellungen anzuzeigen.';
     407$lang['UAM_Restore_File'] = 'Konfiguration wiederherstellen';
     408$lang['UAM_Stuffs_Desc'] = 'Fügt einen Informationsblock für unbestätigte Benutzer';
     409$lang['UAM_Tips1'] = 'Informationen von unbestätigten Registrierung mit UAM und PWG_Stuffs';
     410$lang['UAM_Tips2'] = 'Informationen von unbestätigten Registrierung mit UAM und zusätzliche Seiten';
     411$lang['UAM_Title5'] = 'Verschiedene Optionen';
     412$lang['UAM_USRAuto'] = 'Automatische Verwaltung von Benutzern unbestätigte';
     413$lang['UAM_Valid_Level'] = 'Datenschutz Niveau für Anwender, die ihre Anmeldung bestätigt haben<br>';
     414$lang['UAM_Webmaster cannot be pwdreset'] = 'Passwort erneuern können nicht für den Webmaster eingestellt werden!';
     415$lang['UAM_You cannot pwdreset your account'] = 'Passwort erneuern können nicht auf eigene Rechnung eingestellt werden!';
     416$lang['UAM_You need to confirm pwdreset'] = 'Sie müssen bestätigen, Passwort erneuern (check box)!';
    344417?>
  • extensions/UserAdvManager/branches/2.30/language/en_UK/help.lang.php

    r12667 r13124  
    1717$lang['UAM_remailtxt1Title'] = 'Reminder email with new key generated';
    1818$lang['UAM_remailtxt2Title'] = 'Reminder email without new key generated';
    19 $lang['UAM_lastvisitTitle_d'] = 'This activates a table in the &quot;Tracking users&quot; tab which are registered users listed on the gallery and the date of their last visit and time spent (in days) since their last visit. Monitoring is purely informative for the administrator of the gallery.';
    2019$lang['UAM_tipsTitle_d'] = 'Tips and various examples of use';
    2120
    2221
    2322// --------- Starting below: New or revised $lang ---- from version 2.14.0
    24 $lang['UAM_adminconfmailTitle_d'] = 'You can disable this validation only for user accounts created by the administrator via Piwigo\'s users management interface.<br><br>
    25 By activating this option, email validation for registration will be sent to each user created by admin.<br><br>
     23$lang['UAM_adminconfmailTitle_d'] = 'You can disable this confirmation only for user accounts created by the administrator via Piwigo\'s users management interface.<br><br>
     24By activating this option, email confirmation for registration will be sent to each user created by admin.<br><br>
    2625By disabling this option (default), only the email information is sent (if &quot;Information email to user&quot; is enabled).';
    2726// --------- End: New or revised $lang ---- from version 2.14.0
     
    3534...
    3635';
    37 $lang['UAM_userlistTitle_d'] = 'This page is for information to the administrator. It displays a list of all users registered on the gallery showing the date and number of days since their last visit. The list is sorted in ascending order of number of days.
    38 <br><br>
    39 <b><u>Only when the Ghost Tracker is active</u></b>, the number of days without a visit appears as the following color code, according to the maximum set in the Ghost Tracker options:
    40 <br>
    41 - <b style=&quot;color: lime;&quot;>Green</b> : When the user has visited the gallery <b style=&quot;color: lime;&quot;><u>less than 50%</u></b> of the maximum indicated in the Ghost Tracker.<br>
    42 - <b style=&quot;color: orange;&quot;>Orange</b> : When the user has visited the gallery <b style=&quot;color: orange;&quot;><u> between 50% and 99% </u></b> of the maximum indicated in the Ghost Tracker.<br>
    43 - <b style=&quot;color: red;&quot;>Red</b> : When the user has visited the gallery <b style=&quot;color: red;&quot;><u>for more than 100%</u></b> of the maximum indicated in the Ghost Tracker. <b><u>In this case, the user must also appear in the Ghost Tracker table.</u></b><br>
    44 <br>
    45 Example :
    46 <br>
    47 The maximum period of Ghost Tracker is configured to 100 days.
    48 <br>
    49 A user will appear in green if he visited the gallery for less than 50 days, in orange if his last visit took place between 50 and 99 days and red for 100 days and above.
    50 <br><br>
    51 <b>NOTE</b>: The list does not display who have not validated their registration (if the option of validating the registration is activated). These users are then managed in a special way in the &quot;Tracking validations&quot; tab.
     36$lang['UAM_gtTitle_d'] = 'When Ghost Tracker is enabled and initialized, you will find below the list of registered visitors who have not returned since x days. &quot;x&quot; is the number of days configured in the General Setup tab. In addition, you will find a column indicating whether an email reminder has been sent to targeted visitors. So, you can see at a glance and treat visitors who have not taken account of the reminder.<br><br>In this view, you can:
     37<br><br>
     38- Manually delete accounts <b>(manual drain)</b>
     39<br>
     40- Generate email reminder <b>with resetting the last visit date</b>. This allows to give a wildcard to targeted visitors. If the visitor has already received a reminder, nothing prevents to resent a new mail which will reset again, in fact, the last visit date.
    5241<br><br>
    5342<b>Table Sorting Function</b>: You can sort the data displayed by clicking on the column headers. Hold the SHIFT key to sort up to 4 simultaneous columns.';
    54 $lang['UAM_usermanTitle_d'] = 'When limiting the deadline for registration is enabled, you will find below the list of users whose validation registration is expected, <b style=&quot;text-decoration: underline;&quot;>whether or not</b> they are in time to validate.<br><br>
    55 The registration date is displayed in green when the user concerned is below the time limit to validate his registration. In this case, the validation key is still valid and we can send an email with or without a new validation key.<br><br>
    56 When the registration date appears in red, the validation period has expired. In this case, you must send an email with regeneration of validation key if you want to enable the user to validate their registration.<br><br>
    57 In all cases, it is possible to manually force the validation.<br><br>
    58 In this view, you can:
    59 <br><br>
    60 - Manually delete accounts <b>(manual drain)</b>
    61 <br>
    62 - Generate email reminder <b>without</b> generating a new key. Warning: Send an email reminder to targeted visitors. This function does not reset the date of registration of targeted visitors and the timeout is still valid.
    63 <br>
    64 - Generate email reminder <b>with</b> generating a new key. Warning : Send an email reminder to targeted visitors. This function also resets the date of registration of targeted visitors which equates to extend the deadline for validation.
    65 <br>
    66 - Submit a registration awaiting validation manually even if the expiry date has passed <b>(forcing validation)</b>.
    67 <br><br>
    68 <b>Table Sorting Function</b>: You can sort the data displayed by clicking on the column headers. Hold the SHIFT key to sort up to 4 simultaneous columns.';
    69 $lang['UAM_gtTitle_d'] = 'When Ghost Tracker is enabled and initialized, you will find below the list of registered visitors who have not returned since x days. &quot;x&quot; is the number of days configured in the General Setup tab. In addition, you will find a column indicating whether an email reminder has been sent to targeted visitors. So, you can see at a glance and treat visitors who have not taken account of the reminder.<br><br>In this view, you can:
    70 <br><br>
    71 - Manually delete accounts <b>(manual drain)</b>
    72 <br>
    73 - Generate email reminder <b>with resetting the last visit date</b>. This allows to give a wildcard to targeted visitors. If the visitor has already received a reminder, nothing prevents to resent a new mail which will reset again, in fact, the last visit date.
    74 <br><br>
    75 <b>Table Sorting Function</b>: You can sort the data displayed by clicking on the column headers. Hold the SHIFT key to sort up to 4 simultaneous columns.';
    76 $lang['UAM_confirmmailTitle_d'] = 'This option allows a user to either confirm registration by clicking on a link received in an email sent upon registration or the administrator to manually activate the registration.<br><br>
    77 In first case, the e-mail is composed of a customizable part to introduce a little welcome note and a fixed part containing the activation link that is generated from a random key that can possibly regenerate through the &quot;Tracking validations&quot; tab.<br><br>
    78 Dans le premier cas, le message envoyé comprend une partie fixe, avec le lien d\'activation généré à partir d\'une clef aléatoire (cette clé peut éventuellement être régénérée via l\'onglet &quot;Suivi des validations&quot;), et une partie personnalisable par un texte d\'accueil.
    79 <br><br>
    80 In second case, <b><u>there is no validation key send by email!</u></b>. Visitors have to wait until an administrator validate them himself in &quot;Validation tracking&quot; tab. It\s recommanded to activate the Piwigo\'s option &quot;Email admins when a new user registers&quot; (see in Piwigo\'s configuration options) and to use the &quot;Information email to user&quot; to warn new registers to wait on their account activation.
    81 <br>
    82 <b style=&quot;color: red;&quot;>NB: Options &quot;Deadline for registration validation limited&quot; and &quot;Remind unvalidated users  &quot; have to be set to off when admin\'s manual validation is enabled.</b>
    83 <br><br>
    84 This option is generally used with the automatic assignment of group and/or statutes. For example, a user who has not validated their registration will be set in a specific group of users (with or without restrictions on the gallery) while a user who validated his registration shall be set in a &quot;normal&quot; group.';
    8543// --------- End: New or revised $lang ---- from version 2.15.4
    8644
     
    9755- Automated management : When the period between 2 successive visits is reached, the visitor is automatically deleted or moved into a wait group and/or status. In this second case, an information email can be sent to him.<br><br>
    9856<b style=&quot;color: red;&quot;>Important note : If you enable this feature for the first time or you have reactivated after a long period off during which new visitors are registered, you must initialize or reset the Ghost Tracker (see corresponding instructions on &quot;Ghost Tracker&quot; tab).</b>';
    99 $lang['UAM_mailexcTitle_d'] = 'By default, Piwigo accepts all email addresses in the format xxx@yyy.zz. Enabling this option allows you to exclude certain domains in the format: @ [domain_name].[domain_extension].<br><br>
    100 Examples :<br>
    101 @hotmail.com -> excluding addresses *@hotmail.com<br>
    102 @hotmail -> excluding all addresses *@hotmail*';
    10357$lang['UAM_GTAutoTitle_d'] = 'This option allows to apply rules for automated management of ghosts users.
    10458<br><br>Basic Principle: A user who reaches the maximum time between visits <b><u>and</u></b> has already been notified by email is considered as expired. Then you can apply automated processing rules such as automatic deletion of expired accounts or demotion by restricting access to the gallery (switch automatically to a restricted group and/or status).
     
    10862
    10963
    110 // --------- Starting below: New or revised $lang ---- from version 2.20.0
    111 $lang['UAM_validationlimitTitle_d'] = 'This option allows to limit the validity of key validation email sent to new registrants. Visitors who register will have x days of time to validate their registration. After this period the validation link will expire.
    112 <br><br>
    113 This option is used in conjunction with the &quot;Confirmation of registration&quot;
    114 <br><br>
    115 If this option and the option &quot;Remind unvalidated users&quot; are activated, new options will appear below in this section to enable the automation of unvalidated users management.';
    116 $lang['UAM_remailTitle_d'] = 'This option allows you to send a reminder email to users registered but have not validated their registration on time. It therefore works in conjunction with the &quot;Confirmation of registration&quot;
    117 <br><br>
    118 2 types of emails can be sent: With or without regeneration of the validation key. As appropriate, the content of emails can be customized.
    119 <br><br>
    120 Refer to the &quot;Tracking validations&quot; tab.
    121 <br><br>
    122 If this option and the option &quot;Deadline for registration validation limited&quot; are activated, new options will appear below in this section to enable the automation of unvalidated users management.';
    123 $lang['UAM_USRAutoTitle_d'] = 'Automatic handling of unvalidated visitors is triggered each time you connect to the gallery and works as follows:
    124 <br><br>
    125 - Automatic deletion of accounts not validated in the allotted time without sending automatic email reminder -> &quot;Deadline for registration validation limited&quot; <b><u>enabled</u></b> and &quot;Remind unvalidated users&quot; <b><u>disabled</u></b>.
    126 <br><br>
    127 - Automatically sending a reminder message with a new generation of validation key and automatic deletion of accounts not validated in the time after sending the reminder -> &quot;Deadline for registration validation limited&quot; <b><u>enabled</u></b> et &quot;Remind unvalidated users&quot; <b><u>enabled</u></b>.';
    128 $lang['UAM_USRAutoMailTitle_d'] = 'When activated, this function will automatically send personalized content in &quot;Reminder email with new key generated&quot; to visitors who match criteria.';
    129 $lang['UAM_StuffsTitle_d'] = 'This enables an additional UAM block in PWG Stuffs plugin (if installed) to inform your visitors who did not validate their registration about their condition.
    130 <br><br>
    131 Please refer to the <b>Tips and Examples of Use</b> at the bottom of this page for details.';
    132 // --------- End: New or revised $lang ---- from version 2.20.0
    133 
    134 
    13564// --------- Starting below: New or revised $lang ---- from version 2.20.4
    13665$lang['UAM_HidePasswTitle_d'] = 'Choose here if you want to display the password chosen by the visitor in the information email. If you enable the option, the password will then appear in clear text. If you disable the password will not appear at all.';
     
    14877<br><br>
    14978To use multiple languages, you can use the Extended description plugin\'s tags if it is active.';
    150 $lang['UAM_confirmtxtTitle_d'] = 'Enter the introductory text that you want to appear in the email confirmation of registration.
    151 <br><br>
    152 Further customize the content with special inserted tags:<br>
    153 - <b style=&quot;color: red;&quot;>[username]</b> to automatically insert the name of the destination user of the email.<br>
    154 - <b style=&quot;color: red;&quot;>[mygallery]</b> to insert the title of your gallery.<br>
    155 - <b style=&quot;color: red;&quot;>[myurl]</b> to insert your gallery URL if set in Piwigo\'s configuration options.<br>
    156 - <b style=&quot;color: red;&quot;>[Kdays]</b> to insert the number of days limit to validate a registration (&quot;Deadline for registration validation limited;&quot; have to be enabled).
    157 <br><br>
    158 To use multiple languages, you can use the Extended description plugin\'s tags if it is active.';
    159 $lang['UAM_remailtxt1Title_d'] = 'Enter the introductory text that you want to appear in the reminder email, in addition to the validation key regenerated.
    160 <br><br>
    161 If left blank, the mail reminder will include only the validation link. It is therefore strongly advised to take a little explanatory text. (NB: The text pre-filled with the installation of the plugin is provided as an example).
    162 <br><br>
    163 Further customize the content with special inserted tags:<br>
    164 - <b style=&quot;color: red;&quot;>[username]</b> to automatically insert the name of the destination user of the email.<br>
    165 - <b style=&quot;color: red;&quot;>[mygallery]</b> to insert the title of your gallery.<br>
    166 - <b style=&quot;color: red;&quot;>[myurl]</b> to insert your gallery URL if set in Piwigo\'s configuration options.<br>
    167 - <b style=&quot;color: red;&quot;>[Kdays]</b> to insert the number of days limit to validate a registration (&quot;Deadline for registration validation limited;&quot; have to be enabled).
    168 <br><br>
    169 To use multiple languages, you can use the Extended description plugin\'s tags if it is active.';
    170 $lang['UAM_remailtxt2Title_d'] = 'Enter the introductory text that you want to appear in the reminder email without a validation key regenerated.
    171 <br><br>
    172 If left blank, the mail reminder will be empty. It is therefore strongly advised to take a little explanatory text. (NB: The text pre-filled with the installation of the plugin is provided as an example).
    173 <br><br>
    174 Further customize the content with special inserted tags:<br>
    175 - <b style=&quot;color: red;&quot;>[username]</b> to automatically insert the name of the destination user of the email.<br>
    176 - <b style=&quot;color: red;&quot;>[mygallery]</b> to insert the title of your gallery.<br>
    177 - <b style=&quot;color: red;&quot;>[myurl]</b> to insert your gallery URL if set in Piwigo\'s configuration options.<br>
    178 - <b style=&quot;color: red;&quot;>[Kdays]</b> to insert the number of days limit to validate a registration (&quot;Deadline for registration validation limited; have to be enabled).
    179 <br><br>
    180 To use multiple languages, you can use the Extended description plugin\'s tags if it is active.';
    18179$lang['UAM_infotxtTitle_d'] = 'Enter the introductory text that you want to appear in the information email.
    182 <br><br>
    183 Further customize the content with special inserted tags:<br>
    184 - <b style=&quot;color: red;&quot;>[username]</b> to automatically insert the name of the destination user of the email.<br>
    185 - <b style=&quot;color: red;&quot;>[mygallery]</b> to insert the title of your gallery.<br>
    186 - <b style=&quot;color: red;&quot;>[myurl]</b> to insert your gallery URL if set in Piwigo\'s configuration options.
    187 <br><br>
    188 To use multiple languages, you can use the Extended description plugin\'s tags if it is active.';
    189 $lang['UAM_AdminValidationMail_d'] = 'When an administrator or Webmaster of the gallery manually valid registration pending, a notification email is automatically sent to the user. Enter here the text that appears in this email.
    19080<br><br>
    19181Further customize the content with special inserted tags:<br>
     
    246136$lang['UAM_confirmTitle_d'] = '
    247137- Information email generation<br>
    248 - Register validation email generation<br>
     138- Register confirmation email generation<br>
    249139- Groups, status or privacy level auto joining<br>
    250 - Deadline for registration validation<br>
     140- Deadline for confirmation of registration<br>
    251141- Reminder email generation<br>
    252142...
     
    254144$lang['UAM_confirmgrpTitle'] = 'Groups';
    255145$lang['UAM_confirmstatTitle'] = 'Statutes';
    256 $lang['UAM_confirmgrpTitle_d'] = '<b style=&quot;color: red;&quot;>WARNING : Using groups on validation requires that you have created at least one users group and is defined &quot;by default&quot; in Piwigo\'s user groups management.</b><br><br>
     146$lang['UAM_confirmgrpTitle_d'] = '<b style=&quot;color: red;&quot;>WARNING : Using groups on confirmation requires that you have created at least one users group and is defined &quot;by default&quot; in Piwigo\'s user groups management.</b><br><br>
    257147The groups are validated for use in conjunction with the &quot;Confirmation of registration&quot;';
    258 $lang['UAM_confirmstatTitle_d'] = '<b style=&quot;color: red;&quot;>WARNING : The use of statuses on validation requires that you have kept the &quot;Guest&quot; user with default setting (as user template) for new registered. Note you can set any other user as a template for new registered. Please refer to the Piwigo\'s documentation for more details.</b><br><br>
     148$lang['UAM_confirmstatTitle_d'] = '<b style=&quot;color: red;&quot;>WARNING : The use of statuses on confirmation requires that you have kept the &quot;Guest&quot; user with default setting (as user template) for new registered. Note you can set any other user as a template for new registered. Please refer to the Piwigo\'s documentation for more details.</b><br><br>
    259149The Statutes are validated for use in conjunction with the &quot;Confirmation of registration&quot;';
    260150$lang['UAM_confirmlevelTitle'] = 'Privacy level';
    261151$lang['UAM_confirmlevelTitle_d'] = '<b style=&quot;color: red;&quot;>WARNING : The use of privacy level requires that you have used them with your pictures. Please refer to the Piwigo\'s documentation for more details.</b><br><br>
    262152The privacy level is validated for use in conjunction with the &quot;Confirmation of registration&quot;';
    263 $lang['UAM_GTAutoGpTitle_d'] = 'The automatic change of group, status or privacy level is like a demotion of the accounts involved and working on the same principle as the group, status or privacy level of validation (see &quot;Setting confirmations and validations of registration&quot;). Therefore be to define a group, status and / or level demoting access to the gallery. If this has already been defined with the use of registration confirmation function, you can use the same group / status / level.<br><br>
     153$lang['UAM_GTAutoGpTitle_d'] = 'The automatic change of group, status or privacy level is like a demotion of the accounts involved and working on the same principle as the group, status or privacy level of confirmation (see &quot;Setting confirmations of registration&quot;). Therefore be to define a group, status and / or level demoting access to the gallery. If this has already been defined with the use of registration confirmation function, you can use the same group / status / level.<br><br>
    264154<b style=&quot;color: red;&quot;>Important note :</b> If a ghost user still has not heard from after the time limit and despite the automatic notification by email (if enabled), he\'s automatically deleted from the database.';
    265155$lang['UAM_GTAutoMailTitle_d'] = 'When an account is expired (group / status / privacy level change demoting the visitor), an email information can be sent to clarify the reasons for this change and the means to recover the initial access to the gallery.
    266 <br>To do this, a link to revalidation of registration is attached to the email (automatic generation of a new validation key).<b style=&quot;color: red;&quot;>If the user has already been notified, his account is automatically destroyed.</b>
    267 <br><br>
    268 Enter the custom text that also explain the reasons for the demotion, to accompany the validation link. The custom text is not mandatory but strongly recommended. In fact, your visitors will not appreciate receiving an email containing only a single link without further explanation. ;-)
     156<br>To do this, a link to reconfirmation of registration is attached to the email (automatic generation of a new confirmation key).<b style=&quot;color: red;&quot;>If the user has already been notified, his account is automatically destroyed.</b>
     157<br><br>
     158Enter the custom text that also explain the reasons for the demotion, to accompany the confirmation link. The custom text is not mandatory but strongly recommended. In fact, your visitors will not appreciate receiving an email containing only a single link without further explanation. ;-)
    269159<br><br>
    270160Further customize the content with special inserted tags:<br>
     
    304194
    305195
    306 // --------- Starting below: New or revised $lang ---- from version 2.30.2
    307 $lang['UAM_RejectConnexion_d'] = 'If activated, new registered users who have not validate their registration won\'t be able to connect to the gallery. They will be redirected to a special page to inform them of this state.<br><br>
    308 <b style=&quot;color: red;&quot;>Warning - This feature works only in conjunction with validation groups! See below to set the groups as required.</b>';
    309 $lang['UAM_RejectConnexion_Custom_Txt_d'] = 'Customize here your explanation text for inform unvalidated users that they won\'t be able to connect the gallery until they have validate their registration.
     196// --------- Starting below: New or revised $lang ---- from version 2.30.3
     197$lang['UAM_mailexcTitle_d'] = 'By default, Piwigo accepts all email addresses in the format xxx@yyy.zz. Enabling this option allows you to exclude certain domains in the format: @ [domain_name].[domain_extension].<br><br>
     198Examples :<br>
     199@hotmail.com -> excluding addresses *@hotmail.com<br>
     200@hotmail -> excluding all addresses *@hotmail*<br><br>
     201<b style=&quot;color: red;&quot;>Warning - This feature works only if emails are mandatory for registrations! Please see Piwigo\'s configuration options.</b>';
     202$lang['UAM_userlistTitle_d'] = 'This page is for information to the administrator. It displays a list of all users registered on the gallery showing the date and number of days since their last visit. The list is sorted in ascending order of number of days.
     203<br><br>
     204<b><u>Only when the Ghost Tracker is active</u></b>, the number of days without a visit appears as the following color code, according to the maximum set in the Ghost Tracker options:
     205<br>
     206- <b style=&quot;color: lime;&quot;>Green</b> : When the user has visited the gallery <b style=&quot;color: lime;&quot;><u>less than 50%</u></b> of the maximum indicated in the Ghost Tracker.<br>
     207- <b style=&quot;color: orange;&quot;>Orange</b> : When the user has visited the gallery <b style=&quot;color: orange;&quot;><u> between 50% and 99% </u></b> of the maximum indicated in the Ghost Tracker.<br>
     208- <b style=&quot;color: red;&quot;>Red</b> : When the user has visited the gallery <b style=&quot;color: red;&quot;><u>for more than 100%</u></b> of the maximum indicated in the Ghost Tracker. <b><u>In this case, the user must also appear in the Ghost Tracker table.</u></b><br>
     209<br>
     210Example :
     211<br>
     212The maximum period of Ghost Tracker is configured to 100 days.
     213<br>
     214A user will appear in green if he visited the gallery for less than 50 days, in orange if his last visit took place between 50 and 99 days and red for 100 days and above.
     215<br><br>
     216<b>NOTE</b>: The list does not display who have not confirmed their registration (if the option of confirming the registration is activated). These users are then managed in a special way in the &quot;Tracking confirmations&quot; tab.
     217<br><br>
     218<b>Table Sorting Function</b>: You can sort the data displayed by clicking on the column headers. Hold the SHIFT key to sort up to 4 simultaneous columns.';
     219$lang['UAM_usermanTitle_d'] = 'When limiting the deadline for registration is enabled, you will find below the list of users whose confirmation of registration is expected, <b style=&quot;text-decoration: underline;&quot;>whether or not</b> they are in time to confirm.<br><br>
     220The registration date is displayed in green when the user concerned is below the time limit to confirm his registration. In this case, the confirmation key is still valid and we can send an email with or without a new confirmation key.<br><br>
     221When the registration date appears in red, the confirmation period has expired. In this case, you must send an email with regeneration of confirmation key if you want to enable the user to confirm their registration.<br><br>
     222In all cases, it is possible to manually force the confirmation.<br><br>
     223In this view, you can:
     224<br><br>
     225- Manually delete accounts <b>(manual drain)</b>
     226<br>
     227- Generate email reminder <b>without</b> generating a new key. Warning: Send an email reminder to targeted visitors. This function does not reset the date of registration of targeted visitors and the timeout is still valid.
     228<br>
     229- Generate email reminder <b>with</b> generating a new key. Warning : Send an email reminder to targeted visitors. This function also resets the date of registration of targeted visitors which equates to extend the deadline for confirmation.
     230<br>
     231- Submit a registration awaiting confirmation manually even if the expiry date has passed <b>(forcing confirmation)</b>.
     232<br><br>
     233<b>Table Sorting Function</b>: You can sort the data displayed by clicking on the column headers. Hold the SHIFT key to sort up to 4 simultaneous columns.';
     234$lang['UAM_confirmmailTitle_d'] = 'This option allows a user to either confirm registration by clicking on a link received in an email sent upon registration or the administrator to manually activate the registration.<br><br>
     235In first case, the e-mail is composed of a customizable part to introduce a little welcome note and a fixed part containing the activation link that is generated from a random key that can possibly regenerate through the &quot;Tracking confirmations&quot; tab.<br><br>
     236In second case, <b><u>there is no confirmation key send by email!</u></b>. Visitors have to wait until an administrator confirm them himself in &quot;confirmation tracking&quot; tab. It\s recommanded to activate the Piwigo\'s option &quot;Email admins when a new user registers&quot; (see in Piwigo\'s configuration options) and to use the &quot;Information email to user&quot; to warn new registers to wait on their account activation.
     237<br>
     238<b style=&quot;color: red;&quot;>NB: Options &quot;Deadline for confirmation of registration limited&quot; and &quot;Remind unconfirmed users  &quot; have to be set to off when admin\'s manual confirmation is enabled.</b>
     239<br><br>
     240This option is generally used with the automatic assignment of group and/or statutes. For example, a user who has not confirmed their registration will be set in a specific group of users (with or without restrictions on the gallery) while a user who confirmed his registration shall be set in a &quot;normal&quot; group.';
     241$lang['UAM_validationlimitTitle_d'] = 'This option allows to limit the validity of confirmation key email sent to new registrants. Visitors who register will have x days of time to confirm their registration. After this period the confirmation link will expire.
     242<br><br>
     243This option is used in conjunction with the &quot;Confirmation of registration&quot;
     244<br><br>
     245If this option and the option &quot;Remind unconfirmed users&quot; are activated, new options will appear below in this section to enable the automation of unconfirmed users management.';
     246$lang['UAM_remailTitle_d'] = 'This option allows you to send a reminder email to users registered but have not confirmed their registration on time. It therefore works in conjunction with the &quot;Confirmation of registration&quot;
     247<br><br>
     2482 types of emails can be sent: With or without regeneration of the confirmation key. As appropriate, the content of emails can be customized.
     249<br><br>
     250Refer to the &quot;Tracking confirmations&quot; tab.
     251<br><br>
     252If this option and the option &quot;Deadline for registration confirmation limited&quot; are activated, new options will appear below in this section to enable the automation of unconfirmed users management.';
     253$lang['UAM_USRAutoTitle_d'] = 'Automatic handling of unconfirmed visitors is triggered each time you connect to the gallery and works as follows:
     254<br><br>
     255- Automatic deletion of accounts not confirmed in the allowed time without sending automatic email reminder -> &quot;Deadline for registration confirmation limited&quot; <b><u>enabled</u></b> and &quot;Remind unconfirmed users&quot; <b><u>disabled</u></b>.
     256<br><br>
     257- Automatically sending a reminder message with a new generation of confirmation key and automatic deletion of accounts not confirmed in the time after sending the reminder -> &quot;Deadline for registration confirmation limited&quot; <b><u>enabled</u></b> et &quot;Remind unconfirmed users&quot; <b><u>enabled</u></b>.';
     258$lang['UAM_USRAutoMailTitle_d'] = 'When activated, this function will automatically send personalized content in &quot;Reminder email with new key generated&quot; to visitors who match criteria.';
     259$lang['UAM_StuffsTitle_d'] = 'This enables an additional UAM block in PWG Stuffs plugin (if installed) to inform your visitors who did not confirm their registration about their condition.
     260<br><br>
     261Please refer to the <b>Tips and Examples of Use</b> at the bottom of this page for details.';
     262$lang['UAM_confirmtxtTitle_d'] = 'Enter the introductory text that you want to appear in the email confirmation of registration.
     263<br><br>
     264Further customize the content with special inserted tags:<br>
     265- <b style=&quot;color: red;&quot;>[username]</b> to automatically insert the name of the destination user of the email.<br>
     266- <b style=&quot;color: red;&quot;>[mygallery]</b> to insert the title of your gallery.<br>
     267- <b style=&quot;color: red;&quot;>[myurl]</b> to insert your gallery URL if set in Piwigo\'s configuration options.<br>
     268- <b style=&quot;color: red;&quot;>[Kdays]</b> to insert the number of days limit to confirm a registration (&quot;Deadline for registration confirmation limited;&quot; have to be enabled).
     269<br><br>
     270To use multiple languages, you can use the Extended description plugin\'s tags if it is active.';
     271$lang['UAM_remailtxt1Title_d'] = 'Enter the introductory text that you want to appear in the reminder email, in addition to the confirmation key regenerated.
     272<br><br>
     273If left blank, the mail reminder will include only the confirmation link. It is therefore strongly advised to take a little explanatory text. (NB: The text pre-filled with the installation of the plugin is provided as an example).
     274<br><br>
     275Further customize the content with special inserted tags:<br>
     276- <b style=&quot;color: red;&quot;>[username]</b> to automatically insert the name of the destination user of the email.<br>
     277- <b style=&quot;color: red;&quot;>[mygallery]</b> to insert the title of your gallery.<br>
     278- <b style=&quot;color: red;&quot;>[myurl]</b> to insert your gallery URL if set in Piwigo\'s configuration options.<br>
     279- <b style=&quot;color: red;&quot;>[Kdays]</b> to insert the number of days limit to confirm a registration (&quot;Deadline for registration confirmation limited;&quot; have to be enabled).
     280<br><br>
     281To use multiple languages, you can use the Extended description plugin\'s tags if it is active.';
     282$lang['UAM_remailtxt2Title_d'] = 'Enter the introductory text that you want to appear in the reminder email without a confirmation key regenerated.
     283<br><br>
     284If left blank, the mail reminder will be empty. It is therefore strongly advised to take a little explanatory text. (NB: The text pre-filled with the installation of the plugin is provided as an example).
     285<br><br>
     286Further customize the content with special inserted tags:<br>
     287- <b style=&quot;color: red;&quot;>[username]</b> to automatically insert the name of the destination user of the email.<br>
     288- <b style=&quot;color: red;&quot;>[mygallery]</b> to insert the title of your gallery.<br>
     289- <b style=&quot;color: red;&quot;>[myurl]</b> to insert your gallery URL if set in Piwigo\'s configuration options.<br>
     290- <b style=&quot;color: red;&quot;>[Kdays]</b> to insert the number of days limit to confirm a registration (&quot;Deadline for registration confirmation limited; have to be enabled).
     291<br><br>
     292To use multiple languages, you can use the Extended description plugin\'s tags if it is active.';
     293$lang['UAM_AdminValidationMail_d'] = 'When an administrator or Webmaster of the gallery manually confirm registration pending, a notification email is automatically sent to the user. Enter here the text that appears in this email.
     294<br><br>
     295Further customize the content with special inserted tags:<br>
     296- <b style=&quot;color: red;&quot;>[username]</b> to automatically insert the name of the destination user of the email.<br>
     297- <b style=&quot;color: red;&quot;>[mygallery]</b> to insert the title of your gallery.<br>
     298- <b style=&quot;color: red;&quot;>[myurl]</b> to insert your gallery URL if set in Piwigo\'s configuration options.
     299<br><br>
     300To use multiple languages, you can use the Extended description plugin\'s tags if it is active.';
     301$lang['UAM_RejectConnexion_d'] = 'If activated, new registered users who have not confirm their registration won\'t be able to connect to the gallery. They will be redirected to a special page to inform them of this state.<br><br>
     302<b style=&quot;color: red;&quot;>Warning - This feature works only in conjunction with confirmation groups! See below to set the groups as required.</b>';
     303$lang['UAM_RejectConnexion_Custom_Txt_d'] = 'Customize here your explanation text for inform unconfirmed users that they won\'t be able to connect the gallery until they have confirmed their registration.
    310304<br><br>
    311305This field is compatible with the FCK Editor and, for multi-languages, you can use the [lang] tags of the Extended description plugin if it\'s active.';
    312 // --------- End: New or revised $lang ---- from version 2.30.2
     306$lang['UAM_Tracking registered users_d'] = 'This activates a table in the &quot;Tracking registered users&quot; tab which are registered users listed on the gallery and the date of their last visit and time spent (in days) since their last visit. Monitoring is purely informative for the administrator of the gallery.';
     307// --------- End: New or revised $lang ---- from version 2.30.3
    313308?>
  • extensions/UserAdvManager/branches/2.30/language/en_UK/plugin.lang.php

    r12667 r13124  
    1515$lang['UAM_Password: %s'] = 'Password: %s';
    1616$lang['UAM_Link: %s'] = 'Please, click on this link to confirm your registration : %s';
    17 
    18 
    19 /* Email confirmation page */
    20 $lang['UAM_title_confirm_mail'] = 'Validate your registration';
    21 $lang['UAM_confirm_mail_page_title'] = 'Validate your registration';
    2217
    2318
     
    3126$lang['UAM_empty_pwd'] = '[empty password]';
    3227$lang['UAM_no_update_pwd'] = '[profile updated without password changed]';
    33 $lang['UAM_No_validation_for_Guest'] = 'The "Guest" account is not subject to validation';
    34 $lang['UAM_No_validation_for_default_user'] = 'The default account is not subject to validation';
    35 $lang['UAM_No_validation_for_Webmaster'] = 'The "Webmaster" account is not subject to validation';
    36 $lang['UAM_No_validation_for_your_account'] = 'Your personnal admin account is not subject to validation';
     28$lang['UAM_No_validation_for_Guest'] = 'The "Guest" account is not subject to confirmation';
     29$lang['UAM_No_validation_for_default_user'] = 'The default account is not subject to confirmation';
     30$lang['UAM_No_validation_for_Webmaster'] = 'The "Webmaster" account is not subject to confirmation';
     31$lang['UAM_No_validation_for_your_account'] = 'Your personnal admin account is not subject to confirmation';
    3732
    3833
     
    4237$lang['UAM_%d_Reminder_Sent'] = '%d reminder message was sent';
    4338$lang['UAM_%d_Reminders_Sent'] = '%d reminder messages were sent';
    44 $lang['UAM_%d_Validated_User'] = '%d User validated manually';
    45 $lang['UAM_%d_Validated_Users'] = '%d Users validated manually';
    4639
    4740
     
    9386
    9487
    95 // --------- Starting below: New or revised $lang ---- from version 2.13.0
    96 /* UserList Tab */
    97 $lang['UAM_UserList_Title'] = 'Monitoring registered users';
    98 // --------- End: New or revised $lang ---- from version 2.13.0
    99 
    100 
    10188// --------- Starting below: New or revised $lang ---- from version 2.13.4
    10289/* Global Configuration Tab */
     
    121108$lang['UAM_Confirm_Mail'] = 'Confirmation of registration:';
    122109$lang['UAM_ConfirmMail_Text'] = ' Customizing the confirmation email:';
    123 $lang['UAM_No_Confirm_Group'] = 'Group for users who have not validated their registration<br>';
    124 $lang['UAM_Validated_Group'] = 'Group for users who have validated their registration<br>';
    125 $lang['UAM_No_Confirm_Status'] = 'Status for users who have not validated their registration<br>';
    126 $lang['UAM_Validated_Status'] = 'Status for users who have validated their registration<br>';
    127 $lang['UAM_ValidationLimit_Info'] = 'Deadline for registration validation limited';
     110$lang['UAM_ValidationLimit_Info'] = 'Deadline for registration confirmation limited';
    128111$lang['UAM_ConfirmMail_TimeOut_true'] = ' Enable. Number of days until expiration: ';
    129 $lang['UAM_ConfirmMail_Remail'] = 'Remind unvalidated users';
    130 $lang['UAM_ConfirmMail_ReMail_Txt1'] = 'Customizing the reminder message <b><u>with</u></b> new regeneration of key validation.';
    131 $lang['UAM_ConfirmMail_ReMail_Txt2'] = 'Customizing the reminder message <b><u>without</u></b> regeneration of key validation.';
     112$lang['UAM_ConfirmMail_ReMail_Txt1'] = 'Customizing the reminder message <b><u>with</u></b> new regeneration of confirmation key.';
     113$lang['UAM_ConfirmMail_ReMail_Txt2'] = 'Customizing the reminder message <b><u>without</u></b> regeneration of confirmation key.';
    132114
    133115$lang['UAM_GhostTracker'] = 'Ghost visitors management (Ghost Tracker)';
    134116$lang['UAM_GhostTracker_true'] = ' Enable. Maximum period in days between two visits: ';
    135117$lang['UAM_GhostTracker_ReminderText'] = 'Customizing Ghost Tracker\'s reminder message';
    136 $lang['UAM_LastVisit'] = ' Tracking registered users';
    137 
    138 $lang['UAM_Tab_UserManager'] = 'Tracking validations';
    139 
    140 /* UserManager Tab */
    141 $lang['UAM_SubTitle3'] = 'Tracking validations';
    142 $lang['UAM_UserManager_Title'] = 'Tracking validations';
     118
    143119/* Ghost Tracker Tab */
    144120$lang['UAM_SubTitle4'] = 'Ghost Tracker';
     
    146122$lang['UAM_GhostTracker_Title'] = 'Ghost visitors management';
    147123$lang['UAM_GhostTracker_Init'] = 'If you enable this feature for the first time or you have reactivated after a long period off during which new visitors are registered, you must initialize or reset the Ghost Tracker. This action is done only after activation or reactivation of the option. Please click <u>once</u> the reset button below.';
    148 /* UserList Tab */
    149 $lang['UAM_SubTitle5'] = 'Tracking users';
    150 $lang['UAM_Tab_UserList'] = 'Tracking users';
    151124/* Mailing */
    152125$lang['UAM_Add of %s'] = 'Profile created for %s';
    153126$lang['UAM_Update of %s'] = 'Profile %s updated';
    154 
    155 /* Mailing */
    156127$lang['UAM_Ghost_reminder_of_%s'] = '%s, this is a reminder email';
    157 $lang['UAM_Reminder_with_key_of_%s'] = '%s, your validation key has been renewed';
    158 $lang['UAM_Reminder_without_key_of_%s'] = '%s, your validation key will expire';
     128$lang['UAM_Reminder_with_key_of_%s'] = '%s, your confirmation key has been renewed';
     129$lang['UAM_Reminder_without_key_of_%s'] = '%s, your confirmation key will expire';
    159130/* Errors and Warnings */
    160131$lang['UAM_Err_GhostTracker_Settings'] = 'This page is available only if "Ghost Tracker" is active in "Setting the registrations followed and other options".';
     
    173144$lang['UAM_LastVisit_Date'] = 'Last visit';
    174145$lang['UAM_Nb_Days'] = 'Difference in days';
    175 $lang['UAM_Err_UserManager_Settings'] = 'This page is available only if "Confirmation of registration" is active and if a group of visitors not validated is configured in "Setting confirmations and validations of registration".';
    176146// --------- End: New or revised $lang ---- from version 2.15.0
    177147
     
    185155
    186156// --------- Starting below: New or revised $lang ---- from version 2.15.4
    187 $lang['UAM_Force_Validation'] = 'Manual validation';
    188 $lang['UAM_Confirm_Mail_true'] = ' Enable - Validation by user';
    189 $lang['UAM_Confirm_Mail_local'] = ' Enable - Validation by admin (no validation key sent)';
     157$lang['UAM_Force_Validation'] = 'Manual confirmation';
     158$lang['UAM_Confirm_Mail_true'] = ' Enable - Confirmation by user';
     159$lang['UAM_Confirm_Mail_local'] = ' Enable - Confirmation by admin (no confirmation key sent)';
    190160// --------- End: New or revised $lang ---- from version 2.15.4
    191161
     
    200170$lang['UAM_Error_GTAutoMail_cannot_be_set_without_ConfirmMail'] = 'Consistency error in the chosen configuration:
    201171<br><br>
    202 "Setting the registered users monitoring and other options > Ghost visitors management (Ghost Tracker) > Automatic management of ghosts users > Automatically sending an email when changing group / status" can not be activated if "Setting confirmations and validations of registration > Confirmation of registration - Validation by user" is not enabled at first.
     172"Setting the registered users monitoring and other options > Ghost visitors management (Ghost Tracker) > Automatic management of ghosts users > Automatically sending an email when changing group / status" can not be activated if "Setting confirmations of registration > Confirmation of registration - Confirmation by user" is not enabled at first.
    203173<br><br>
    204174To ensure consistency, the option "Automatically sending an email when changing group / status" was automatically repositioned "disabled".
    205175<br><br>';
    206176$lang['UAM_Demotion of %s'] = 'Demotion of %s';
    207 $lang['UAM_AdminValidationMail_Text'] = 'Notification of manual registration validation';
    208 $lang['UAM_Validation of %s'] = 'Validation of %s';
     177$lang['UAM_AdminValidationMail_Text'] = 'Notification of manual confirmation of registration';
     178$lang['UAM_Validation of %s'] = 'Confirmation of %s';
    209179// --------- End: New or revised $lang ---- from version 2.16.0
    210180
     
    212182// --------- Starting below: New or revised $lang ---- from version 2.20.0
    213183$lang['UAM_CustomPasswRetr'] = 'Customize lost password email content';
    214 $lang['UAM_USRAuto'] = 'Automatic management of unvalidated users';
    215184$lang['UAM_USRAutoDel'] = 'Custom message on deleted account';
    216185$lang['UAM_USRAutoMail'] = 'Automated email reminder';
    217186$lang['UAM_Disable'] = ' Disable (default)';
    218187$lang['UAM_Enable'] = ' Enable ';
    219 $lang['UAM_Tips1'] = 'Information of non-validated registration with UAM and PWG_Stuffs';
    220 $lang['UAM_Tips1_txt'] = '
    221           <ul>
    222             <li>
    223             Goals: Inform the visitor that the registration is awaiting approval by displaying a personal block on the home page of the gallery, and this, as registration is not approved.
    224             <br><br>
    225             <b>Recall: In standard operation, the "Guest" only sees the public categories, without information message.</b>
    226             </li><br><br>
    227             <li>
    228 Prerequisite:<br>
    229 - A gallery with all or some private categories, visible only by registered users<br>
    230 - 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>
    231 - UAM plugin<br>
    232 - PWG Stuffs plugin, for adding a special UAM module<br>
    233 - Optionally, the plugin Extended Description to support multi-languages<br>
    234             </li><br><br>
    235             <li>
    236 Stages:<br><br>
    237 A. In plugin UAM:
    238               <ol>
    239                 <li>Enable registration confirmation</li>
    240                 <li>Enable PWG Stuffs module option</li>
    241                 <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>
    242                 <li>Select the "Waiting" group under "For users who have not validated their registration"</li>
    243                 <li>Select the "Validated" group under "For users who have validated their registration"</li>
    244                 <li>Save the plugin configuration</li>
    245               </ol>
    246 <br>
    247 B. In plugin PWG Stuffs :
    248               <ol>
    249                 <li>Go to tab "Add a new module"</li>
    250                 <li>Choose "UAM Module"</li>
    251                 <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>
    252                 <li>Complete content of the module with the message information to be displayed to users not validated. As UAM, languages markup may be used if the plugin is enabled Extended Description</li>
    253                 <li>Check "Display the module on the homepage of the site"</li>
    254                 <li>Validate the configuration of the module</li>
    255               </ol>
    256             </li>
    257           </ul>';
    258 $lang['UAM_Tips2'] = 'Information of non-validated registration with UAM and Additional Pages';
    259 $lang['UAM_Tips2_txt'] = '
    260           <ul>
    261             <li>
    262             Goals: Inform the visitor that the registration is awaiting validation by posting an additional page replacing the standard index page gallery at each of these connections, and this, as registration is not approved.
    263             <br><br>
    264             Advantages over the method with PWG_Stuffs: Allow formatting information and displaying the information immediately upon registration of visitors.
    265             </li><br><br>
    266             <li>
    267 Prerequisite:<br>
    268 - A gallery with all or some private categories, visible only by registered users<br>
    269 - 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>
    270 - UAM plugin<br>
    271 - Additional Pages plugin for adding and managing an additional page to replace the default index page of the gallery<br>
    272 - Optionally, the plugin Extended Description to support multi-languages<br>
    273             </li><br><br>
    274             <li>
    275 Stages:<br><br>
    276 A. In plugin UAM:
    277               <ol>
    278                 <li>Enable registration confirmation</li>
    279                 <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>
    280                 <li>Select the "Waiting" group under "For users who have not validated their registration"</li>
    281                 <li>Select the "Validated" group under "For users who have validated their registration"</li>
    282                 <li>Save the plugin configuration</li>
    283               </ol>
    284 <br>
    285 B. In plugin Additional Pages:<br>
    286                 <b>NOTE : The management of access rights for groups on Additional Pages must be turned on (see plugin configuration settings).</b>
    287                 <br>
    288               <ol>
    289                 <li>Add a new page with at least the following parameters:</li>
    290                 <ul>
    291                   <li>Page name: The name you wish to give to the additional page (ie: Registration not validated)</li>
    292                   <li>Set as homepage checked</li>
    293                   <li>Groups allowed: Check the box corresponding to the group "Waiting" configured in UAM</li>
    294                   <li>Content: The text you want to use for visitors.</li>
    295                 </ul>
    296                 <br>
    297                 <li>And that\'s it! Only visitors registered and whose registration has not been validated will see this additional index page.</li>
    298               </ol>
    299             </li>
    300           </ul>';
    301188$lang['UAM_No_Ghosts'] = 'No ghosts visitors for the moment';
    302189$lang['UAM_No_Userlist'] = 'No visitors to list for the moment';
    303 $lang['UAM_No_Usermanager'] = 'No unvalidated registers to list for the moment';
    304190$lang['UAM_Stuffs_Title'] = 'UAM block';
    305 $lang['UAM_Stuffs_Desc'] = 'Adds an information block for unvalidated users';
    306191$lang['UAM_Stuffs'] = 'PWG Stuffs block';
    307192// --------- End: New or revised $lang ---- from version 2.20.0
     
    322207
    323208// --------- Starting below: New or revised $lang ---- from version 2.20.11
    324 $lang['UAM_Error_Using_illegal_flag'] = 'Syntax error ! The [Kdays] AutoText flag is used as the "Deadline for registration validation limited" option was not activated. Please activate the option or correct the text field(s) colored in red.';
     209$lang['UAM_Error_Using_illegal_flag'] = 'Syntax error ! The [Kdays] AutoText flag is used as the "Deadline for registration confirmation limited" option was not activated. Please activate the option or correct the text field(s) colored in red.';
    325210// --------- End: New or revised $lang ---- from version 2.20.11
    326211
    327212
    328213// --------- Starting below: New or revised $lang ---- from version 2.30.0
    329 $lang['UAM_Confirm_grpstat_notice'] = 'Caution: It is advisable to use either the group or the validation statutes and not both simultaneously. The privacy level can be used in conjunction with a group or status assignment.';
     214$lang['UAM_Confirm_grpstat_notice'] = 'Caution: It is advisable to use either the group or the confirmation statutes and not both simultaneously. The privacy level can be used in conjunction with a group or status assignment.';
    330215$lang['UAM_Confirm_Group'] = 'Groups<br>(leave ------- to not affect group)';
    331216$lang['UAM_Confirm_Status'] = 'Statutes<br>(leave ------- to keep the Piwigo\'s default)';
    332217$lang['UAM_Confirm_Level'] = 'Privacy level<br>(leave ------- to keep the Piwigo\'s default)';
    333 $lang['UAM_No_Valid_Level'] = 'Privacy level for users who have not validated their registration<br>';
    334 $lang['UAM_Valid_Level'] = 'Privacy level for users who have validated their registration<br>';
    335218$lang['UAM_GTAutoGp'] = 'Automatic change of group / status / privacy level';
    336219$lang['UAM_Expired_Level'] = '<b>Privacy level</b> for user\'s registration has expired<br>';
     
    351234$lang['UAM %d user pwdreseted'] = 'Password renewal required for %d user';
    352235$lang['UAM %d users pwdreseted'] = 'Password renewal required for %d users';
    353 $lang['UAM_Error_Using_illegal_Kdays'] = 'Using the [Kdays] tag is allowed only if the deadline for registration validation limited is active. Refer to the text field in red to correct the problem.';
     236$lang['UAM_Error_Using_illegal_Kdays'] = 'Using the [Kdays] tag is allowed only if the deadline for registration confirmation limited is active. Refer to the text field in red to correct the problem.';
    354237$lang['UAM_Default_InfoMail_Txt'] = 'Hello [username]! Thank you to have register on [mygallery].
    355238
     
    368251The admin of the gallery [mygallery] - [myurl]';
    369252$lang['UAM_Default_GhstDeletion_Txt'] = 'Sorry [username], your account has been deleted due to a too long time passed since your last visit at [mygallery]. Please register again.';
    370 $lang['UAM_Default_GhstDemotion_Txt'] = 'Sorry [username], your account has been deprecated due to a too long time passed since your last visit at [mygallery]. Please, use the following link to revalidate your account:';
    371 $lang['UAM_Default_AdminValidation_Txt'] = 'Hello [username]! Thank you for registering and welcome to [mygallery].
    372 
    373 Your account has been manually validated by the webmaster of [mygallery]. You may now log in at [myurl] and make any appropriate changes to your profile.';
    374253$lang['UAM_Default_PwdRequest_Txt'] = 'You have requested a password reset on our gallery. Please, find below your new connection settings.';
    375 $lang['UAM_Default_ValidationTimeout_Txt'] = 'Sorry, your account has been deleted because you have not validated your registration in requested time ([Kdays] days). Please, retry registration with a valid and non blocked email account.';
    376 $lang['UAM_Default_CfmMail_Remail_Txt1'] = 'Hello [username].
    377                
    378 This is a reminder message because you registered on our gallery [mygallery] but you do not validate your registration and your validation key has expired. To still allow you to access to our gallery, your validation period has been reset. You have again x days to validate your registration.
    379 
    380 Note: After this period, your account will be permanently deleted.';
    381 $lang['UAM_Default_CfmMail_Remail_Txt2'] = 'Hello [username].
    382 
    383 This is a reminder message because you registered on our gallery [mygallery] but you do not validate your registration and your validation key will expire. To allow you access to our gallery, you have x days to confirm your registration by clicking on the link in the message you should have received when you registered.
    384 
    385 Note: After this period, your account will be permanently deleted.';
    386254$lang['UAM_Default_CfmMail_Custom_Txt1'] = 'Welcome [username]! You have confirmed that you are human and may now use [mygallery]!';
    387 $lang['UAM_Default_CfmMail_Custom_Txt2'] = 'Your activation key is incorrect or expired or you have already validated your account, please contact the webmaster to fix this problem.';
    388255$lang['UAM_DumpTxt'] = 'Backup and restore your configuration';
    389256$lang['UAM_Restore'] = 'To restore the backup file of your configuration. Only the saved file on the server is taken into account.
     
    407274$lang['UAM_RedirToProfile'] = 'Redirect to Customization page';
    408275$lang['UAM_Title1'] = 'Restrictions for registrations';
    409 $lang['UAM_Title2'] = 'Confirmations and validations of registration';
     276$lang['UAM_Title2'] = 'Confirmations of registration';
    410277$lang['UAM_GTAutoMail'] = 'Automatically sending an email when changing group / status / privacy level';
    411278$lang['UAM_NewFeature'] = 'New feature !';
    412 $lang['UAM_RejectConnexion'] = 'Reject user\'s connexion until registration is validated';
    413279$lang['UAM_RejectConnexion_Custom_Txt'] = 'Customize rejection text';
    414 $lang['UAM_Default_RejectConnexion_Txt'] = 'Sorry, you don\'t have validate your registration yet, so you can\'t connect the gallery now. Please check your email box. You should find an email sent by the gallery, containing a link to perform your validation. If not, please contact the webmaster.';
    415280$lang['UAM_Reject_Page_Title'] = 'Connexion not allowed !';
    416281// --------- End: New or revised $lang ---- from version 2.30.2
     282
     283
     284// --------- Starting below: New or revised $lang ---- from version 2.30.3
     285$lang['UAM_MailExclusion_No'] = 'Email domains exclusion - Not available because emails are not mandatory for registrations !';
     286$lang['UAM_USRAuto'] = 'Automatic management of unconfirmed users';
     287$lang['UAM_ConfirmMail_Remail'] = 'Remind unconfirmed users';
     288$lang['UAM_No_Usermanager'] = 'No unconfirmed registers to list for the moment';
     289$lang['UAM_Stuffs_Desc'] = 'Adds an information block for unconfirmed users';
     290/* Email confirmation page */
     291$lang['UAM_title_confirm_mail'] = 'Confirm your registration';
     292$lang['UAM_confirm_mail_page_title'] = 'Confirm your registration';
     293$lang['UAM_%d_Validated_User'] = '%d User confirmed manually';
     294$lang['UAM_%d_Validated_Users'] = '%d Users confirmed manually';
     295$lang['UAM_No_Confirm_Group'] = 'Group for users who have not confirmed their registration<br>';
     296$lang['UAM_Validated_Group'] = 'Group for users who have confirmed their registration<br>';
     297$lang['UAM_No_Confirm_Status'] = 'Status for users who have not confirmed their registration<br>';
     298$lang['UAM_Validated_Status'] = 'Status for users who have confirmed their registration<br>';
     299$lang['UAM_No_Valid_Level'] = 'Privacy level for users who have not confirmed their registration<br>';
     300$lang['UAM_Valid_Level'] = 'Privacy level for users who have confirmed their registration<br>';
     301$lang['UAM_Err_UserManager_Settings'] = 'This page is available only if "Confirmation of registration" is active and if a group of visitors not confirmed is configured in "Setting confirmations of registration".';
     302$lang['UAM_Tips1'] = 'Information of unconfirmed registration with UAM and PWG_Stuffs';
     303$lang['UAM_Tips1_txt'] = '
     304          <ul>
     305            <li>
     306            Goals: Inform the visitor that the registration is awaiting approval by displaying a personal block on the home page of the gallery, and this, as registration is not approved.
     307            <br><br>
     308            <b>Recall: In standard operation, the "Guest" only sees the public categories, without information message.</b>
     309            </li><br><br>
     310            <li>
     311Prerequisite:<br>
     312- A gallery with all or some private categories, visible only by registered users<br>
     313- At least 2 following Piwigo\'s users groups: "Waiting," without permission on private categories, and "Confirmed" with all the permissions on the private categories<br>
     314- UAM plugin<br>
     315- PWG Stuffs plugin, for adding a special UAM module<br>
     316- Optionally, the plugin Extended Description to support multi-languages<br>
     317            </li><br><br>
     318            <li>
     319Stages:<br><br>
     320A. In plugin UAM:
     321              <ol>
     322                <li>Enable registration confirmation</li>
     323                <li>Enable PWG Stuffs module option</li>
     324                <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>
     325                <li>Select the "Waiting" group under "For users who have not confirmed their registration"</li>
     326                <li>Select the "Confirmed" group under "For users who have confirmed their registration"</li>
     327                <li>Save the plugin configuration</li>
     328              </ol>
     329<br>
     330B. In plugin PWG Stuffs :
     331              <ol>
     332                <li>Go to tab "Add a new module"</li>
     333                <li>Choose "UAM Module"</li>
     334                <li>Configure the module, indicating the title (eg "Registration pending confirmation") and its description, and only check "Waiting" in the list of groups allowed</li>
     335                <li>Complete content of the module with the message information to be displayed to users not confirmed. As UAM, languages markup may be used if the plugin is enabled Extended Description</li>
     336                <li>Check "Display the module on the homepage of the site"</li>
     337                <li>Validate the configuration of the module</li>
     338              </ol>
     339            </li>
     340          </ul>';
     341$lang['UAM_Tips2'] = 'Information of unconfirmed registration with UAM and Additional Pages';
     342$lang['UAM_Tips2_txt'] = '
     343          <ul>
     344            <li>
     345            Goals: Inform the visitor that the registration is awaiting confirmation by posting an additional page replacing the standard index page gallery at each of these connections, and this, as registration is not approved.
     346            <br><br>
     347            Advantages over the method with PWG_Stuffs: Allow formatting information and displaying the information immediately upon registration of visitors.
     348            </li><br><br>
     349            <li>
     350Prerequisite:<br>
     351- A gallery with all or some private categories, visible only by registered users<br>
     352- At least 2 following Piwigo\'s users groups: "Waiting," without permission on private categories, and "Confirmed" with all the permissions on the private categories<br>
     353- UAM plugin<br>
     354- Additional Pages plugin for adding and managing an additional page to replace the default index page of the gallery<br>
     355- Optionally, the plugin Extended Description to support multi-languages<br>
     356            </li><br><br>
     357            <li>
     358Stages:<br><br>
     359A. In plugin UAM:
     360              <ol>
     361                <li>Enable registration confirmation</li>
     362                <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>
     363                <li>Select the "Waiting" group under "For users who have not confirmed their registration"</li>
     364                <li>Select the "Confirmed" group under "For users who have confirmed their registration"</li>
     365                <li>Save the plugin configuration</li>
     366              </ol>
     367<br>
     368B. In plugin Additional Pages:<br>
     369                <b>NOTE : The management of access rights for groups on Additional Pages must be turned on (see plugin configuration settings).</b>
     370                <br>
     371              <ol>
     372                <li>Add a new page with at least the following parameters:</li>
     373                <ul>
     374                  <li>Page name: The name you wish to give to the additional page (ie: Registration not confirmed)</li>
     375                  <li>Set as homepage checked</li>
     376                  <li>Groups allowed: Check the box corresponding to the group "Waiting" configured in UAM</li>
     377                  <li>Content: The text you want to use for visitors.</li>
     378                </ul>
     379                <br>
     380                <li>And that\'s it! Only visitors registered and whose registration has not been confirmed will see this additional index page.</li>
     381              </ol>
     382            </li>
     383          </ul>';
     384$lang['UAM_Default_GhstDemotion_Txt'] = 'Sorry [username], your account has been deprecated due to a too long time passed since your last visit at [mygallery]. Please, use the following link to reconfirm your account:';
     385$lang['UAM_Default_AdminValidation_Txt'] = 'Hello [username]! Thank you for registering and welcome to [mygallery].
     386
     387Your account has been manually confirmed by the webmaster of [mygallery]. You may now log in at [myurl] and make any appropriate changes to your profile.';
     388$lang['UAM_Default_ValidationTimeout_Txt'] = 'Sorry, your account has been deleted because you have not confirmed your registration in requested time ([Kdays] days). Please, retry registration with a valid and non blocked email account.';
     389$lang['UAM_Default_CfmMail_Remail_Txt1'] = 'Hello [username].
     390               
     391This is a reminder message because you registered on our gallery [mygallery] but you do not confirm your registration and your confirmation key has expired. To still allow you to access to our gallery, your confirmation period has been reset. You have again x days to confirm your registration.
     392
     393Note: After this period, your account will be permanently deleted.';
     394$lang['UAM_Default_CfmMail_Remail_Txt2'] = 'Hello [username].
     395
     396This is a reminder message because you registered on our gallery [mygallery] but you do not confirm your registration and your confirmation key will expire. To allow you access to our gallery, you have x days to confirm your registration by clicking on the link in the message you should have received when you registered.
     397
     398Note: After this period, your account will be permanently deleted.';
     399$lang['UAM_Default_CfmMail_Custom_Txt2'] = 'Your activation key is incorrect or expired or you have already confirmed your account, please contact the webmaster to fix this problem.';
     400$lang['UAM_RejectConnexion'] = 'Reject user\'s connexion until registration is confirmed';
     401$lang['UAM_Default_RejectConnexion_Txt'] = 'Sorry, you don\'t have confirmed your registration yet, so you can\'t connect the gallery now. Please check your email box. You should find an email sent by the gallery, containing a link to perform your confirmation. If not, please contact the webmaster.';
     402$lang['UAM_Tracking registered users'] = 'Tracking registered users';
     403$lang['UAM_Tracking confirmations'] = 'Tracking confirmations';
     404// --------- End: New or revised $lang ---- from version 2.30.3
    417405?>
  • extensions/UserAdvManager/branches/2.30/language/es_ES/help.lang.php

    r12667 r13124  
    3131$lang['UAM_remailtxt1Title'] = 'Recordatorio por correo electrónico con la llave generada';
    3232$lang['UAM_remailtxt2Title'] = 'Recordatorio por correo electrónico sin la llave generada';
    33 $lang['UAM_lastvisitTitle_d'] = 'Esto activa una tabla de &quot;Seguimiento de los usuarios&quot; ficha de matriculaci&oacute;n de los usuarios que aparecen en la galer&iacute;a y la fecha de su &uacute;ltima visita y el tiempo (en d&iacute;as) desde su &uacute;ltima visita. El seguimiento es meramente informativo para el administrador de la galer&iacute;a.';
    3433$lang['UAM_tipsTitle_d'] = 'Consejos y diversos ejemplos de uso de';
    3534
  • extensions/UserAdvManager/branches/2.30/language/es_ES/plugin.lang.php

    r12667 r13124  
    9393$lang['UAM_mail_exclusionlist_error'] = '¡Advertencia! Ha introducido una nueva línea (CR-LF) al principio de la lista de exclusión de correo electrónico (en rojo abajo). Aunque esta nueva línea no es visible, todavía está presente y puede causar un mal funcionamiento del plugin. Por favor, vuelva a escribir en su lista de exclusión de una manera que no comienza con una nueva línea.';
    9494// --------- End: New or revised $lang ---- from version 2.12.8
    95 
    96 
    97 // --------- Starting below: New or revised $lang ---- from version 2.13.0
    98 /* UserList Tab */
    99 $lang['UAM_UserList_Title'] = 'Seguimiento de los usuarios registrados';
    100 // --------- End: New or revised $lang ---- from version 2.13.0
    10195
    10296
     
    143137$lang['UAM_GhostTracker_true'] = ' Activar. Período máximo de días entre dos visitas: ';
    144138$lang['UAM_GhostTracker_ReminderText'] = 'Personalización del mensaje recordatorio de Ghost Tracker';
    145 $lang['UAM_LastVisit'] = ' Seguimiento de usuarios registrados';
    146 
    147 $lang['UAM_Tab_UserManager'] = 'Seguimiento de las validaciones';
    148 
    149 /* UserManager Tab */
    150 $lang['UAM_SubTitle3'] = 'Seguimiento de las validaciones';
    151 $lang['UAM_UserManager_Title'] = 'Seguimiento de las validaciones';
     139
    152140/* Ghost Tracker Tab */
    153141$lang['UAM_SubTitle4'] = 'Ghost Tracker';
     
    155143$lang['UAM_GhostTracker_Title'] = 'Gestión de los espíritu visitantes';
    156144$lang['UAM_GhostTracker_Init'] = 'Si habilita esta función por primera vez o ha reactivado después de un largo período durante el cual los visitantes se han registrado de nuevo, usted debe inicializar o restablecer el Rastreador de Ghost. Esta acción se realiza sólo después de la activación o reactivación de la opción. Por favor, haga clic <u>una vez</u>en el botón de reset de abajo.';
    157 /* UserList Tab */
    158 $lang['UAM_SubTitle5'] = 'Seguimiento de los usuarios';
    159 $lang['UAM_Tab_UserList'] = 'Seguimiento de los usuarios';
    160145/* Mailing */
    161146$lang['UAM_Add of %s'] = 'Perfil creado para %s';
     
    269254$lang['UAM_GTAutoGp'] = 'Cambio automático de grupo / estado / nivel de confidencialidad';
    270255$lang['UAM_GTAutoMail'] = 'Automáticamente el envío de un correo electrónico cuando se cambia de grupo / estado / nivel de confidencialidad';
    271 /*TODO*/$lang['UAM_NewFeature'] = 'New feature !';
    272 /*TODO*/$lang['UAM_RejectConnexion'] = 'Reject user\'s connexion until registration is validated';
    273 /*TODO*/$lang['UAM_RejectConnexion_Custom_Txt'] = 'Customize rejection text';
    274 /*TODO*/$lang['UAM_Default_RejectConnexion_Txt'] = 'Sorry, you don\'t have validate your registration yet, so you can\'t connect the gallery now. Please check your email box. You should find an email sent by the gallery, containing a link to perform your validation. If not, please contact the webmaster.';
    275 /*TODO*/$lang['UAM_Reject_Page_Title'] = 'Connexion not allowed !';
    276256// --------- End: New or revised $lang ---- from version 2.30.2
    277257?>
  • extensions/UserAdvManager/branches/2.30/language/fr_FR/help.lang.php

    r12667 r13124  
    1616$lang['UAM_remailtxt1Title'] = 'Message de rappel avec regénération de clé';
    1717$lang['UAM_remailtxt2Title'] = 'Message de rappel sans regénération de clé';
    18 $lang['UAM_lastvisitTitle_d'] = 'Cette option active, dans l\'onglet &quot;Suivi des utilisateurs&quot;, un tableau recensant les utilisateurs inscrits, la date de leur dernière visite et le nombre de jours écoulés depuis leur dernière visite. Il s\'agit d\'un suivi purement informatif pour l\'administrateur de la galerie.';
    1918$lang['UAM_tipsTitle_d'] = 'Astuces et exemples divers d\'utilisation';
    2019
    2120
    2221// --------- Starting below: New or revised $lang ---- from version 2.14.0
    23 $lang['UAM_adminconfmailTitle_d'] = 'On peut ici désactiver la validation des inscriptions uniquement pour les comptes d\'utilisateurs créés par l\'administrateur via l\'interface de gestion des utilisateurs de Piwigo.<br><br>
    24 En activant cette option, l\'email de validation d\'inscription sera envoyé à chaque utilisateur créé par l\'admin.<br><br>
     22$lang['UAM_adminconfmailTitle_d'] = 'On peut ici désactiver la confirmation des inscriptions uniquement pour les comptes d\'utilisateurs créés par l\'administrateur via l\'interface de gestion des utilisateurs de Piwigo.<br><br>
     23En activant cette option, l\'email de confirmation d\'inscription sera envoyé à chaque utilisateur créé par l\'admin.<br><br>
    2524En désactivant cette option (mode par défaut), seul l\'email d\'information est envoyé (si la fonction &quot;Email d\'information &agrave; l\'utilisateur&quot; est activée).';
    2625// --------- End: New or revised $lang ---- from version 2.14.0
     
    2827
    2928// --------- Starting below: New or revised $lang ---- from version 2.15.4
    30 $lang['UAM_restricTitle_d'] = '
    31 - Exclusion de caractères dans les noms d\'utilisateurs<br>
    32 - Renforcement des mots de passe<br>
    33 - Exclusion des domaines de messagerie<br>
    34 ...
    35 ';
    36 $lang['UAM_userlistTitle_d'] = 'Cette page est à titre d\'information pour l\'administrateur. Elle affiche la liste de tous les utilisateurs inscrits sur la galerie en faisant apparaitre la date et le nombre de jours depuis leur dernière visite. La liste est triée dans l\'ordre croissant du nombre de jours.
    37 <br><br>
    38 <b><u>Uniquement lorsque le Ghost Tracker est actif</u></b>, le nombre de jours sans visite s\'affiche selon le code couleur suivant, en fonction du délai maximum paramétré dans les options du Ghost Tracker :
    39 <br>
    40 - <b style=&quot;color: lime;&quot;>En vert</b> : Lorsque l\'utilisateur a visité la galerie <b style=&quot;color: lime;&quot;><u>depuis moins de 50%</u></b> du délai maximum renseigné dans le Ghost Tracker.<br>
    41 - <b style=&quot;color: orange;&quot;>En orange</b> : Lorsque l\'utilisateur a visité la galerie <b style=&quot;color: orange;&quot;><u>entre 50% et 99%</u></b> du délai maximum renseigné dans le Ghost Tracker.<br>
    42 - <b style=&quot;color: red;&quot;>En rouge</b> : Lorsque l\'utilisateur a visité la galerie <b style=&quot;color: red;&quot;><u>depuis 100% et plus</u></b> du délai maximum renseigné dans le Ghost Tracker. <b><u>Dans ce cas, l\'utilisateur doit également apparaitre dans le tableau du Ghost Tracker.</u></b><br>
    43 <br>
    44 Exemple:
    45 <br>
    46 Le délai maximum du Ghost Tracker est configuré à 100 jours.
    47 <br>
    48 Un utilisateur apparaitra en vert s\'il a visité la galerie depuis moins de 50 jours, en orange si sa dernière visite s\'est déroulée entre 50 et 99 jours et en rouge à 100 jours et au-delà.
    49 <br><br>
    50 <b>A NOTER</b>: La liste n\'affiche pas les inscrits qui n\'auraient pas validé leur inscription (si l\'option de validation de l\'inscription est activée). Ces utilisateurs sont alors gérés de manière particulière dans l\'onglet &quot;Suivi des validations&quot;.
     29$lang['UAM_gtTitle_d'] = 'Lorsque la gestion des visiteurs fantômes est activée et initialisée, vous trouverez ci-dessous la liste des visiteurs inscrits sur votre galerie et qui ne sont pas revenus depuis x jours. &quot;x&quot; étant le nombre de jours paramétrés dans l\'onglet de configuration générale. De plus, vous trouverez une colonne précisant si un mail de rappel a déjà été envoyé aux visiteurs ciblés, vous permettant de visualiser d\'un coup d\'oeil et traiter les visiteurs qui n\'auraient pas tenu compte du rappel.<br><br>Dans cette vue, vous pouvez :
     30<br><br>
     31- Supprimer manuellement les comptes <b>(purge manuelle)</b>
     32<br>
     33- Générer l\'email de rappel <b>avec réinitialisation de la date de dernière visite</b>. Ce qui permet de donner un &quot;joker&quot; au visiteur ciblé. Si le visiteur a déjà bénéficié d\'un mail de rappel, rien n\'empêche de renvoyer un nouveau mail qui réinitialisera, de fait, la date de dernière visite.
    5134<br><br>
    5235<b>Fonction de tri du tableau</b>: Vous pouvez trier les données affichées en cliquant sur les entêtes de colonnes. L\'utilisation de la touche MAJ ou SHIFT permet de trier sur 1 à 4 colonnes simultanées maximum.';
    53 $lang['UAM_usermanTitle_d'] = 'Lorsque la limitation du délai d\'inscription est activée, vous trouverez ci-dessous la liste des utilisateurs en attente de validation d\'inscription <b style=&quot;text-decoration: underline;&quot;>qu\'ils soient ou pas</b> dans les délais pour la valider.<br><br>La date d\'enregistrement s\'affiche en vert lorsque l\'utilisateur concerné est en dessous du temps limite pour valider son inscription. Dans ce cas, la clé de validation est toujours valide et on pourra envoyer un email avec ou sans régénération de clé.<br><br>Lorsque la date d\'enregistrement s\'affiche en rouge, le délai de validation est expiré. Dans ce cas, on enverra obligatoirement un email avec régénération de clé si on veut permettre à cet utilisateur de pouvoir valider son inscription.<br><br>Dans tous les cas, il est possible de forcer manuellement la validation.<br><br>Dans cette vue, vous pouvez :
    54 <br><br>
    55 - Supprimer manuellement les comptes <b>(purge manuelle)</b>
    56 <br>
    57 - Générer l\'email de rappel <b>sans génération</b> d\'une nouvelle clef. Rappel : Cette fonction ne réinitialise pas la date d\'inscription du visiteur ciblé et le délai d\'expiration est toujours d\'actualité.
    58 <br>
    59 - Générer l\'email de rappel <b>avec génération</b> d\'une nouvelle clef. Rappel : Cette fonction réinitialise également la date d\'inscription du visiteur ciblé ce qui équivaut à prolonger le délai de validation.
    60 <br>
    61 - Valider manuellement une inscription en attente de validation même si la date d\'expiration est révolue <b>(forçage de la validation)</b>.
    62 <br><br>
    63 <b>Fonction de tri du tableau</b>: Vous pouvez trier les données affichées en cliquant sur les entêtes de colonnes. L\'utilisation de la touche MAJ ou SHIFT permet de trier sur 1 à 4 colonnes simultanées maximum.';
    64 $lang['UAM_gtTitle_d'] = 'Lorsque la gestion des visiteurs fantômes est activée et initialisée, vous trouverez ci-dessous la liste des visiteurs inscrits sur votre galerie et qui ne sont pas revenus depuis x jours. &quot;x&quot; étant le nombre de jours paramétrés dans l\'onglet de configuration générale. De plus, vous trouverez une colonne précisant si un mail de rappel a déjà été envoyé aux visiteurs ciblés, vous permettant de visualiser d\'un coup d\'oeil et traiter les visiteurs qui n\'auraient pas tenu compte du rappel.<br><br>Dans cette vue, vous pouvez :
    65 <br><br>
    66 - Supprimer manuellement les comptes <b>(purge manuelle)</b>
    67 <br>
    68 - Générer l\'email de rappel <b>avec réinitialisation de la date de dernière visite</b>. Ce qui permet de donner un &quot;joker&quot; au visiteur ciblé. Si le visiteur a déjà bénéficié d\'un mail de rappel, rien n\'empêche de renvoyer un nouveau mail qui réinitialisera, de fait, la date de dernière visite.
    69 <br><br>
    70 <b>Fonction de tri du tableau</b>: Vous pouvez trier les données affichées en cliquant sur les entêtes de colonnes. L\'utilisation de la touche MAJ ou SHIFT permet de trier sur 1 à 4 colonnes simultanées maximum.';
    71 $lang['UAM_confirmmailTitle_d'] = 'Cette option permet soit à un utilisateur de valider son inscription en cliquant sur un lien reçu dans un email envoyé dès son enregistrement sur la galerie, soit à l\'administrateur d\'activer manuellement les inscriptions.<br><br>
    72 Dans le premier cas, le message envoyé comprend une partie fixe, avec le lien d\'activation généré à partir d\'une clef aléatoire (cette clé peut éventuellement être régénérée via l\'onglet &quot;Suivi des validations&quot;), et une partie personnalisable par un texte d\'accueil.
    73 <br><br>
    74 Dans le second cas, <b><u>il n\'y a pas d\'envoi de clé de validation par email</u></b>. Les visiteurs doivent patienter que l\'administrateur valide lui même leur inscription via l\'onglet &quot;Suivi des validations&quot;. Il est conseillé d\'activer la notification des administrateurs lors des inscriptions (voir la configuration des options de Piwigo) et d\'utiliser la fonction &quot;Email d\'information à l\'utilisateur&quot; pour avertir les nouveaux inscrits de la nécessité de patienter avant activation de leur compte.
    75 <br>
    76 <b style=&quot;color: red;&quot;>NB: Les options &quot;Limitation du délai de validation d\'inscription&quot; et &quot;Mail de rappel aux inscrits non validés&quot; doivent être désactivées lorsque la validation manuelle est active.</b>
    77 <br><br>
    78 Cette option est généralement utilisée avec  l\'attribution automatique de groupe et/ou de statut. Selon qu\'il a validé ou non son inscription, il est en effet possible d\'affecter à l\'utilisateur un groupe différent, avec plus ou moins de restrictions d\'accès à la galerie.';
    7936// --------- End: New or revised $lang ---- from version 2.15.4
    8037
     
    9148- Gestion automatisée : Lorsque le délai entre 2 visites successives est atteint, le visiteur est automatiquement soit supprimé, soit basculé dans un groupe et/ou statut d\'attente. Dans ce deuxième cas, un email d\'information peut lui être envoyé.<br><br><br>
    9249<b style=&quot;color: red;&quot;>IMPORTANT : A première activation de cette fonction, ou à sa réactivation après une longue période pendant laquelle de nouveaux visiteurs se sont inscrits, il convient d\'initialiser le Ghost Tracker (voir les instructions correspondantes sur l\'onglet &quot;Ghost Tracker&quot;).</b>';
    93 $lang['UAM_mailexcTitle_d'] = 'Par défaut, Piwigo accepte toutes les adresses de messagerie au format xxx@yyy.zz. L\'activation de cette option permet d\'exclure certains domaines selon le format : @[nom_du_domaine].[extension_du_domaine].<br><br>
    94 Exemples :<br>
    95 @hotmail.com -> exclusion des adresses *@hotmail.com<br>
    96 @hotmail -> exclusion de toutes les adresses *@hotmail*';
    9750$lang['UAM_GTAutoTitle_d'] = 'Cette option permet d\'appliquer des règles de gestion automatisée des visiteurs fantômes.
    9851<br><br>Principe de base : Un utilisateur ayant atteind la limite maximale entre deux visites <b><u>et</u></b> ayant déjà été notifié par email est considéré comme expiré. On peut alors appliquer des règles de traitement automatisées telles que la suppression automatique des comptes expirés ou leur rétrogradation en restreignant l\'accès à la galerie (bascule automatique dans un groupe et/ou un statut à accès restreint).
     
    10255
    10356
    104 // --------- Starting below: New or revised $lang ---- from version 2.20.0
    105 $lang['UAM_validationlimitTitle_d'] = 'Cette option permet de limiter le nombre de jours pendant lequel un nouvel utilisateur peut valider son inscription. Une fois ce délai expiré, le lien de validation sera invalide, et ne pourra plus être employé.
    106 <br><br>
    107 Cette option n\'est utilisable qu\'une fois l\'option &quot;Confirmation d\'inscription&quot; activée.
    108 <br><br>
    109 Si cette option et l\'option &quot;Mail de rappel aux inscrits non validés&quot; sont activées, de nouvelles options apparaitront plus bas dans cette section pour permettre l\'automatisation de la gestion des visiteurs non validés.';
    110 $lang['UAM_remailTitle_d'] = 'Cette option permet d\'envoyer un email de rappel aux utilisateurs n\'ayant pas validé leur inscription dans les temps. Elle n\'a d\'effet qu\'une fois l\'option &quot;Confirmation d\'inscription&quot; activée.
    111 <br><br>
    112 2 types d\'email peuvent être envoyés : Avec ou sans régénération de la clef de validation. En fonction du cas, le contenu  des emails peut être personnalisé.
    113 <br><br>
    114 Reportez-vous à l\'onglet &quot;Suivi des validations&quot;.
    115 <br><br>
    116 Si cette option et l\'option &quot;Limitation du délai de validation d\'inscription&quot; sont activées, de nouvelles options apparaitront plus bas dans cette section pour permettre l\'automatisation de la gestion des visiteurs non validés.';
    117 $lang['UAM_USRAutoTitle_d'] = 'La gestion automatique des visiteurs non validés est déclenchée à chaque connexion à la galerie et fonctionne ainsi :
    118 <br><br>
    119 - Suppression automatique des comptes non validés dans le temps imparti sans envoi automatique de mail de relance -> &quot;Limitation du délai de validation d\'inscription&quot; <b><u>est actif</u></b> et &quot;Mail de rappel aux inscrits non validés&quot; <b><u>est inactif</u></b>.
    120 <br><br>
    121 - Envoi automatique d\'un message de rappel avec génération d\'une nouvelle clé de validation puis suppression automatique des comptes non validés dans le temps imparti après l\'envoi de la relance -> &quot;Limitation du délai de validation d\'inscription&quot; <b><u>est actif</u></b> et &quot;Mail de rappel aux inscrits non validés&quot; <b><u>est actif</u></b>.';
    122 $lang['UAM_USRAutoMailTitle_d'] = 'Lorsque activée, cette fonction enverra automatiquement le contenu personnalisé dans &quot;Message de rappel avec regénération de clé&quot; aux visiteurs répondant au critère.';
    123 $lang['UAM_StuffsTitle_d'] = 'Ceci permet d\'activer un module supplémentaire UAM dans le plugin PWG Stuffs (si installé) afin d\'informer sur leur état vos visiteurs n\'ayant pas validé leur inscription.
    124 <br><br>
    125 Veuillez vous reporter à la section <b>Astuces et exemples d\'utilisation</b> en bas de cette page pour les détails.';
    126 // --------- End: New or revised $lang ---- from version 2.20.0
    127 
    128 
    12957// --------- Starting below: New or revised $lang ---- from version 2.20.4
    13058$lang['UAM_HidePasswTitle_d'] = 'Choisissez ici si vous souhaitez faire afficher le mot de passe choisi par le visiteur dans le mail d\'information. Si vous activez l\'option, le mot de passe apparaitra alors en clair. Si vous la désactivez, le mot de passe n\'apparaitra pas du tout.';
     
    14876- <b style=&quot;color: red;&quot;>[mygallery]</b> pour insérer le titre de votre galerie.<br>
    14977- <b style=&quot;color: red;&quot;>[myurl]</b> pour insérer l\'URL de votre galerie si renseigné dans les options de configuration de Piwigo.<br>
    150 - <b style=&quot;color: red;&quot;>[Kdays]</b> pour insérer le nombre de jour de validité de la clé d\'inscription (l\'option &quot;Limitation du délai de validation d\'inscription&quot; doit être activée).
    151 <br><br>
    152 Pour une utilisation multi-langues, vous pouvez utiliser les balises [lang] du plugin Extended Description si celui-ci est actif.';
    153 $lang['UAM_remailtxt1Title_d'] = 'Saisissez ici le texte d\'introduction qui apparaîtra dans l\'email de rappel, accompagné d\'une nouvelle clef de validation.
    154 <br><br>
    155 Il est vivement conseillé de saisir un texte explicatif; à défaut, le mail de rappel ne comportera que le lien de validation. (NB : Le texte pré-renseigné à l\'installation du plugin n\'est donné qu\'à titre d\'exemple).
    156 <br><br>
    157 Personnalisez encore plus le contenu avec les balises d\'insertion spéciales :<br>
    158 - <b style=&quot;color: red;&quot;>[username]</b> pour insérer automatiquement le nom de l\'utilisateur destinataire de l\'email.<br>
    159 - <b style=&quot;color: red;&quot;>[mygallery]</b> pour insérer le titre de votre galerie.<br>
    160 - <b style=&quot;color: red;&quot;>[myurl]</b> pour insérer l\'URL de votre galerie si renseigné dans les options de configuration de Piwigo.<br>
    161 - <b style=&quot;color: red;&quot;>[Kdays]</b> pour insérer le nombre de jour de validité de la clé d\'inscription (l\'option &quot;Limitation du délai de validation d\'inscription&quot; doit être activée).
    162 <br><br>
    163 Pour une utilisation multi-langues, vous pouvez utiliser les balises [lang] du plugin Extended Description si celui-ci est actif.';
    164 $lang['UAM_remailtxt2Title_d'] = 'Saisissez ici le texte d\'introduction qui apparaîtra dans l\'email de rappel, sans nouvelle clef de validation.
     78- <b style=&quot;color: red;&quot;>[Kdays]</b> pour insérer le nombre de jour de validité de la clé d\'inscription (l\'option &quot;Limitation du délai de confirmation d\'inscription&quot; doit être activée).
     79<br><br>
     80Pour une utilisation multi-langues, vous pouvez utiliser les balises [lang] du plugin Extended Description si celui-ci est actif.';
     81$lang['UAM_remailtxt1Title_d'] = 'Saisissez ici le texte d\'introduction qui apparaîtra dans l\'email de rappel, accompagné d\'une nouvelle clef de confirmation.
     82<br><br>
     83Il est vivement conseillé de saisir un texte explicatif; à défaut, le mail de rappel ne comportera que le lien de confirmation. (NB : Le texte pré-renseigné à l\'installation du plugin n\'est donné qu\'à titre d\'exemple).
     84<br><br>
     85Personnalisez encore plus le contenu avec les balises d\'insertion spéciales :<br>
     86- <b style=&quot;color: red;&quot;>[username]</b> pour insérer automatiquement le nom de l\'utilisateur destinataire de l\'email.<br>
     87- <b style=&quot;color: red;&quot;>[mygallery]</b> pour insérer le titre de votre galerie.<br>
     88- <b style=&quot;color: red;&quot;>[myurl]</b> pour insérer l\'URL de votre galerie si renseigné dans les options de configuration de Piwigo.<br>
     89- <b style=&quot;color: red;&quot;>[Kdays]</b> pour insérer le nombre de jour de validité de la clé d\'inscription (l\'option &quot;Limitation du délai de confirmation d\'inscription&quot; doit être activée).
     90<br><br>
     91Pour une utilisation multi-langues, vous pouvez utiliser les balises [lang] du plugin Extended Description si celui-ci est actif.';
     92$lang['UAM_remailtxt2Title_d'] = 'Saisissez ici le texte d\'introduction qui apparaîtra dans l\'email de rappel, sans nouvelle clef de confirmation.
    16593<br><br>
    16694Il est vivement conseillé de saisir un texte explicatif, afin que l\'email ne soit pas vide. (NB : Le texte pré-renseigné à l\'installation du plugin n\'est donné qu\'à titre d\'exemple).
     
    17098- <b style=&quot;color: red;&quot;>[mygallery]</b> pour insérer le titre de votre galerie.<br>
    17199- <b style=&quot;color: red;&quot;>[myurl]</b> pour insérer l\'URL de votre galerie si renseigné dans les options de configuration de Piwigo.<br>
    172 - <b style=&quot;color: red;&quot;>[Kdays]</b> pour insérer le nombre de jour de validité de la clé d\'inscription (l\'option &quot;Limitation du délai de validation d\'inscription&quot; doit être activée).
     100- <b style=&quot;color: red;&quot;>[Kdays]</b> pour insérer le nombre de jour de validité de la clé d\'inscription (l\'option &quot;Limitation du délai de confirmation d\'inscription&quot; doit être activée).
    173101<br><br>
    174102Pour une utilisation multi-langues, vous pouvez utiliser les balises [lang] du plugin Extended Description si celui-ci est actif.';
     
    242170- Génération d\'email de confirmation d\'inscription<br>
    243171- Affectation automatique de groupe, de statut ou de niveau de confidentialité<br>
    244 - Limitation du délai de validation<br>
     172- Limitation du délai de confirmation<br>
    245173- Génération d\'email de rappel<br>
    246174...
     
    248176$lang['UAM_confirmgrpTitle'] = 'Groupes';
    249177$lang['UAM_confirmstatTitle'] = 'Statuts';
    250 $lang['UAM_confirmgrpTitle_d'] = '<b style=&quot;color: red;&quot;>ATTENTION : L\'utilisation des groupes à la validation nécessite que vous ayez créé au moins un groupe d\'utilisateurs et qu\'il soit défini &quot;par défaut&quot; dans la gestion des groupes d\'utilisateurs de Piwigo.</b><br><br>
    251 Les groupes à la validation sont à utiliser conjointement avec l\'option &quot;Confirmation d\'inscription&quot;';
    252 $lang['UAM_confirmstatTitle_d'] = '<b style=&quot;color: red;&quot;>ATTENTION : L\'utilisation des statuts à la validation nécessite que vous ayez conservé l\'utilisateur &quot;Guest&quot; pour le paramétrage par défaut (modèle) pour les nouveaux inscrits. A noter : Vous pouvez définir n\'importe quel autre utilisateur comme modèle pour les nouveaux inscrits. Reportez-vous à la documentation de Piwigo pour plus de détails.</b><br><br>
    253 Les statuts à la validation sont à utiliser conjointement avec l\'option &quot;Confirmation d\'inscription&quot;';
     178$lang['UAM_confirmgrpTitle_d'] = '<b style=&quot;color: red;&quot;>ATTENTION : L\'utilisation des groupes à la confirmation nécessite que vous ayez créé au moins un groupe d\'utilisateurs et qu\'il soit défini &quot;par défaut&quot; dans la gestion des groupes d\'utilisateurs de Piwigo.</b><br><br>
     179Les groupes à la confirmation sont à utiliser conjointement avec l\'option &quot;Confirmation d\'inscription&quot;';
     180$lang['UAM_confirmstatTitle_d'] = '<b style=&quot;color: red;&quot;>ATTENTION : L\'utilisation des statuts à la confirmation nécessite que vous ayez conservé l\'utilisateur &quot;Guest&quot; pour le paramétrage par défaut (modèle) pour les nouveaux inscrits. A noter : Vous pouvez définir n\'importe quel autre utilisateur comme modèle pour les nouveaux inscrits. Reportez-vous à la documentation de Piwigo pour plus de détails.</b><br><br>
     181Les statuts à la confirmation sont à utiliser conjointement avec l\'option &quot;Confirmation d\'inscription&quot;';
    254182$lang['UAM_confirmlevelTitle'] = 'Niveau de confidentialité';
    255 $lang['UAM_confirmlevelTitle_d'] = '<b style=&quot;color: red;&quot;>ATTENTION : L\'utilisation des niveaux de confidentialité à la validation nécessite que vous ayez affecté un niveau de confidentialité aux photos que vous voulez restreindre. Reportez vous à la documentation de Piwigo pour plus de détails.</b><br><br>
    256 Les niveaux de confidentialité à la validation sont à utiliser conjointement avec l\'option &quot;Confirmation d\'inscription&quot;';
    257 $lang['UAM_GTAutoGpTitle_d'] = 'Le changement automatique de groupe, de statut ou de niveau de confidentialité équivaut à une rétrogradation des comptes concernés et fonctionne sur le même principe que le groupe, le statut ou le niveau de confidentialité à la validation (voir &quot;Paramétrage des confirmations et validations d\'inscriptions&quot;). Il conviendra donc de définir un groupe ou un statut et/ou un niveau de confidentialité rétrogradant l\'accès à la galerie. Si cela a déjà été défini avec l\'utilisation de la fonction Confirmation d\'inscription, on peut utiliser ces mêmes groupes / statuts / niveaux.<br><br>
     183$lang['UAM_confirmlevelTitle_d'] = '<b style=&quot;color: red;&quot;>ATTENTION : L\'utilisation des niveaux de confidentialité à la confirmation nécessite que vous ayez affecté un niveau de confidentialité aux photos que vous voulez restreindre. Reportez vous à la documentation de Piwigo pour plus de détails.</b><br><br>
     184Les niveaux de confidentialité à la confirmation sont à utiliser conjointement avec l\'option &quot;Confirmation d\'inscription&quot;';
     185$lang['UAM_GTAutoGpTitle_d'] = 'Le changement automatique de groupe, de statut ou de niveau de confidentialité équivaut à une rétrogradation des comptes concernés et fonctionne sur le même principe que le groupe, le statut ou le niveau de confidentialité à la confirmation (voir &quot;Paramétrage des confirmations d\'inscriptions&quot;). Il conviendra donc de définir un groupe ou un statut et/ou un niveau de confidentialité rétrogradant l\'accès à la galerie. Si cela a déjà été défini avec l\'utilisation de la fonction Confirmation d\'inscription, on peut utiliser ces mêmes groupes / statuts / niveaux.<br><br>
    258186<b style=&quot;color: red;&quot;>Point important :</b> Si un utilisateur fantôme n\'a toujours pas donné signe de vie après le délai imparti et malgré la notification automatique par mail (si activée), il est automatiquement supprimé de la base de données.';
    259187$lang['UAM_GTAutoMailTitle_d'] = 'Lorsqu\'un compte est expiré (changement de groupe, de statut ou de niveau de confidentialité rétrogradant le visiteur), un email d\'information peut être envoyé pour préciser les raisons de ce changement et le moyen de recouvrer l\'accès initial à la galerie.
    260 <br>Pour ce faire, un lien de revalidation de l\'inscription est joint à l\'email (génération automatique d\'une nouvelle clé de validation).<b style=&quot;color: red;&quot;>Si l\'utilisateur a déjà été notifié, son compte est automatiquement détruit.</b>
    261 <br><br>
    262 Saisissez aussi le texte personnalisé qui expliquera les raisons de la rétrogradation et qui accompagnera le lien de validation. Le texte personnalisé n\'est pas obligatoire mais vivement conseillé. En effet, vos visiteurs inscrits n\'apprécieront que moyennement de recevoir un email ne contenant qu\'un simple lien sans plus d\'explications. ;-)
     188<br>Pour ce faire, un lien de reconfirmation de l\'inscription est joint à l\'email (génération automatique d\'une nouvelle clé de confirmation).<b style=&quot;color: red;&quot;>Si l\'utilisateur a déjà été notifié, son compte est automatiquement détruit.</b>
     189<br><br>
     190Saisissez aussi le texte personnalisé qui expliquera les raisons de la rétrogradation et qui accompagnera le lien de confirmation. Le texte personnalisé n\'est pas obligatoire mais vivement conseillé. En effet, vos visiteurs inscrits n\'apprécieront que moyennement de recevoir un email ne contenant qu\'un simple lien sans plus d\'explications. ;-)
    263191<br><br>
    264192Personnalisez encore plus le contenu avec les balises d\'insertion spéciales :<br>
     
    298226
    299227
    300 // --------- Starting below: New or revised $lang ---- from version 2.30.2
    301 $lang['UAM_RejectConnexion_d'] = 'Si activée, les nouveaux inscrits qui n\'ont pas validé leur inscription ne pourront pas se connecter à la galerie. Ils seront redirigés vers une page spéciale pour les informer de cet état.<br><br>
    302 <b style=&quot;color: red;&quot;>Attention - Cette option fonctionne uniquement avec les groupes de validation ! Référez-vous ci-dessous pour affecter les paramètres de groupes requis.</b>';
    303 $lang['UAM_RejectConnexion_Custom_Txt_d'] = 'Personnalisez ici votre message d\'explication informant les utilisateurs non validés qu\'ils ne pourront pas se connecter à la galerie tant qu\'ils n\'auront pas validé leur inscription.
     228// --------- Starting below: New or revised $lang ---- from version 2.30.3
     229$lang['UAM_mailexcTitle_d'] = 'Par défaut, Piwigo accepte toutes les adresses de messagerie au format xxx@yyy.zz. L\'activation de cette option permet d\'exclure certains domaines selon le format : @[nom_du_domaine].[extension_du_domaine].<br><br>
     230Exemples :<br>
     231@hotmail.com -> exclusion des adresses *@hotmail.com<br>
     232@hotmail -> exclusion de toutes les adresses *@hotmail*<br><br>
     233<b style=&quot;color: red;&quot;>Attention ! Cette fonction n\'est accessible que si les emails sont obligatoires pour les inscriptions ! Reportez-vous aux options de configuration de Piwigo.';
     234$lang['UAM_remailTitle_d'] = 'Cette option permet d\'envoyer un email de rappel aux utilisateurs n\'ayant pas confirmé leur inscription dans les temps. Elle n\'a d\'effet qu\'une fois l\'option &quot;Confirmation d\'inscription&quot; activée.
     235<br><br>
     2362 types d\'email peuvent être envoyés : Avec ou sans régénération de la clef de confirmation. En fonction du cas, le contenu  des emails peut être personnalisé.
     237<br><br>
     238Reportez-vous à l\'onglet &quot;Suivi des confirmations&quot;.
     239<br><br>
     240Si cette option et l\'option &quot;Limitation du délai de confirmation d\'inscription&quot; sont activées, de nouvelles options apparaitront plus bas dans cette section pour permettre l\'automatisation de la gestion des visiteurs non confirmés.';
     241$lang['UAM_USRAutoTitle_d'] = 'La gestion automatique des visiteurs non confirmés est déclenchée à chaque connexion à la galerie et fonctionne ainsi :
     242<br><br>
     243- Suppression automatique des comptes non confirmés dans le temps imparti sans envoi automatique de mail de relance -> &quot;Limitation du délai de confirmation d\'inscription&quot; <b><u>est actif</u></b> et &quot;Mail de rappel aux inscrits non confirmés&quot; <b><u>est inactif</u></b>.
     244<br><br>
     245- Envoi automatique d\'un message de rappel avec génération d\'une nouvelle clé de confirmation puis suppression automatique des comptes non confirmés dans le temps imparti après l\'envoi de la relance -> &quot;Limitation du délai de confirmation d\'inscription&quot; <b><u>est actif</u></b> et &quot;Mail de rappel aux inscrits non confirmés&quot; <b><u>est actif</u></b>.';
     246$lang['UAM_RejectConnexion_d'] = 'Si activée, les nouveaux inscrits qui n\'ont pas confirmé leur inscription ne pourront pas se connecter à la galerie. Ils seront redirigés vers une page spéciale pour les informer de cet état.<br><br>
     247<b style=&quot;color: red;&quot;>Attention - Cette option fonctionne uniquement avec les groupes de confirmation ! Référez-vous ci-dessous pour affecter les paramètres de groupes requis.</b>';
     248$lang['UAM_RejectConnexion_Custom_Txt_d'] = 'Personnalisez ici votre message d\'explication informant les utilisateurs non confirmés qu\'ils ne pourront pas se connecter à la galerie tant qu\'ils n\'auront pas confirmé leur inscription.
    304249<br><br>
    305250Ce champ est compatible avec l\'extension FCK Editor et, pour une utilisation multi-langues, vous pouvez utiliser les balises [lang] du plugin Extended Description si celui-ci est actif.';
    306 // --------- End: New or revised $lang ---- from version 2.30.2
     251$lang['UAM_restricTitle_d'] = '
     252- Exclusion de caractères dans les noms d\'utilisateurs<br>
     253- Renforcement des mots de passe<br>
     254- Exclusion des domaines de messagerie<br>
     255...
     256';
     257$lang['UAM_USRAutoMailTitle_d'] = 'Lorsque activée, cette fonction enverra automatiquement le contenu personnalisé dans &quot;Message de rappel avec regénération de clé&quot; aux visiteurs répondant au critère.';
     258$lang['UAM_StuffsTitle_d'] = 'Ceci permet d\'activer un module supplémentaire UAM dans le plugin PWG Stuffs (si installé) afin d\'informer sur leur état vos visiteurs n\'ayant pas confirmé leur inscription.
     259<br><br>
     260Veuillez vous reporter à la section <b>Astuces et exemples d\'utilisation</b> en bas de cette page pour les détails.';
     261$lang['UAM_confirmmailTitle_d'] = 'Cette option permet soit à un utilisateur de confirmer son inscription en cliquant sur un lien reçu dans un email envoyé dès son enregistrement sur la galerie, soit à l\'administrateur d\'activer manuellement les inscriptions.<br><br>
     262Dans le premier cas, le message envoyé comprend une partie fixe, avec le lien d\'activation généré à partir d\'une clef aléatoire (cette clé peut éventuellement être régénérée via l\'onglet &quot;Suivi des confirmations&quot;), et une partie personnalisable par un texte d\'accueil.
     263<br><br>
     264Dans le second cas, <b><u>il n\'y a pas d\'envoi de clé de confirmation par email</u></b>. Les visiteurs doivent patienter que l\'administrateur valide lui même leur inscription via l\'onglet &quot;Suivi des confirmations&quot;. Il est conseillé d\'activer la notification des administrateurs lors des inscriptions (voir la configuration des options de Piwigo) et d\'utiliser la fonction &quot;Email d\'information à l\'utilisateur&quot; pour avertir les nouveaux inscrits de la nécessité de patienter avant activation de leur compte.
     265<br>
     266<b style=&quot;color: red;&quot;>NB: Les options &quot;Limitation du délai de confirmation d\'inscription&quot; et &quot;Mail de rappel aux inscrits non confirmés&quot; doivent être désactivées lorsque la confirmation manuelle est active.</b>
     267<br><br>
     268Cette option est généralement utilisée avec  l\'attribution automatique de groupe et/ou de statut. Selon qu\'il ait confirmé ou non son inscription, il est en effet possible d\'affecter à l\'utilisateur un groupe différent, avec plus ou moins de restrictions d\'accès à la galerie.';
     269$lang['UAM_usermanTitle_d'] = 'Lorsque la limitation du délai d\'inscription est activée, vous trouverez ci-dessous la liste des utilisateurs en attente de confirmation d\'inscription <b style=&quot;text-decoration: underline;&quot;>qu\'ils soient ou pas</b> dans les délais pour la confirmer.<br><br>La date d\'enregistrement s\'affiche en vert lorsque l\'utilisateur concerné est en dessous du temps limite pour confirmer son inscription. Dans ce cas, la clé de confirmation est toujours valide et on pourra envoyer un email avec ou sans régénération de clé.<br><br>Lorsque la date d\'enregistrement s\'affiche en rouge, le délai de confirmation est expiré. Dans ce cas, on enverra obligatoirement un email avec régénération de clé si on veut permettre à cet utilisateur de pouvoir confirmer son inscription.<br><br>Dans tous les cas, il est possible de forcer manuellement la confirmation.<br><br>Dans cette vue, vous pouvez :
     270<br><br>
     271- Supprimer manuellement les comptes <b>(purge manuelle)</b>
     272<br>
     273- Générer l\'email de rappel <b>sans génération</b> d\'une nouvelle clef. Rappel : Cette fonction ne réinitialise pas la date d\'inscription du visiteur ciblé et le délai d\'expiration est toujours d\'actualité.
     274<br>
     275- Générer l\'email de rappel <b>avec génération</b> d\'une nouvelle clef. Rappel : Cette fonction réinitialise également la date d\'inscription du visiteur ciblé ce qui équivaut à prolonger le délai de confirmation.
     276<br>
     277- Confirmer manuellement une inscription en attente de confirmation même si la date d\'expiration est révolue <b>(forçage de la confirmation)</b>.
     278<br><br>
     279<b>Fonction de tri du tableau</b>: Vous pouvez trier les données affichées en cliquant sur les entêtes de colonnes. L\'utilisation de la touche MAJ ou SHIFT permet de trier sur 1 à 4 colonnes simultanées maximum.';
     280$lang['UAM_validationlimitTitle_d'] = 'Cette option permet de limiter le nombre de jours pendant lequel un nouvel utilisateur peut confirmer son inscription. Une fois ce délai expiré, le lien de confirmation sera invalide, et ne pourra plus être employé.
     281<br><br>
     282Cette option n\'est utilisable qu\'une fois l\'option &quot;Confirmation d\'inscription&quot; activée.
     283<br><br>
     284Si cette option et l\'option &quot;Mail de rappel aux inscrits non confirmés&quot; sont activées, de nouvelles options apparaitront plus bas dans cette section pour permettre l\'automatisation de la gestion des visiteurs non confirmés.';
     285$lang['UAM_userlistTitle_d'] = 'Cette page est à titre d\'information pour l\'administrateur. Elle affiche la liste de tous les utilisateurs inscrits sur la galerie en faisant apparaitre la date et le nombre de jours depuis leur dernière visite. La liste est triée dans l\'ordre croissant du nombre de jours.
     286<br><br>
     287<b><u>Uniquement lorsque le Ghost Tracker est actif</u></b>, le nombre de jours sans visite s\'affiche selon le code couleur suivant, en fonction du délai maximum paramétré dans les options du Ghost Tracker :
     288<br>
     289- <b style=&quot;color: lime;&quot;>En vert</b> : Lorsque l\'utilisateur a visité la galerie <b style=&quot;color: lime;&quot;><u>depuis moins de 50%</u></b> du délai maximum renseigné dans le Ghost Tracker.<br>
     290- <b style=&quot;color: orange;&quot;>En orange</b> : Lorsque l\'utilisateur a visité la galerie <b style=&quot;color: orange;&quot;><u>entre 50% et 99%</u></b> du délai maximum renseigné dans le Ghost Tracker.<br>
     291- <b style=&quot;color: red;&quot;>En rouge</b> : Lorsque l\'utilisateur a visité la galerie <b style=&quot;color: red;&quot;><u>depuis 100% et plus</u></b> du délai maximum renseigné dans le Ghost Tracker. <b><u>Dans ce cas, l\'utilisateur doit également apparaitre dans le tableau du Ghost Tracker.</u></b><br>
     292<br>
     293Exemple:
     294<br>
     295Le délai maximum du Ghost Tracker est configuré à 100 jours.
     296<br>
     297Un utilisateur apparaitra en vert s\'il a visité la galerie depuis moins de 50 jours, en orange si sa dernière visite s\'est déroulée entre 50 et 99 jours et en rouge à 100 jours et au-delà.
     298<br><br>
     299<b>A NOTER</b>: La liste n\'affiche pas les inscrits qui n\'auraient pas confirmé leur inscription (si l\'option de confirmation de l\'inscription est activée). Ces utilisateurs sont alors gérés de manière particulière dans l\'onglet &quot;Suivi des confirmations&quot;.
     300<br><br>
     301<b>Fonction de tri du tableau</b>: Vous pouvez trier les données affichées en cliquant sur les entêtes de colonnes. L\'utilisation de la touche MAJ ou SHIFT permet de trier sur 1 à 4 colonnes simultanées maximum.';
     302$lang['UAM_Tracking registered users_d'] = 'Cette option active, dans l\'onglet &quot;Suivi des utilisateurs inscrits&quot;, un tableau recensant les utilisateurs inscrits, la date de leur dernière visite et le nombre de jours écoulés depuis leur dernière visite. Il s\'agit d\'un suivi purement informatif pour l\'administrateur de la galerie.';
     303// --------- End: New or revised $lang ---- from version 2.30.3
    307304?>
  • extensions/UserAdvManager/branches/2.30/language/fr_FR/plugin.lang.php

    r12667 r13124  
    3131$lang['UAM_empty_pwd'] = '[mot de passe vide]';
    3232$lang['UAM_no_update_pwd'] = '[mise à jour du profil sans changement du mot de passe]';
    33 $lang['UAM_No_validation_for_Guest'] = 'Le compte Guest n\'est pas soumis à validation';
    34 $lang['UAM_No_validation_for_default_user'] = 'Le compte par défaut n\'est pas soumis à validation';
    35 $lang['UAM_No_validation_for_Webmaster'] = 'Le compte du Webmaster n\'est pas soumis à validation';
    36 $lang['UAM_No_validation_for_your_account'] = 'Votre compte d\'admin n\'est pas soumis à validation';
     33$lang['UAM_No_validation_for_Guest'] = 'Le compte Guest n\'est pas soumis à confirmation';
     34$lang['UAM_No_validation_for_default_user'] = 'Le compte par défaut n\'est pas soumis à confirmation';
     35$lang['UAM_No_validation_for_Webmaster'] = 'Le compte du Webmaster n\'est pas soumis à confirmation';
     36$lang['UAM_No_validation_for_your_account'] = 'Votre compte d\'admin n\'est pas soumis à confirmation';
    3737
    3838
     
    4242$lang['UAM_%d_Reminder_Sent'] = '%d message de rappel a été envoyé';
    4343$lang['UAM_%d_Reminders_Sent'] = '%d messages de rappel ont été envoyés';
    44 $lang['UAM_%d_Validated_User'] = '%d Utilisateur validé manuellement';
    45 $lang['UAM_%d_Validated_Users'] = '%d Utilisateurs validés manuellement';
    4644
    4745
     
    9391
    9492
    95 // --------- Starting below: New or revised $lang ---- from version 2.13.0
    96 /* UserList Tab */
    97 $lang['UAM_UserList_Title'] = 'Suivi des utilisateurs inscrits';
    98 $lang['UAM_Tab_UserList'] = 'Suivi des utilisateurs';
    99 // --------- End: New or revised $lang ---- from version 2.13.0
    100 
    101 
    10293// --------- Starting below: New or revised $lang ---- from version 2.13.4
    10394/* Global Configuration Tab */
     
    10697$lang['UAM_Tab_Global'] = 'Configuration';
    10798$lang['UAM_Title1'] = 'Paramétrage des restrictions d\'inscriptions';
    108 $lang['UAM_Title2'] = 'Paramétrage des confirmations et validations d\'inscriptions';
     99$lang['UAM_Title2'] = 'Paramétrage des confirmations d\'inscriptions';
    109100$lang['UAM_Title4'] = 'Astuces et exemples d\'utilisation';
    110101$lang['UAM_No_Casse'] = 'Noms d\'utilisateurs : Sensibilité à la casse';
     
    124115$lang['UAM_Confirm_Mail'] = 'Confirmation d\'inscription:';
    125116$lang['UAM_ConfirmMail_Text'] = ' Texte d\'accueil personnalisé:';
    126 $lang['UAM_No_Confirm_Group'] = 'Pour les utilisateurs n\'ayant pas validé leur inscription<br>';
    127 $lang['UAM_Validated_Group'] = 'Pour les utilisateurs ayant validé leur inscription<br>';
    128 $lang['UAM_No_Confirm_Status'] = 'Pour les utilisateurs n\'ayant pas validé leur inscription<br>';
    129 $lang['UAM_Validated_Status'] = 'Pour les utilisateurs ayant validé leur inscription.<br>';
    130 $lang['UAM_ValidationLimit_Info'] = 'Limitation du délai de validation d\'inscription';
     117$lang['UAM_ValidationLimit_Info'] = 'Limitation du délai de confirmation d\'inscription';
    131118$lang['UAM_ConfirmMail_TimeOut_true'] = ' Activer. Nombre de jours de délai: ';
    132 $lang['UAM_ConfirmMail_Remail'] = 'Mail de rappel aux inscrits non validés';
    133 $lang['UAM_ConfirmMail_ReMail_Txt1'] = 'Texte du message de rappel <b><u>avec</u></b> génération d\'une nouvelle clé de validation.';
    134 $lang['UAM_ConfirmMail_ReMail_Txt2'] = 'Texte du message de rappel <b><u>sans</u></b> génération d\'une nouvelle clé de validation.';
     119$lang['UAM_ConfirmMail_ReMail_Txt1'] = 'Texte du message de rappel <b><u>avec</u></b> génération d\'une nouvelle clé de confirmation.';
     120$lang['UAM_ConfirmMail_ReMail_Txt2'] = 'Texte du message de rappel <b><u>sans</u></b> génération d\'une nouvelle clé de confirmation.';
    135121
    136122$lang['UAM_GhostTracker'] = 'Gestion des visiteurs fantômes (Ghost Tracker)';
    137123$lang['UAM_GhostTracker_true'] = ' Activer. Nombre de jours maximum entre deux visites: ';
    138124$lang['UAM_GhostTracker_ReminderText'] = 'Texte de rappel personnalisé';
    139 $lang['UAM_LastVisit'] = ' Suivi des utilisateurs inscrits';
    140 
    141 $lang['UAM_Tab_UserManager'] = 'Suivi des validations';
    142 
    143 /* UserManager Tab */
    144 $lang['UAM_SubTitle3'] = 'Suivi des validations';
    145 $lang['UAM_UserManager_Title'] = 'Suivi des validations';
     125
     126
    146127/* Ghost Tracker Tab */
    147128$lang['UAM_SubTitle4'] = 'Ghost Tracker';
     
    149130$lang['UAM_GhostTracker_Title'] = 'Gestion des visiteurs fantômes';
    150131$lang['UAM_GhostTracker_Init'] = 'A première activation de cette fonction, ou à sa réactivation après une longue période pendant laquelle de nouveaux visiteurs se sont inscrits, il convient d\'initialiser ou de réinitialiser le Ghost Tracker. Cette action n\'est à faire qu\'une seule fois après activation ou réactivation de l\'option; à cet effet, cliquez <u>une seule fois</u> sur le bouton d\'initialisation ci-dessous.</b>';
    151 /* UserList Tab */
    152 $lang['UAM_SubTitle5'] = 'Informations sur les utilisateurs';
    153132/* Mailing */
    154133$lang['UAM_Add of %s'] = 'Profil créé pour %s';
     
    156135/* Mailing */
    157136$lang['UAM_Ghost_reminder_of_%s'] = '%s, ceci est un email de rappel.';
    158 $lang['UAM_Reminder_with_key_of_%s'] = '%s, votre clef de validation a expiré';
    159 $lang['UAM_Reminder_without_key_of_%s'] = '%s, votre clef de validation va expirer';
     137$lang['UAM_Reminder_with_key_of_%s'] = '%s, votre clef de confirmation a expiré';
     138$lang['UAM_Reminder_without_key_of_%s'] = '%s, votre clef de confirmation va expirer';
    160139/* Errors and Warnings */
    161140$lang['UAM_Err_GhostTracker_Settings'] = 'Cette page n\'est accessible que si "Gestion des visiteurs fantômes" est actif dans "Paramétrage des suivis des inscrits et autres options".';
     
    165144
    166145// --------- Starting below: New or revised $lang ---- from version 2.14.0
    167 $lang['UAM_AdminConfMail'] = 'Validation d\'inscription pour les admins';
     146$lang['UAM_AdminConfMail'] = 'Confirmation d\'inscription pour les admins';
    168147// --------- End: New or revised $lang ---- from version 2.14.0
    169148
     
    174153$lang['UAM_LastVisit_Date'] = 'Dernière visite le';
    175154$lang['UAM_Nb_Days'] = 'Ecart en jours';
    176 $lang['UAM_Err_UserManager_Settings'] = 'Cette page n\'est accessible que si "Confirmation d\'inscription" est actif et si un groupe de visiteurs non validés est configuré dans le "Paramétrage des confirmations et validations d\'inscriptions".';
    177155// --------- End: New or revised $lang ---- from version 2.15.0
    178156
     
    187165
    188166// --------- Starting below: New or revised $lang ---- from version 2.15.4
    189 $lang['UAM_Force_Validation'] = 'Validation manuelle';
    190 $lang['UAM_Confirm_Mail_true'] = ' Activer - Validation par le visiteur';
    191 $lang['UAM_Confirm_Mail_local'] = ' Activer - Validation par l\'administrateur (pas d\'envoi de clé de validation)';
     167$lang['UAM_Force_Validation'] = 'Confirmation manuelle';
     168$lang['UAM_Confirm_Mail_true'] = ' Activer - Confirmation par le visiteur';
     169$lang['UAM_Confirm_Mail_local'] = ' Activer - Confirmation par l\'administrateur (pas d\'envoi de clé de confirmation)';
    192170// --------- End: New or revised $lang ---- from version 2.15.4
    193171
     
    202180$lang['UAM_Error_GTAutoMail_cannot_be_set_without_ConfirmMail'] = 'Erreur de cohérence dans la configuration choisie :
    203181<br><br>
    204 "Paramétrage des suivis des inscrits et autres options > Gestion des visiteurs fantômes (Ghost Tracker) > Gestion automatique des utilisateurs fantomes > Email automatique sur changement de groupe / statut" ne peut pas être activé si "Paramétrage des confirmations et validations d\'inscriptions > Confirmation d\'inscription - Validation par le visiteur" n\'est pas activé au préalable.
     182"Paramétrage des suivis des inscrits et autres options > Gestion des visiteurs fantômes (Ghost Tracker) > Gestion automatique des utilisateurs fantomes > Email automatique sur changement de groupe / statut" ne peut pas être activé si "Paramétrage des confirmations d\'inscriptions > Confirmation d\'inscription - Confirmation par le visiteur" n\'est pas activé au préalable.
    205183<br><br>
    206184Pour garantir la cohérence, l\'option "Email automatique sur changement de groupe / statut" a été automatiquement repositionnée en "désactivé".
    207185<br><br>';
    208186$lang['UAM_Demotion of %s'] = 'Rétrogradation de %s';
    209 $lang['UAM_AdminValidationMail_Text'] = 'Notification de validation d\'inscription manuelle';
    210 $lang['UAM_Validation of %s'] = 'Validation de %s';
     187$lang['UAM_AdminValidationMail_Text'] = 'Notification de confirmation d\'inscription manuelle';
     188$lang['UAM_Validation of %s'] = 'Confirmation de %s';
    211189// --------- End: New or revised $lang ---- from version 2.16.0
    212190
     
    214192// --------- Starting below: New or revised $lang ---- from version 2.20.0
    215193$lang['UAM_CustomPasswRetr'] = 'Personnaliser le contenu du mail sur mot de passe perdu';
    216 $lang['UAM_USRAuto'] = 'Gestion automatique des visiteurs non validés';
    217194$lang['UAM_USRAutoDel'] = 'Message à la suppressions automatiques des comptes';
    218195$lang['UAM_USRAutoMail'] = 'Message de rappel automatique';
    219196$lang['UAM_Disable'] = ' Désactiver (valeur par défaut)';
    220197$lang['UAM_Enable'] = ' Activer ';
    221 $lang['UAM_Tips1'] = 'Information de non validation d\'inscription avec UAM et PWG_Stuffs';
    222 $lang['UAM_Tips1_txt'] = '
    223           <ul>
    224             <li>
    225             Objectifs : Informer le visiteur que son inscription est en attente de validation en affichant un bloc personnel sur la page d\'accueil de la galerie; et ce, tant que l\'inscription n\'est pas validée.<br><br>
    226             <b>Rappel: En fonctionnement standard, le "Guest" ne voit que les catégories publiques, sans message d\'information.</b>
    227             </li><br><br>
    228             <li>
    229 Pré-requis:<br>
    230 - Une galerie avec tout ou partie des catégories privées, visibles par les seuls utilisateurs inscrits<br>
    231 - 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>
    232 - Le plugin UAM<br>
    233 - Le plugin PWG Stuffs, pour l\'ajout d\'un module spécial UAM<br>
    234 - En option, le plugin Extended Description, pour le support multi-langues<br>
    235             </li><br><br>
    236             <li>
    237 Réalisation:<br><br>
    238 A. Dans le plugin UAM:<br>
    239               <ol>
    240                 <li>Activer la confirmation d\'inscription</li>
    241                 <li>Activer l\'option "Module PWG Stuffs"</li>
    242                 <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>
    243                 <li>Sélectionner le groupe "Attente" à la rubrique "Pour les utilisateurs n\'ayant pas validé leur inscription"</li>
    244                 <li>Sélectionner le groupe "Validés" à la rubrique "Pour les utilisateurs ayant validé leur inscription"</li>
    245                 <li>Enregistrer la configuration du plugin</li>
    246               </ol>
    247 <br>
    248 B. Dans le plugin PWG Stuffs:<br>
    249               <ol>
    250                 <li>Aller dans l\'onglet "Ajouter un nouveau bloc"</li>
    251                 <li> Sélectionner "Module UAM"</li>
    252                 <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>
    253                 <li>Compléter le contenu du module avec le texte du message d\'information qui sera affiché aux utilisateurs non validés. Comme dans UAM, les balises de langues peuvent être utilisées si le plugin Extended Description est activé</li>
    254                 <li>Cocher "Afficher le module sur la page d\'accueil du site"</li>
    255                 <li>Valider la configuration du module</li>
    256               </ol>
    257             </li>
    258           </ul>';
    259 $lang['UAM_Tips2'] = 'Information de non validation d\'inscription avec UAM et Additional Pages';
    260 $lang['UAM_Tips2_txt'] = '
    261           <ul>
    262             <li>
    263             Objectifs : Informer le visiteur que son inscription est en attente de validation en affichant une page additionnelle remplaçant la page d\'index standard de la galerie à chacune de ces connexions; et ce, tant que l\'inscription n\'est pas validée.
    264             <br><br>
    265             Avantages par rapport à la méthode avec PWG_Stuffs : Permettre une information mise en forme et moins austère et afficher immédiatement l\'information dès l\'inscription des visiteurs.
    266             </li><br><br>
    267             <li>
    268 Pré-requis:<br>
    269 - Une galerie avec tout ou partie des catégories privées, visibles par les seuls utilisateurs inscrits<br>
    270 - 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>
    271 - Le plugin UAM<br>
    272 - Le plugin Additional Pages, pour l\'ajout et la gestion d\'une page additionnelle remplaçant la page d\'index par défaut de la galerie<br>
    273 - En option, le plugin Extended Description, pour le support multi-langues<br>
    274             </li><br><br>
    275             <li>
    276 Réalisation:<br><br>
    277 A. Dans le plugin UAM:<br>
    278               <ol>
    279                 <li>Activer la confirmation d\'inscription</li>
    280                 <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>
    281                 <li>Sélectionner le groupe "Attente" à la rubrique "Pour les utilisateurs n\'ayant pas validé leur inscription"</li>
    282                 <li>Sélectionner le groupe "Validés" à la rubrique "Pour les utilisateurs ayant validé leur inscription"</li>
    283                 <li>Enregistrer la configuration du plugin</li>
    284               </ol>
    285 <br>
    286 B. Dans le plugin Additional Pages:<br>
    287                 <b>NOTE : La gestion des droits d\'accès aux pages additionelles pour les groupes doit être activée (voir configuration du plugin Additional Pages).</b>
    288                 <br>
    289               <ol>
    290                 <li>Ajouter une nouvelle page avec au minimum les paramètres suivants :</li>
    291                 <ul>
    292                   <li>Nom de la page : Le nom que vous souhaiter donner à la page additionnelle (ex : Inscription non validée)</li>
    293                   <li>Définir comme page d\'accueil coché</li>
    294                   <li>Groupes autorisés : Cocher la case correspondante au groupe "Attente" configuré dans UAM</li>
    295                   <li>Contenu : Le texte que vous souhaitez faire apparaitre aux visiteurs.</li>
    296                 </ul>
    297                 <br>
    298                 <li>Et c\'est tout ! Seuls les visiteurs inscrits et dont l\'inscription n\'a pas été validée verront cette page d\'index additionnelle.</li>
    299               </ol>
    300             </li>
    301           </ul>';
     198$lang['UAM_Tips1'] = 'Information de non confirmation d\'inscription avec UAM et PWG_Stuffs';
     199$lang['UAM_Tips2'] = 'Information de non confirmation d\'inscription avec UAM et Additional Pages';
    302200$lang['UAM_No_Ghosts'] = 'Pas de visiteurs fantômes pour l\'instant';
    303201$lang['UAM_No_Userlist'] = 'Pas de suivi de visiteurs pour l\'instant';
    304 $lang['UAM_No_Usermanager'] = 'Pas de validations d\'inscription pour l\'instant';
     202$lang['UAM_No_Usermanager'] = 'Pas de confirmations d\'inscription pour l\'instant';
    305203$lang['UAM_Stuffs_Title'] = 'Module UAM';
    306 $lang['UAM_Stuffs_Desc'] = 'Ajoute un module d\'information des utilisateurs non validés';
    307204$lang['UAM_Stuffs'] = 'Module PWG Stuffs';
    308205// --------- End: New or revised $lang ---- from version 2.20.0
     
    322219
    323220// --------- Starting below: New or revised $lang ---- from version 2.20.11
    324 $lang['UAM_Error_Using_illegal_flag'] = 'Erreur de syntaxe ! Le drapeau d\'insertion automatique [Kdays] est utilisé alors que l\'option "Limitation du délai de validation d\'inscription" n\'a pas été activée. Veuillez activer l\'option ou corriger le(s) champ(s) marqué(s) en rouge.';
     221$lang['UAM_Error_Using_illegal_flag'] = 'Erreur de syntaxe ! Le drapeau d\'insertion automatique [Kdays] est utilisé alors que l\'option "Limitation du délai de confirmation d\'inscription" n\'a pas été activée. Veuillez activer l\'option ou corriger le(s) champ(s) marqué(s) en rouge.';
    325222// --------- End: New or revised $lang ---- from version 2.20.11
    326223
     
    330227$lang['UAM_Confirm_Status'] = 'Statuts<br>(------- pour conserver la valeur par défaut de Piwigo)';
    331228$lang['UAM_Confirm_Level'] = 'Niveau de confidentialité<br>(------- pour conserver la valeur par défaut de Piwigo)';
    332 $lang['UAM_No_Valid_Level'] = 'Pour les utilisateurs n\'ayant pas validé leur inscription<br>';
    333 $lang['UAM_Valid_Level'] = 'Pour les utilisateurs ayant validé leur inscription.<br>';
    334229$lang['UAM_GTAutoGp'] = 'Changement automatique de groupe / statut / niveau de confidentialité';
    335230$lang['UAM_Expired_Level'] = '<b>Niveau de confidentialité</b> pour les utilisateurs dont l\'inscription aura expirée<br>';
     
    350245$lang['UAM %d user pwdreseted'] = 'Renouvellement de mot de passe demandé pour %d utilisateur';
    351246$lang['UAM %d users pwdreseted'] = 'Renouvellement de mot de passe demandé pour %d utilisateurs';
    352 $lang['UAM_Error_Using_illegal_Kdays'] = 'L\'utilisation de la balise [Kdays] n\'est autorisée que si la limitation du délai de validation d\'inscription est active. Reportez vous au champ de texte en rouge pour corriger le problème.';
     247$lang['UAM_Error_Using_illegal_Kdays'] = 'L\'utilisation de la balise [Kdays] n\'est autorisée que si la limitation du délai de confirmation d\'inscription est active. Reportez vous au champ de texte en rouge pour corriger le problème.';
    353248$lang['UAM_Default_InfoMail_Txt'] = 'Bonjour [username] et merci de vous être inscrit sur la galerie [mygallery].
    354249
    355250Vous trouverez ci-dessous vos informations de connexion sur la galerie.';
    356 $lang['UAM_Default_ConfirmMail_Txt'] = 'Bonjour [username] et merci de vous être inscrit sur la galerie [mygallery].
    357 
    358 Pour terminer la procédure et pouvoir parcourir l\'ensemble des photos, merci de bien vouloir valider votre inscription en cliquant sur le lien dans ce message.';
    359251$lang['UAM_Default_GhstReminder_Txt'] = 'Bonjour [username].
    360252       
     
    367259L\'administrateur de la galerie [mygallery] - [myurl]';
    368260$lang['UAM_Default_GhstDeletion_Txt'] = 'Désolé [username], votre compte a été supprimé automatiquement pour cause de délai dépassé depuis votre dernière visite à [mygallery]. Veuillez vous réinscrire.';
    369 $lang['UAM_Default_GhstDemotion_Txt'] = 'Désolé [username], votre compte a été rétrogradé pour cause de dépassement de délai depuis votre dernière visite à [mygallery]. Veuillez revalider votre inscription en cliquant sur le lien suivant :';
    370 $lang['UAM_Default_AdminValidation_Txt'] = 'Bonjour [username] et merci de vous être inscrit sur la galerie [mygallery].
    371 
    372 Votre inscription a été validée manuellement par l\'administrateur de [mygallery]. Vous pouvez maintenant vous connecter à [myurl] et modifier vos informations de profil.';
    373261$lang['UAM_Default_PwdRequest_Txt'] = 'Vous avez demandé le renouvellement de votre mot de passe. Veuillez trouver ci-dessous vos nouvelles informations de connexion.';
    374 $lang['UAM_Default_ValidationTimeout_Txt'] = 'Désolé, votre accès a été supprimé car vous n\'avez pas validé votre inscription dans le temps imparti ([Kdays] jours). Merci de vous réinscrire en prenant garde d\'utiliser une adresse de messagerie valide et accessible.';
    375 $lang['UAM_Default_CfmMail_Remail_Txt1'] = 'Bonjour [username].
    376                
    377 Ceci est un message de rappel car vous n\'avez pas validé votre inscription sur [mygallery] et votre clé de validation a expiré. Pour vous permettre d\'accéder à notre galerie, votre période de validation a été réinitialisée. Vous avez donc un nouveau délai de x jours pour valider votre inscription.
    378 
    379 Note: A l\'issue de cette période sans validation, votre compte sera définitivement supprimé.';
    380 $lang['UAM_Default_CfmMail_Remail_Txt2'] = 'Bonjour [username].
    381 
    382 Ceci est un message de rappel car vous vous êtes inscrit sur notre galerie [mygallery] mais vous n\'avez pas encore validé cette inscription et le délai va bientôt expirer. Un délai supplémentaire de x jours vous est accordé. Veuillez cliquer sur le lien de confirmation que vous avez reçu lors de votre inscription.
    383 
    384 Note: A l\'issue de cette période sans validation, votre compte sera définitivement supprimé.';
    385262$lang['UAM_Default_CfmMail_Custom_Txt1'] = 'Bienvenue [username]! Vous avez confirmé que vous étiez bien un humain et non une machine. Vous pouvez maintenant profiter pleinement de [mygallery]!';
    386 $lang['UAM_Default_CfmMail_Custom_Txt2'] = 'Votre clé d\'activation est incorrecte ou expirée ou vous avez déjà validé votre inscription. Merci de contacter le webmestre de la galerie pour résoudre le problème.';
    387263$lang['UAM_DumpTxt'] = 'Sauvegarde et restauration de votre configuration';
    388264$lang['UAM_Restore'] = 'Pour restaurer le fichier de sauvegarde de votre configuration. Seul le fichier sauvegardé sur le serveur est pris en compte.
     
    408284$lang['UAM_GTAutoMail'] = 'Email automatique sur changement de groupe / statut / Niveau de confidentialité';
    409285$lang['UAM_NewFeature'] = 'Nouvelle option !';
    410 $lang['UAM_RejectConnexion'] = 'Rejeter les connexions des utilisateurs non validés';
    411286$lang['UAM_RejectConnexion_Custom_Txt'] = 'Personnaliser le texte de la page de rejet de la connexion';
    412 $lang['UAM_Default_RejectConnexion_Txt'] = 'Désolé, vous n\'avez pas encore validé votre inscription et vous ne pouvez pas vous connecter maintenant. Merci de vérifier votre boite aux lettres. Vous devriez y trouver un message comportant un lien pour valider votre inscription. Si ce n\'est pas le cas, merci de contacter l\'administrateur de la galerie.';
    413287$lang['UAM_Reject_Page_Title'] = 'Connexion refusée !';
    414288// --------- End: New or revised $lang ---- from version 2.30.2
     289
     290
     291// --------- Starting below: New or revised $lang ---- from version 2.30.3
     292$lang['UAM_MailExclusion_No'] = 'Exclusion des domaines de messagerie - Inaccessible car les emails ne sont pas obligatoires pour les inscriptions !';
     293$lang['UAM_USRAuto'] = 'Gestion automatique des visiteurs non confirmés';
     294$lang['UAM_Default_ConfirmMail_Txt'] = 'Bonjour [username] et merci de vous être inscrit sur la galerie [mygallery].
     295
     296Pour terminer la procédure et pouvoir parcourir l\'ensemble des photos, merci de bien vouloir confirmer votre inscription en cliquant sur le lien dans ce message.';
     297$lang['UAM_Default_GhstDemotion_Txt'] = 'Désolé [username], votre compte a été rétrogradé pour cause de dépassement de délai depuis votre dernière visite à [mygallery]. Veuillez reconfirmer votre inscription en cliquant sur le lien suivant :';
     298$lang['UAM_Tips2_txt'] = '
     299          <ul>
     300            <li>
     301            Objectifs : Informer le visiteur que son inscription est en attente de confirmation en affichant une page additionnelle remplaçant la page d\'index standard de la galerie à chacune de ces connexions; et ce, tant que l\'inscription n\'est pas confirmée.
     302            <br><br>
     303            Avantages par rapport à la méthode avec PWG_Stuffs : Permettre une information mise en forme et moins austère et afficher immédiatement l\'information dès l\'inscription des visiteurs.
     304            </li><br><br>
     305            <li>
     306Pré-requis:<br>
     307- Une galerie avec tout ou partie des catégories privées, visibles par les seuls utilisateurs inscrits<br>
     308- Au moins les 2 groupes d\'utilisateurs Piwigo suivants : "Attente", sans aucune permission sur les catégories privées, et "Confirmés", avec toutes les permissions sur les catégories privées<br>
     309- Le plugin UAM<br>
     310- Le plugin Additional Pages, pour l\'ajout et la gestion d\'une page additionnelle remplaçant la page d\'index par défaut de la galerie<br>
     311- En option, le plugin Extended Description, pour le support multi-langues<br>
     312            </li><br><br>
     313            <li>
     314Réalisation:<br><br>
     315A. Dans le plugin UAM:<br>
     316              <ol>
     317                <li>Activer la confirmation d\'inscription</li>
     318                <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>
     319                <li>Sélectionner le groupe "Attente" à la rubrique "Pour les utilisateurs n\'ayant pas confirmé leur inscription"</li>
     320                <li>Sélectionner le groupe "Confirmés" à la rubrique "Pour les utilisateurs ayant confirmé leur inscription"</li>
     321                <li>Enregistrer la configuration du plugin</li>
     322              </ol>
     323<br>
     324B. Dans le plugin Additional Pages:<br>
     325                <b>NOTE : La gestion des droits d\'accès aux pages additionelles pour les groupes doit être activée (voir configuration du plugin Additional Pages).</b>
     326                <br>
     327              <ol>
     328                <li>Ajouter une nouvelle page avec au minimum les paramètres suivants :</li>
     329                <ul>
     330                  <li>Nom de la page : Le nom que vous souhaiter donner à la page additionnelle (ex : Inscription non confirmée)</li>
     331                  <li>Définir comme page d\'accueil coché</li>
     332                  <li>Groupes autorisés : Cocher la case correspondante au groupe "Attente" configuré dans UAM</li>
     333                  <li>Contenu : Le texte que vous souhaitez faire apparaitre aux visiteurs.</li>
     334                </ul>
     335                <br>
     336                <li>Et c\'est tout ! Seuls les visiteurs inscrits et dont l\'inscription n\'a pas été confirmée verront cette page d\'index additionnelle.</li>
     337              </ol>
     338            </li>
     339          </ul>';
     340$lang['UAM_%d_Validated_User'] = '%d Utilisateur confirmé manuellement';
     341$lang['UAM_%d_Validated_Users'] = '%d Utilisateurs confirmés manuellement';
     342$lang['UAM_No_Confirm_Group'] = 'Pour les utilisateurs n\'ayant pas confirmé leur inscription<br>';
     343$lang['UAM_Validated_Group'] = 'Pour les utilisateurs ayant confirmé leur inscription<br>';
     344$lang['UAM_No_Confirm_Status'] = 'Pour les utilisateurs n\'ayant pas confirmé leur inscription<br>';
     345$lang['UAM_Validated_Status'] = 'Pour les utilisateurs ayant confirmé leur inscription.<br>';
     346$lang['UAM_ConfirmMail_Remail'] = 'Mail de rappel aux inscrits non confirmés';
     347$lang['UAM_No_Valid_Level'] = 'Pour les utilisateurs n\'ayant pas confirmé leur inscription<br>';
     348$lang['UAM_Valid_Level'] = 'Pour les utilisateurs ayant confirmé leur inscription.<br>';
     349$lang['UAM_Err_UserManager_Settings'] = 'Cette page n\'est accessible que si "Confirmation d\'inscription" est actif et si un groupe de visiteurs non confirmés est configuré dans le "Paramétrage des confirmations d\'inscriptions".';
     350$lang['UAM_Tips1_txt'] = '
     351          <ul>
     352            <li>
     353            Objectifs : Informer le visiteur que son inscription est en attente de confirmation en affichant un bloc personnel sur la page d\'accueil de la galerie; et ce, tant que l\'inscription n\'est pas confirmée.<br><br>
     354            <b>Rappel: En fonctionnement standard, le "Guest" ne voit que les catégories publiques, sans message d\'information.</b>
     355            </li><br><br>
     356            <li>
     357Pré-requis:<br>
     358- Une galerie avec tout ou partie des catégories privées, visibles par les seuls utilisateurs inscrits<br>
     359- Au moins les 2 groupes d\'utilisateurs Piwigo suivants : "Attente", sans aucune permission sur les catégories privées, et "Confirmés", avec toutes les permissions sur les catégories privées<br>
     360- Le plugin UAM<br>
     361- Le plugin PWG Stuffs, pour l\'ajout d\'un module spécial UAM<br>
     362- En option, le plugin Extended Description, pour le support multi-langues<br>
     363            </li><br><br>
     364            <li>
     365Réalisation:<br><br>
     366A. Dans le plugin UAM:<br>
     367              <ol>
     368                <li>Activer la confirmation d\'inscription</li>
     369                <li>Activer l\'option "Module PWG Stuffs"</li>
     370                <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>
     371                <li>Sélectionner le groupe "Attente" à la rubrique "Pour les utilisateurs n\'ayant pas confirmé leur inscription"</li>
     372                <li>Sélectionner le groupe "Confirmés" à la rubrique "Pour les utilisateurs ayant confirmé leur inscription"</li>
     373                <li>Enregistrer la configuration du plugin</li>
     374              </ol>
     375<br>
     376B. Dans le plugin PWG Stuffs:<br>
     377              <ol>
     378                <li>Aller dans l\'onglet "Ajouter un nouveau bloc"</li>
     379                <li> Sélectionner "Module UAM"</li>
     380                <li>Configurer le module, en indiquant son titre (ex : "Inscription en attente de confirmation") et sa description, et cocher uniquement "Attente" dans la liste des groupes autorisés</li>
     381                <li>Compléter le contenu du module avec le texte du message d\'information qui sera affiché aux utilisateurs non confirmés. Comme dans UAM, les balises de langues peuvent être utilisées si le plugin Extended Description est activé</li>
     382                <li>Cocher "Afficher le module sur la page d\'accueil du site"</li>
     383                <li>Valider la configuration du module</li>
     384              </ol>
     385            </li>
     386          </ul>';
     387$lang['UAM_Stuffs_Desc'] = 'Ajoute un module d\'information des utilisateurs non confirmés';
     388$lang['UAM_Default_AdminValidation_Txt'] = 'Bonjour [username] et merci de vous être inscrit sur la galerie [mygallery].
     389
     390Votre inscription a été confirmée manuellement par l\'administrateur de [mygallery]. Vous pouvez maintenant vous connecter à [myurl] et modifier vos informations de profil.';
     391$lang['UAM_Default_ValidationTimeout_Txt'] = 'Désolé, votre accès a été supprimé car vous n\'avez pas confirmé votre inscription dans le temps imparti ([Kdays] jours). Merci de vous réinscrire en prenant garde d\'utiliser une adresse de messagerie valide et accessible.';
     392$lang['UAM_Default_CfmMail_Remail_Txt2'] = 'Bonjour [username].
     393
     394Ceci est un message de rappel car vous vous êtes inscrit sur notre galerie [mygallery] mais vous n\'avez pas encore confirmé cette inscription et le délai va bientôt expirer. Un délai supplémentaire de x jours vous est accordé. Veuillez cliquer sur le lien de confirmation que vous avez reçu lors de votre inscription.
     395
     396Note: A l\'issue de cette période sans confirmation, votre compte sera définitivement supprimé.';
     397$lang['UAM_Default_CfmMail_Custom_Txt2'] = 'Votre clé d\'activation est incorrecte ou expirée ou vous avez déjà confirmé votre inscription. Merci de contacter le webmestre de la galerie pour résoudre le problème.';
     398$lang['UAM_RejectConnexion'] = 'Rejeter les connexions des utilisateurs non confirmés';
     399$lang['UAM_Default_CfmMail_Remail_Txt1'] = 'Bonjour [username].
     400               
     401Ceci est un message de rappel car vous n\'avez pas confirmé votre inscription sur [mygallery] et votre clé de confirmation a expiré. Pour vous permettre d\'accéder à notre galerie, votre période de confirmation a été réinitialisée. Vous avez donc un nouveau délai de x jours pour confirmer votre inscription.
     402
     403Note: A l\'issue de cette période sans confirmation, votre compte sera définitivement supprimé.';
     404$lang['UAM_Default_RejectConnexion_Txt'] = 'Désolé, vous n\'avez pas encore confirmé votre inscription et vous ne pouvez pas vous connecter maintenant. Merci de vérifier votre boite aux lettres. Vous devriez y trouver un message comportant un lien pour confirmer votre inscription. Si ce n\'est pas le cas, merci de contacter l\'administrateur de la galerie.';
     405$lang['UAM_Tracking registered users'] = 'Suivi des utilisateurs inscrits';
     406$lang['UAM_Tracking confirmations'] = 'Suivi des confirmations';
     407// --------- End: New or revised $lang ---- from version 2.30.3
    415408?>
  • extensions/UserAdvManager/branches/2.30/language/hu_HU/help.lang.php

    r12667 r13124  
    3131$lang['UAM_remailtxt1Title'] = 'Reminder email with new key generated';
    3232$lang['UAM_remailtxt2Title'] = 'Reminder email without new key generated';
    33 $lang['UAM_lastvisitTitle_d'] = 'This activates a table in the &quot;Tracking users&quot; tab which are registered users listed on the gallery and the date of their last visit and time spent (in days) since their last visit. Monitoring is purely informative for the administrator of the gallery.';
    3433$lang['UAM_tipsTitle_d'] = 'Tips and various examples of use';
    3534
  • extensions/UserAdvManager/branches/2.30/language/hu_HU/plugin.lang.php

    r12667 r13124  
    9292$lang['UAM_mail_exclusionlist_error'] = 'Figyelem! Egy "új sor"-t (CR-LF) írtál be a kizárandó e-mail-ek listájának elejére (pirossal látható). Bár ez az új sor nem látható, jelen van, és a plugin működésében hibát okozhat. Kérlek, gépeld újra a kizárási listát, hogy ne kezdődjön új sorral.';
    9393// --------- End: New or revised $lang ---- from version 2.12.8
    94 
    95 
    96 // --------- Starting below: New or revised $lang ---- from version 2.13.0
    97 /* UserList Tab */
    98 $lang['UAM_UserList_Title'] = 'Regisztrált felhasználó figyelése';
    99 // --------- End: New or revised $lang ---- from version 2.13.0
    10094
    10195
     
    141135$lang['UAM_GhostTracker_true'] = ' Bekapcsol. Maximális napok száma két látogatás között: ';
    142136$lang['UAM_GhostTracker_ReminderText'] = 'A Szellem-Követő emlékeztető üzenetének testretszabása.';
    143 $lang['UAM_LastVisit'] = ' Regisztrált felhasználók követése';
    144 
    145 $lang['UAM_Tab_UserManager'] = 'Érvényesítés követése';
    146 
    147 /* UserManager Tab */
    148 $lang['UAM_SubTitle3'] = 'Érvényesítés követése';
    149 $lang['UAM_UserManager_Title'] = 'Érvényesítés követése';
     137
    150138/* Ghost Tracker Tab */
    151139$lang['UAM_SubTitle4'] = 'Szellem-Követő';
     
    153141$lang['UAM_GhostTracker_Title'] = 'Szellem-látogatók kezelése';
    154142$lang['UAM_GhostTracker_Init'] = 'Ha ezt a funkciót most először kapcsolod be, vagy hosszú idő után (ami alatt új felhasználók regisztráltak) újra aktiválod, akkor a Szellem-Követőt inicializálnod vagy visszaállítanod kell. Ezt csak az opció bekapcsolása vagy újraindítása esetén kell megtenni.Kérlek, klikkelj <u>egyszer</u> az alábbi visszaállítás gombra.';
    155 /* UserList Tab */
    156 $lang['UAM_SubTitle5'] = 'Felhasználó-követés';
    157 $lang['UAM_Tab_UserList'] = 'Felhasználó-követés';
    158143/* Mailing */
    159144$lang['UAM_Add of %s'] = 'Profil elkészítve %s számára';
     
    356341// --------- Starting below: New or revised $lang ---- from version 2.30.2
    357342$lang['UAM_RedirToProfile'] = 'Átirányítás a Testreszabás oldalra';
    358 /*TODO*/$lang['UAM_GTAutoGp'] = 'Automatic change of group / status / privacy level';
    359 /*TODO*/$lang['UAM_GTAutoMail'] = 'Automatically sending an email when changing group / status / privacy level';
    360 /*TODO*/$lang['UAM_NewFeature'] = 'New feature !';
    361 /*TODO*/$lang['UAM_RejectConnexion'] = 'Reject user\'s connexion until registration is validated';
    362 /*TODO*/$lang['UAM_RejectConnexion_Custom_Txt'] = 'Customize rejection text';
    363 /*TODO*/$lang['UAM_Default_RejectConnexion_Txt'] = 'Sorry, you don\'t have validate your registration yet, so you can\'t connect the gallery now. Please check your email box. You should find an email sent by the gallery, containing a link to perform your validation. If not, please contact the webmaster.';
    364 /*TODO*/$lang['UAM_Reject_Page_Title'] = 'Connexion not allowed !';
    365343// --------- End: New or revised $lang ---- from version 2.30.2
    366344?>
  • extensions/UserAdvManager/branches/2.30/language/it_IT/help.lang.php

    r12667 r13124  
    2323$lang['UAM_infomailTitle_d'] = 'Questa opzione consente di automatizzare l\'invio di una e-mail le informazioni a un utente al momento dell\'iscrizione o quando cambia la sua password o indirizzo e-mail nel loro profilo.<br><br>
    2424Il contenuto del messaggio inviato è composto da una parte personalizzabile di introdurre una piccola nota di benvenuto e una parte fissa che indica il login, password e indirizzo di posta elettronica dell\'utente.';
    25 /* TODO */$lang['UAM_confirmgrpTitle'] = 'Validation Groups';
    26 /* TODO */$lang['UAM_confirmgrpTitle_d'] = '<b style=&quot;color: red;&quot;>WARNING : Using validation groups requires that you have created at least one users group and is defined &quot;by default&quot; in Piwigo\'s user groups management.</b><br><br>
    27 The groups are validated for use in conjunction with the &quot;Confirmation of registration&quot;';
    28 /* TODO */$lang['UAM_confirmstatTitle'] = 'Validation Statutes';
    29 /* TODO */$lang['UAM_confirmstatTitle_d'] = '<b style=&quot;color: red;&quot;>WARNING : The use of status validation requires that you have kept the &quot;Guest&quot; user with default setting (as user template) for new registered. Note you can set any other user as a template for new registered. Please refer to the Piwigo\'s documentation for more details.</b><br><br>
    30 The groups are validated for use in conjunction with the &quot;Confirmation of registration&quot;';
    31 /* TODO */$lang['UAM_remailtxt1Title'] = 'Reminder email with new key generated';
    32 /* TODO */$lang['UAM_remailtxt2Title'] = 'Reminder email without new key generated';
    33 /* TODO */$lang['UAM_lastvisitTitle_d'] = 'This activates a table in the &quot;Tracking users&quot; tab which are registered users listed on the gallery and the date of their last visit and time spent (in days) since their last visit. Monitoring is purely informative for the administrator of the gallery.';
    34 /* TODO */$lang['UAM_tipsTitle_d'] = 'Tips and various examples of use';
    3525
    3626
     
    4939...
    5040';
    51 /* TODO */$lang['UAM_userlistTitle_d'] = 'This page is for information to the administrator. It displays a list of all users registered on the gallery showing the date and number of days since their last visit. The list is sorted in ascending order of number of days.
    52 <br><br>
    53 <b><u>Only when the Ghost Tracker is active</u></b>, the number of days without a visit appears as the following color code, according to the maximum set in the Ghost Tracker options:
    54 <br>
    55 - <b style=&quot;color: lime;&quot;>Green</b> : When the user has visited the gallery <b style=&quot;color: lime;&quot;><u>less than 50%</u></b> of the maximum indicated in the Ghost Tracker.<br>
    56 - <b style=&quot;color: orange;&quot;>Orange</b> : When the user has visited the gallery <b style=&quot;color: orange;&quot;><u> between 50% and 99% </u></b> of the maximum indicated in the Ghost Tracker.<br>
    57 - <b style=&quot;color: red;&quot;>Red</b> : When the user has visited the gallery <b style=&quot;color: red;&quot;><u>for more than 100%</u></b> of the maximum indicated in the Ghost Tracker. <b><u>In this case, the user must also appear in the Ghost Tracker table.</u></b><br>
    58 <br>
    59 Example :
    60 <br>
    61 The maximum period of Ghost Tracker is configured to 100 days.
    62 <br>
    63 A user will appear in green if he visited the gallery for less than 50 days, in orange if his last visit took place between 50 and 99 days and red for 100 days and above.
    64 <br><br>
    65 <b>NOTE</b>: The list does not display who have not validated their registration (if the option of validating the registration is activated). These users are then managed in a special way in the &quot;Tracking validations&quot; tab.
    66 <br><br>
    67 <b>Table Sorting Function</b>: You can sort the data displayed by clicking on the column headers. Hold the SHIFT key to sort up to 4 simultaneous columns.';
    68 /* TODO */$lang['UAM_usermanTitle_d'] = 'When limiting the deadline for registration is enabled, you will find below the list of users whose validation registration is expected, <b style=&quot;text-decoration: underline;&quot;>whether or not</b> they are in time to validate.<br><br>
    69 The registration date is displayed in green when the user concerned is below the time limit to validate his registration. In this case, the validation key is still valid and we can send an email with or without a new validation key.<br><br>
    70 When the registration date appears in red, the validation period has expired. In this case, you must send an email with regeneration of validation key if you want to enable the user to validate their registration.<br><br>
    71 In all cases, it is possible to manually force the validation.<br><br>
    72 In this view, you can:
    73 <br><br>
    74 - Manually delete accounts <b>(manual drain)</b>
    75 <br>
    76 - Generate email reminder <b>without</b> generating a new key. Warning: Send an email reminder to targeted visitors. This function does not reset the date of registration of targeted visitors and the timeout is still valid.
    77 <br>
    78 - Generate email reminder <b>with</b> generating a new key. Warning : Send an email reminder to targeted visitors. This function also resets the date of registration of targeted visitors which equates to extend the deadline for validation.
    79 <br>
    80 - Submit a registration awaiting validation manually even if the expiry date has passed <b>(forcing validation)</b>.
    81 <br><br>
    82 <b>Table Sorting Function</b>: You can sort the data displayed by clicking on the column headers. Hold the SHIFT key to sort up to 4 simultaneous columns.';
    83 /* TODO */$lang['UAM_gtTitle_d'] = 'When Ghost Tracker is enabled and initialized, you will find below the list of registered visitors who have not returned since x days. &quot;x&quot; is the number of days configured in the General Setup tab. In addition, you will find a column indicating whether an email reminder has been sent to targeted visitors. So, you can see at a glance and treat visitors who have not taken account of the reminder.<br><br>In this view, you can:
    84 <br><br>
    85 - Manually delete accounts <b>(manual drain)</b>
    86 <br>
    87 - Generate email reminder <b>with resetting the last visit date</b>. This allows to give a wildcard to targeted visitors. If the visitor has already received a reminder, nothing prevents to resent a new mail which will reset again, in fact, the last visit date.
    88 <br><br>
    89 <b>Table Sorting Function</b>: You can sort the data displayed by clicking on the column headers. Hold the SHIFT key to sort up to 4 simultaneous columns.';
    90 /*TODO*/$lang['UAM_confirmmailTitle_d'] = 'This option allows a user to either confirm registration by clicking on a link received in an email sent upon registration or the administrator to manually activate the registration.<br><br>
    91 In first case, the e-mail is composed of a customizable part to introduce a little welcome note and a fixed part containing the activation link that is generated from a random key that can possibly regenerate through the &quot;Tracking validations&quot; tab.<br><br>
    92 Dans le premier cas, le message envoyé comprend une partie fixe, avec le lien d\'activation généré à partir d\'une clef aléatoire (cette clé peut éventuellement être régénérée via l\'onglet &quot;Suivi des validations&quot;), et une partie personnalisable par un texte d\'accueil.
    93 <br><br>
    94 Questa opzione &egrave; generalmente utilizzato con l\'assegnazione automatica di gruppo e / o statuto. Ad esempio, un utente che non ha convalidato la loro registrazione sar&agrave; ambientato in un gruppo specifico di utenti (con o senza le restrizioni alla galleria), mentre un utente che ha convalidato la sua registrazione &egrave; fissato in un &quot;normale&quot; del gruppo.';
    95 // --------- End: New or revised $lang ---- from version 2.15.4
    96 
    97 
    98 // --------- Starting below: New or revised $lang ---- from version 2.15.6
    99 /*TODO*/$lang['UAM_RedirTitle_d'] = 'This option automatically redirect a registered user to his customization page only at his first connection to the gallery.<br><br>
    100 Please note: This feature does not apply to all registered users. Those with &quot;admin&quot;, &quot;webmaster&quot; or &quot;generic&quot; status are excluded.';
    101 // --------- End: New or revised $lang ---- from version 2.15.6
    102 
    103 
    104 // --------- Starting below: New or revised $lang ---- from version 2.16.0
    105 /* TODO */$lang['UAM_miscTitle_d'] = '
    106 - Automatic or manual management of ghosts users<br>
    107 - Followed registered users<br>
    108 - Nickname mandatory for guests comments<br>
    109 ...
    110 ';
    111 /* TODO */$lang['UAM_ghosttrackerTitle_d'] = 'Also called &quot;Ghost Tracker&quot;, when this function is activated, you can manage your visitors depending on the frequency of their visits. 2 operating modes are available:<br><br>
    112 - Manual management : When the time between 2 visits is reached,, the visitor appears in the &quot;Ghost Tracker&quot; table where you will be able to remind visitors via email or delete him.<br><br>
    113 - Automated management : When the period between 2 successive visits is reached, the visitor is automatically deleted or moved into a wait group and/or status. In this second case, an information email can be sent to him.<br><br>
    114 <b style=&quot;color: red;&quot;>Important note : If you enable this feature for the first time or you have reactivated after a long period off during which new visitors are registered, you must initialize or reset the Ghost Tracker (see corresponding instructions on &quot;Ghost Tracker&quot; tab).</b>';
    115 $lang['UAM_mailexcTitle_d'] = 'Per impostazione predefinita, PhpWebGallery accetta tutti gli indirizzi di posta elettronica nel xxx@yyy.zz formato. L\'attivazione di questa opzione consente di escludere determinati domini nel formato: @[nome_dominio].[Domain_extension].<br><br>
    116 Esempi :<br>
    117 @hotmail.com -> esclusi gli indirizzi *@hotmail.com<br>
    118 @hotmail -> escludendo tutti gli indirizzi *@hotmail*';
    119 /* TODO */$lang['UAM_GTAutoTitle_d'] = 'This option allows to apply rules for automated management of ghosts users.
    120 <br><br>Basic Principle: A user who reaches the maximum time between visits <b><u>and</u></b> has already been notified by email is considered as expired. Then you can apply automated processing rules such as automatic deletion of expired accounts or demotion by restricting access to the gallery (switch automatically to a restricted group and/or status).
    121 <br><br>The triggering of these automation is achieved when connecting users (any user!) to the gallery.';
    122 /* TODO */$lang['UAM_GTAutoDelTitle'] = 'Custom message on deleted account';
    123 /* TODO */$lang['UAM_GTAutoGpTitle'] = 'Automatic change of group / status';
    124 /* TODO */$lang['UAM_GTAutoGpTitle_d'] = 'The automatic change of group or status equivalent to a demotion of the accounts involved and working on the same principle as the group or the status of validation (see &quot;Setting confirmations and validations of registration&quot;). Therefore be to define a group and / or status demoting access to the gallery. If this has already been defined with the use of registration confirmation function, you can use the same group / status.<br><br>
    125 <b style=&quot;color: red;&quot;>Important note :</b> If a ghost user still has not heard from after the time limit and despite the automatic notification by email (if enabled), he\'s automatically deleted from the database.';
    126 // --------- End: New or revised $lang ---- from version 2.16.0
    127 
    128 
    129 // --------- Starting below: New or revised $lang ---- from version 2.20.0
    130 /* TODO */$lang['UAM_validationlimitTitle_d'] = 'This option allows to limit the validity of key validation email sent to new registrants. Visitors who register will have x days of time to validate their registration. After this period the validation link will expire.
    131 <br><br>
    132 This option is used in conjunction with the &quot;Confirmation of registration&quot;
    133 <br><br>
    134 If this option and the option &quot;Remind unvalidated users&quot; are activated, new options will appear below in this section to enable the automation of unvalidated users management.';
    135 /* TODO */$lang['UAM_remailTitle_d'] = 'This option allows you to send a reminder email to users registered but have not validated their registration on time. It therefore works in conjunction with the &quot;Confirmation of registration&quot;
    136 <br><br>
    137 2 types of emails can be sent: With or without regeneration of the validation key. As appropriate, the content of emails can be customized.
    138 <br><br>
    139 Refer to the &quot;Tracking validations&quot; tab.
    140 <br><br>
    141 If this option and the option &quot;Deadline for registration validation limited&quot; are activated, new options will appear below in this section to enable the automation of unvalidated users management.';
    142 /*TODO*/$lang['UAM_USRAutoTitle_d'] = 'Automatic handling of unvalidated visitors is triggered each time you connect to the gallery and works as follows:
    143 <br><br>
    144 - Automatic deletion of accounts not validated in the allotted time without sending automatic email reminder -> &quot;Deadline for registration validation limited&quot; <b><u>enabled</u></b> and &quot;Remind unvalidated users&quot; <b><u>disabled</u></b>.
    145 <br><br>
    146 - Automatically sending a reminder message with a new generation of validation key and automatic deletion of accounts not validated in the time after sending the reminder -> &quot;Deadline for registration validation limited&quot; <b><u>enabled</u></b> et &quot;Remind unvalidated users&quot; <b><u>enabled</u></b>.';
    147 /*TODO*/$lang['UAM_USRAutoMailTitle_d'] = 'When activated, this function will automatically send personalized content in &quot;Reminder email with new key generated&quot; to visitors who match criteria.';
    148 /*TODO*/$lang['UAM_StuffsTitle_d'] = 'This enables an additional UAM block in PWG Stuffs plugin (if installed) to inform your visitors who did not validate their registration about their condition.
    149 <br><br>
    150 Please refer to the <b>Tips and Examples of Use</b> at the bottom of this page for details.';
    151 // --------- End: New or revised $lang ---- from version 2.20.0
    152 
    153 
    154 // --------- Starting below: New or revised $lang ---- from version 2.20.3
    155 /*TODO*/$lang['UAM_DumpTitle_d'] = 'This allows you to save the entire configuration of the plugin in a file so you can restore it if something goes wrong (wrong manipulation or before an update, for example). By default, the file is stored in this folder ../plugins/UserAdvManager/include/backup/ and is called &quot;UAM_dbbackup.sql&quot;.
    156 <br><br>
    157 <b style=&quot;color: red;&quot;>Warning: The file is overwritten each backup action!</b>
    158 <br><br>
    159 It can sometimes be useful to retrieve the backup file on your computer. For example: To restore to another database, to outsource or to keep multiple save files. To do this, just check the box to download the file.
    160 <br><br>
    161 The recovery from this interface is not supported. Use tools like phpMyAdmin.';
    162 // --------- End: New or revised $lang ---- from version 2.20.3
    163 
    164 
    165 // --------- Starting below: New or revised $lang ---- from version 2.20.4
    166 /*TODO*/$lang['UAM_HidePasswTitle_d'] = 'Choose here if you want to display the password chosen by the visitor in the information email. If you enable the option, the password will then appear in clear text. If you disable the password will not appear at all.';
    167 // --------- End: New or revised $lang ---- from version 2.20.4
    168 
    169 
    170 // --------- Starting below: New or revised $lang ---- from version 2.20.11
    171 /*TODO*/$lang['UAM_gttextTitle_d'] = 'Enter the text you want to appear in the email reminder to prompt the user to return to visit your gallery (NB: The text pre-filled with the installation of the plugin is provided as an example).
    172 <br><br>
    173 Further customize the content with special inserted tags:<br>
    174 - <b style=&quot;color: red;&quot;>[username]</b> to automatically insert the name of the destination user of the email.<br>
    175 - <b style=&quot;color: red;&quot;>[mygallery]</b> to insert the title of your gallery.<br>
    176 - <b style=&quot;color: red;&quot;>[myurl]</b> to insert your gallery URL if set in Piwigo\'s configuration options.<br>
    177 - <b style=&quot;color: red;&quot;>[days]</b> to insert the maximum numbers of days between two visits.
    178 <br><br>
    179 Per utilizzare più lingue, è possibile utilizzare i tag del plugin Extended Description, se esso è attivo.';
    180 $lang['UAM_confirmtxtTitle_d'] = 'Enter the introductory text that you want to appear in the email confirmation of registration.
    181 <br><br>
    182 Further customize the content with special inserted tags:<br>
    183 - <b style=&quot;color: red;&quot;>[username]</b> to automatically insert the name of the destination user of the email.<br>
    184 - <b style=&quot;color: red;&quot;>[mygallery]</b> to insert the title of your gallery.<br>
    185 - <b style=&quot;color: red;&quot;>[myurl]</b> to insert your gallery URL if set in Piwigo\'s configuration options.<br>
    186 - <b style=&quot;color: red;&quot;>[Kdays]</b> to insert the number of days limit to validate a registration (&quot;Termine per la validazione dell\'iscrizione limitato;&quot; have to be enabled).
    187 <br><br>
    188 Per utilizzare più lingue, è possibile utilizzare i tag del plugin Extended Description, se esso è attivo.';
    189 /* TODO */$lang['UAM_remailtxt1Title_d'] = 'Enter the introductory text that you want to appear in the reminder email, in addition to the validation key regenerated.
    190 <br><br>
    191 If left blank, the mail reminder will include only the validation link. It is therefore strongly advised to take a little explanatory text. (NB: The text pre-filled with the installation of the plugin is provided as an example).
    192 <br><br>
    193 Further customize the content with special inserted tags:<br>
    194 - <b style=&quot;color: red;&quot;>[username]</b> to automatically insert the name of the destination user of the email.<br>
    195 - <b style=&quot;color: red;&quot;>[mygallery]</b> to insert the title of your gallery.<br>
    196 - <b style=&quot;color: red;&quot;>[myurl]</b> to insert your gallery URL if set in Piwigo\'s configuration options.<br>
    197 - <b style=&quot;color: red;&quot;>[Kdays]</b> to insert the number of days limit to validate a registration (&quot;Termine per la validazione dell\'iscrizione limitato;&quot; have to be enabled).
    198 <br><br>
    199 Per utilizzare più lingue, è possibile utilizzare i tag del plugin Extended Description, se esso è attivo.';
    200 /* TODO */$lang['UAM_remailtxt2Title_d'] = 'Enter the introductory text that you want to appear in the reminder email without a validation key regenerated.
    201 <br><br>
    202 If left blank, the mail reminder will be empty. It is therefore strongly advised to take a little explanatory text. (NB: The text pre-filled with the installation of the plugin is provided as an example).
    203 <br><br>
    204 Further customize the content with special inserted tags:<br>
    205 - <b style=&quot;color: red;&quot;>[username]</b> to automatically insert the name of the destination user of the email.<br>
    206 - <b style=&quot;color: red;&quot;>[mygallery]</b> to insert the title of your gallery.<br>
    207 - <b style=&quot;color: red;&quot;>[myurl]</b> to insert your gallery URL if set in Piwigo\'s configuration options.<br>
    208 - <b style=&quot;color: red;&quot;>[Kdays]</b> to insert the number of days limit to validate a registration (&quot;Termine per la validazione dell\'iscrizione limitato;&quot; have to be enabled).
    209 <br><br>
    210 Per utilizzare più lingue, è possibile utilizzare i tag del plugin Extended Description, se esso è attivo.';
    211 /*TODO*/$lang['UAM_infotxtTitle_d'] = 'Inserisci il testo introduttivo che si desidera visualizzare nella e-mail informazioni.
    212 <br><br>
    213 Further customize the content with special inserted tags:<br>
    214 - <b style=&quot;color: red;&quot;>[username]</b> to automatically insert the name of the destination user of the email.<br>
    215 - <b style=&quot;color: red;&quot;>[mygallery]</b> to insert the title of your gallery.<br>
    216 - <b style=&quot;color: red;&quot;>[myurl]</b> to insert your gallery URL if set in Piwigo\'s configuration options.
    217 <br><br>
    218 Per utilizzare più lingue, è possibile utilizzare i tag del plugin Extended Description, se esso è attivo.';
    219 /* TODO */$lang['UAM_AdminValidationMail_d'] = 'When an administrator or Webmaster of the gallery manually valid registration pending, a notification email is automatically sent to the user. Enter here the text that appears in this email.
    220 <br><br>
    221 Further customize the content with special inserted tags:<br>
    222 - <b style=&quot;color: red;&quot;>[username]</b> to automatically insert the name of the destination user of the email.<br>
    223 - <b style=&quot;color: red;&quot;>[mygallery]</b> to insert the title of your gallery.<br>
    224 - <b style=&quot;color: red;&quot;>[myurl]</b> to insert your gallery URL if set in Piwigo\'s configuration options.
    225 <br><br>
    226 Per utilizzare più lingue, è possibile utilizzare i tag del plugin Extended Description, se esso è attivo.';
    227 /*TODO*/$lang['UAM_confirmmail_custom1_d'] = 'When the option &quot;Confirmation of registration&quot; is active, this field allows you to customize the <b><u>acceptance text</u></b> on the registration confirmation page displayed when user clicks the confirmation link that was received by email.
    228 <br><br>
    229 After installing the plugin, a standard text is set as an example.
    230 <br><br>
    231 Further customize the content with special inserted tags:<br>
    232 - <b style=&quot;color: red;&quot;>[username]</b> to automatically insert the name of the destination user of the email.<br>
    233 - <b style=&quot;color: red;&quot;>[mygallery]</b> to insert the title of your gallery.<br>
    234 - <b style=&quot;color: red;&quot;>[myurl]</b> to insert your gallery URL if set in Piwigo\'s configuration options.
    235 <br><br>
    236 This field is compatible with the FCK Editor and, for multi-languages, you can use the tags [lang] of the plugin Extended description if it\'s active.';
    237 /*TODO*/$lang['UAM_confirmmail_custom2_d'] = 'When the option &quot;Confirmation of registration&quot; is active, this field allows you to customize the <b><u>rejectance text</u></b> on the registration confirmation page displayed when user clicks the confirmation link that was received by email.
    238 <br><br>
    239 After installing the plugin, a standard text is set as an example.
    240 <br><br>
    241 Further customize the content with special inserted tags:<br>
    242 - <b style=&quot;color: red;&quot;>[username]</b> to automatically insert the name of the destination user of the email.<br>
    243 - <b style=&quot;color: red;&quot;>[mygallery]</b> to insert the title of your gallery.<br>
    244 - <b style=&quot;color: red;&quot;>[myurl]</b> to insert your gallery URL if set in Piwigo\'s configuration options.
    245 <br><br>
    246 This field is compatible with the FCK Editor and, for multi-languages, you can use the tags [lang] of the plugin Extended description if it\'s active.';
    247 /* TODO */$lang['UAM_GTAutoDelTitle_d'] = 'This is only valid when the user whose account has expired itself triggers the deletion mechanism (rare but possible). he\'s then disconnected of the gallery and redirected to a page showing the deletion of his account and, possibly, the reasons for this deletion.
    248 <br><br>
    249 Further customize the content with special inserted tags:<br>
    250 - <b style=&quot;color: red;&quot;>[mygallery]</b> to insert the title of your gallery.<br>
    251 - <b style=&quot;color: red;&quot;>[myurl]</b> to insert your gallery URL if set in Piwigo\'s configuration options.<br>
    252 <b style=&quot;color: red;&quot;>[username]</b> is not available here because concerned user has been deleted.
    253 <br><br>
    254 Custom text for the redirect page can be entered in this field that is compatible with the FCK Editor and, for multi-languages, you can use the tags [lang] of the plugin Extended description if it\'s active.';
    255 /* TODO */$lang['UAM_GTAutoMailTitle_d'] = 'When an account is expired (group / status change demoting the visitor), an email information can be sent to clarify the reasons for this change and the means to recover the initial access to the gallery.
    256 <br>To do this, a link to revalidation of registration is attached to the email (automatic generation of a new validation key).<b style=&quot;color: red;&quot;>If the user has already been notified, his account is automatically destroyed.</b>
    257 <br><br>
    258 Enter the custom text that also explain the reasons for the demotion, to accompany the validation link. The custom text is not mandatory but strongly recommended. In fact, your visitors will not appreciate receiving an email containing only a single link without further explanation. ;-)
    259 <br><br>
    260 Further customize the content with special inserted tags:<br>
    261 - <b style=&quot;color: red;&quot;>[username]</b> to automatically insert the name of the destination user of the email.<br>
    262 - <b style=&quot;color: red;&quot;>[mygallery]</b> to insert the title of your gallery.<br>
    263 - <b style=&quot;color: red;&quot;>[myurl]</b> to insert your gallery URL if set in Piwigo\'s configuration options.
    264 <br><br>
    265 To use multiple languages, you can use the Extended description plugin\'s tags if it is active.
    266 <br><br>
    267 <b style=&quot;color: red;&quot;>Warning: The use of this function is intimately associated with the confirmation of registration by the user (confirmation by mail) and can not be activated without this option.</b>';
    268 /* TODO */$lang['UAM_CustomPasswRetrTitle_d'] = 'By default, when a user has lost his password and selects the option of recovery, he receives an email containing only his username and his new password.
    269 <br><br>
    270 Here, you can add text of your choice to be inserted <b><u>before</u></b> the standard information.
    271 <br><br>
    272 Further customize the content with special inserted tags:<br>
    273 - <b style=&quot;color: red;&quot;>[mygallery]</b> to insert the title of your gallery.<br>
    274 - <b style=&quot;color: red;&quot;>[myurl]</b> to insert your gallery URL if set in Piwigo\'s configuration options.
    275 <br><br>
    276 To use multiple languages, you can use the Extended description plugin\'s tags if it is active.';
    277 /*TODO*/$lang['UAM_USRAutoDelTitle_d'] = 'This is only valid when the user whose account has expired itself triggers the deletion mechanism (rare but possible). he\'s then disconnected of the gallery and redirected to a page showing the deletion of his account and, possibly, the reasons for this deletion.
    278 <br><br>
    279 Further customize the content with special inserted tags:<br>
    280 - <b style=&quot;color: red;&quot;>[mygallery]</b> to insert the title of your gallery.<br>
    281 - <b style=&quot;color: red;&quot;>[myurl]</b> to insert your gallery URL if set in Piwigo\'s configuration options.<br>
    282 <b style=&quot;color: red;&quot;>[username]</b> is not available here because concerned user has been deleted.
    283 <br><br>
    284 Custom text for the redirect page can be entered in this field that is compatible with the FCK Editor and, for multi-languages, you can use the tags [lang] of the plugin Extended description if it\'s active.';
    285 // --------- End: New or revised $lang ---- from version 2.20.11
    28641?>
  • extensions/UserAdvManager/branches/2.30/language/it_IT/plugin.lang.php

    r12667 r13124  
    9292$lang['UAM_mail_exclusionlist_error'] = 'Attenzione! Avete inserito una nuova riga all\'inizio dell\'elenco d\'esclusione email (indicato in rosso qui sotto). Anche se questa nuova riga non è visibile, la sua presenza potrebbe causare delle disfunzioni del plugin. Si prega di cancellare la riga vuota';
    9393// --------- End: New or revised $lang ---- from version 2.12.8
    94 
    95 
    96 // --------- Starting below: New or revised $lang ---- from version 2.13.0
    97 /* UserList Tab */
    98 $lang['UAM_UserList_Title'] = 'Monitoraggio degli utenti iscritti';
    99 $lang['UAM_Tab_UserList'] = 'Monitoraggio degli utenti';
    100 // --------- End: New or revised $lang ---- from version 2.13.0
    10194
    10295
     
    142135$lang['UAM_GhostTracker_true'] = ' Attivare. Durata massima di giorni tra due visite : ';
    143136$lang['UAM_GhostTracker_ReminderText'] = 'Testo di rilancio personalizzato';
    144 $lang['UAM_LastVisit'] = ' Monitoraggio degli utenti iscritti';
    145 
    146 $lang['UAM_Tab_UserManager'] = 'Monitoraggio delle convalide';
    147 
    148 /* UserManager Tab */
    149 $lang['UAM_SubTitle3'] = 'Monitoraggio delle convalide';
    150 $lang['UAM_UserManager_Title'] = 'Monitoraggio delle convalide';
     137
    151138/* Ghost Tracker Tab */
    152139$lang['UAM_SubTitle4'] = 'GhostTracker';
     
    154141$lang['UAM_GhostTracker_Title'] = 'Gestione degli visitatori fantasmi';
    155142$lang['UAM_GhostTracker_Init'] = 'Se si attiva questa funzione per la prima volta o se viene riattivata dopo un lungo periodo durante il quale dei nuovi visitatori si sono iscritti, è necessario inizializzare o azzerare il Tracker Ghost. Questa azione è da effettuarsi solo dopo l\'attivazione o la riattivazione dell\'opzione; Cliccare dunque <u>una sola volta</u> sull\'pulsante di reset sottostante';
    156 /* UserList Tab */
    157 $lang['UAM_SubTitle5'] = 'Informazioni sugli utenti';
    158143/* Mailing */
    159144$lang['UAM_Add of %s'] = 'Profilo creato per %s';
     
    336321$lang['UAM_GTAutoGp'] = 'Cambiamento automatico del gruppo / statuto / livello di riservatezza';
    337322$lang['UAM_GTAutoMail'] = 'Emailing di rilancio automatico per cambiamento gruppo / statuto / livello di riservatezza';
    338 /*TODO*/$lang['UAM_NewFeature'] = 'New feature !';
    339 /*TODO*/$lang['UAM_RejectConnexion'] = 'Reject user\'s connexion until registration is validated';
    340 /*TODO*/$lang['UAM_RejectConnexion_Custom_Txt'] = 'Customize rejection text';
    341 /*TODO*/$lang['UAM_Default_RejectConnexion_Txt'] = 'Sorry, you don\'t have validate your registration yet, so you can\'t connect the gallery now. Please check your email box. You should find an email sent by the gallery, containing a link to perform your validation. If not, please contact the webmaster.';
    342 /*TODO*/$lang['UAM_Reject_Page_Title'] = 'Connexion not allowed !';
    343323// --------- End: New or revised $lang ---- from version 2.30.2
    344324?>
  • extensions/UserAdvManager/branches/2.30/language/lv_LV/help.lang.php

    r12667 r13124  
    3434$lang['UAM_remailtxt1Title'] = 'Atgādinājuma e-vēstule ar jauni uzģenerēto atslēgu';
    3535$lang['UAM_remailtxt2Title'] = 'Atgādinājuma e-vēstule bez jauni uzģenerētās atslēgas';
    36 $lang['UAM_lastvisitTitle_d'] = 'Šis aktivē tabulu &quot;Tracking users&quot; iezīmē (tabā), kurā reģistrēti galeriju apmeklējušie lietotāji, viņu pēdējā apmeklējuma datums, kā arī galerijā pavadītais laiks (dienās) kopš pēdējā apmeklējuma. Monitoringam ir tīri informatīvs raksturs galerijas administratora vajadzībām.';
    3736$lang['UAM_tipsTitle_d'] = 'Padomi un dažādi izmantošanas piemēri';
    3837
     
    147146<b style=&quot;color: red;&quot;>Important note :</b> Ja no slēptā ghost lietotāja pēc termiņa limita, neskatoties uz informēšanu ar e-pastu (ja iespējots), nav nekādas ziņas, viņš automātiski tie dzēsts no datu bāzes';
    148147// --------- End: New or revised $lang ---- from version 2.16.0
    149 
    150 
    151 // --------- Starting below: New or revised $lang ---- from version 2.20.0
    152 /* TODO */$lang['UAM_validationlimitTitle_d'] = 'Šī opcija ļauj ierobežot jaunajiem reģistrantiem nosūtīto atslēgas validācijas e-pastu validitāti. Lietotājiem, kuri reģistrējas ir x dienas laika, lai apstiprinātu savu reģistrāciju. Pēc šī laika beigsies validācijas saite derīgums.
    153 <br><br>
    154 Šī opcija tiek lietota sasaistē ar &quot;Confirmation of registration&quot;
    155 <br><br>
    156 If this option and the option &quot;Atgādināt nevalidētos lietotājus&quot; are activated, new options will appear below in this section to enable the automation of unvalidated users management.';
    157 /* TODO */$lang['UAM_remailTitle_d'] = 'Šī iespēja ļauj nosūtīt atgādinājuma e-pastus reģistrētajiem, bet laikā neveikušajiem validāciju, lietotājiem. Tādēļ ši opcija strādā sasaistē ar (apstiprinājumu un reģistrāciju) &quot;Confirmation of registration&quot;
    158 <br><br>
    159 Var tikt nosūtītas 2 tipu e-vēstules: Ar vai bez validācijas atslēgas reģistrāciju. Ja nepieciešams, e-vēstules saturu var pielāgot.<br><br>
    160 Attiecas uz &quot;Validāciju izsekošanas&quot; iezīmi(tab).
    161 <br><br>
    162 If this option and the option &quot;Reģistrācijas validācijas termiņa ierobežošana&quot; are activated, new options will appear below in this section to enable the automation of unvalidated users management.';
    163 /*TODO*/$lang['UAM_USRAutoTitle_d'] = 'Automatic handling of unvalidated visitors is triggered each time you connect to the gallery and works as follows:
    164 <br><br>
    165 - Automatic deletion of accounts not validated in the allotted time without sending automatic email reminder -> &quot;Deadline for registration validation limited&quot; <b><u>enabled</u></b> and &quot;Remind unvalidated users&quot; <b><u>disabled</u></b>.
    166 <br><br>
    167 - Automatically sending a reminder message with a new generation of validation key and automatic deletion of accounts not validated in the time after sending the reminder -> &quot;Deadline for registration validation limited&quot; <b><u>enabled</u></b> et &quot;Remind unvalidated users&quot; <b><u>enabled</u></b>.';
    168 /*TODO*/$lang['UAM_USRAutoMailTitle_d'] = 'When activated, this function will automatically send personalized content in &quot;Reminder email with new key generated&quot; to visitors who match criteria.';
    169 /*TODO*/$lang['UAM_StuffsTitle_d'] = 'This enables an additional UAM block in PWG Stuffs plugin (if installed) to inform your visitors who did not validate their registration about their condition.
    170 <br><br>
    171 Please refer to the <b>Tips and Examples of Use</b> at the bottom of this page for details.';
    172 // --------- End: New or revised $lang ---- from version 2.20.0
    173 
    174 
    175 // --------- Starting below: New or revised $lang ---- from version 2.20.3
    176 /*TODO*/$lang['UAM_DumpTitle_d'] = 'This allows you to save the entire configuration of the plugin in a file so you can restore it if something goes wrong (wrong manipulation or before an update, for example). By default, the file is stored in this folder ../plugins/UserAdvManager/include/backup/ and is called &quot;UAM_dbbackup.sql&quot;.
    177 <br><br>
    178 <b style=&quot;color: red;&quot;>Warning: The file is overwritten each backup action!</b>
    179 <br><br>
    180 It can sometimes be useful to retrieve the backup file on your computer. For example: To restore to another database, to outsource or to keep multiple save files. To do this, just check the box to download the file.
    181 <br><br>
    182 The recovery from this interface is not supported. Use tools like phpMyAdmin.';
    183 // --------- End: New or revised $lang ---- from version 2.20.3
    184 
    185 
    186 // --------- Starting below: New or revised $lang ---- from version 2.20.4
    187 /*TODO*/$lang['UAM_HidePasswTitle_d'] = 'Choose here if you want to display the password chosen by the visitor in the information email. If you enable the option, the password will then appear in clear text. If you disable the password will not appear at all.';
    188 // --------- End: New or revised $lang ---- from version 2.20.4
    189 
    190 
    191 // --------- Starting below: New or revised $lang ---- from version 2.20.11
    192 /* TODO */$lang['UAM_gttextTitle_d'] = 'Ievadiet tekstu , ko jūs gribat atspoguļot e-pasta atgādinājumā, lai atgādinātu lietotājam apmeklēt jūsu galeriju. (NB: Spraudni instalējot, aizpildītais teksts ir piedāvāts kā paraugs).
    193 <br><br>
    194 Further customize the content with special inserted tags:<br>
    195 - <b style=&quot;color: red;&quot;>[username]</b> to automatically insert the name of the destination user of the email.<br>
    196 - <b style=&quot;color: red;&quot;>[mygallery]</b> to insert the title of your gallery.<br>
    197 - <b style=&quot;color: red;&quot;>[myurl]</b> to insert your gallery URL if set in Piwigo\'s configuration options.<br>
    198 - <b style=&quot;color: red;&quot;>[days]</b> to insert the maximum numbers of days between two visits.
    199 <br><br>
    200 Lai izmantotu vairākas valodas, jūs varat lietot Paplašinātā apraksta spraudņa tagus (gadījumā, ja tas ir aktīvs).';
    201 /* TODO */$lang['UAM_confirmtxtTitle_d'] = 'Ievadiet teksta, ko jūs gribat atspoguļot informācijas e-vēstulē, ievaddaļu.
    202 <br><br>
    203 Further customize the content with special inserted tags:<br>
    204 - <b style=&quot;color: red;&quot;>[username]</b> to automatically insert the name of the destination user of the email.<br>
    205 - <b style=&quot;color: red;&quot;>[mygallery]</b> to insert the title of your gallery.<br>
    206 - <b style=&quot;color: red;&quot;>[myurl]</b> to insert your gallery URL if set in Piwigo\'s configuration options.<br>
    207 - <b style=&quot;color: red;&quot;>[Kdays]</b> to insert the number of days limit to validate a registration (&quot;Reģistrācijas apstiprināšanas limita robežlīnija;&quot; have to be enabled).
    208 <br><br>
    209 Lai izmantotu vairākas valodas, jūs varat lietot Paplašinātā apraksta spraudņa tagus (gadījumā, ja tas ir aktīvs).';
    210 /* TODO */$lang['UAM_remailtxt1Title_d'] = 'Ievadiet teksta, ko jūs gribat atspoguļot informācijas e-vēstulē, ievaddaļu, kā pielikumu reģenerētajai validācijas atslēgai.
    211 <br><br>
    212 Ja ir atstāts tukšs lauks, e-pasta atgādinātājs ietver sevī tikai validācijas saiti.
    213 Tādēļ ir ieteicams ietvert mazu skaidrojošu tekstu. (NB: Spraudni instalējot, aizpildītais teksts ir piedāvāts kā paraugs).
    214 <br><br>
    215 Further customize the content with special inserted tags:<br>
    216 - <b style=&quot;color: red;&quot;>[username]</b> to automatically insert the name of the destination user of the email.<br>
    217 - <b style=&quot;color: red;&quot;>[mygallery]</b> to insert the title of your gallery.<br>
    218 - <b style=&quot;color: red;&quot;>[myurl]</b> to insert your gallery URL if set in Piwigo\'s configuration options.<br>
    219 - <b style=&quot;color: red;&quot;>[Kdays]</b> to insert the number of days limit to validate a registration (&quot;Reģistrācijas apstiprināšanas limita robežlīnija;&quot; have to be enabled).
    220 <br><br>
    221 Lai izmantotu vairākas valodas, jūs varat lietot Paplašinātā apraksta spraudņa tagus (gadījumā, ja tas ir aktīvs).';
    222 /* TODO */$lang['UAM_remailtxt2Title_d'] = 'Ievadiet teksta, ko jūs gribat atspoguļot informācijas e-vēstulē, ievaddaļu bez validācijas atslēgas.
    223 <br><br>
    224 Ja ir atstāts tukšs lauks, e-pasta atgādinātājvēstule būs tukša. Tādēļ ir ieteicams ietvert mazu skaidrojošu tekstu.(NB: Spraudni instalējot, aizpildītais teksts ir piedāvāts kā paraugs).
    225 <br><br>
    226 Further customize the content with special inserted tags:<br>
    227 - <b style=&quot;color: red;&quot;>[username]</b> to automatically insert the name of the destination user of the email.<br>
    228 - <b style=&quot;color: red;&quot;>[mygallery]</b> to insert the title of your gallery.<br>
    229 - <b style=&quot;color: red;&quot;>[myurl]</b> to insert your gallery URL if set in Piwigo\'s configuration options.<br>
    230 - <b style=&quot;color: red;&quot;>[Kdays]</b> to insert the number of days limit to validate a registration (&quot;Reģistrācijas apstiprināšanas limita robežlīnija;&quot; have to be enabled).
    231 <br><br>
    232 Lai izmantotu vairākas valodas, jūs varat lietot Paplašinātā apraksta spraudņa tagus (gadījumā, ja tas ir aktīvs).';
    233 /* TODO */$lang['UAM_infotxtTitle_d'] = 'Ievadiet teksta, ko jūs gribat atspoguļot informācijas e-vēstulē, ievaddaļu.
    234 <br><br>
    235 Further customize the content with special inserted tags:<br>
    236 - <b style=&quot;color: red;&quot;>[username]</b> to automatically insert the name of the destination user of the email.<br>
    237 - <b style=&quot;color: red;&quot;>[mygallery]</b> to insert the title of your gallery.<br>
    238 - <b style=&quot;color: red;&quot;>[myurl]</b> to insert your gallery URL if set in Piwigo\'s configuration options.
    239 <br><br>
    240 Lai izmantotu vairākas valodas, jūs varat lietot Paplašinātā apraksta spraudņa tagus (gadījumā, ja tas ir aktīvs).';
    241 /* TODO */$lang['UAM_AdminValidationMail_d'] = 'Gadījumā, kad administrators vai galerijas Webmāsters manuāli aiztur reģistrācijas procesu, lietotājam automātiski tiek nosūtīts e-pasta paziņojums. Ievadiet šeit tekstu, ko gribat, lai tas parādītos šajā e-pasta ziņojumā.
    242 <br><br>
    243 Further customize the content with special inserted tags:<br>
    244 - <b style=&quot;color: red;&quot;>[username]</b> to automatically insert the name of the destination user of the email.<br>
    245 - <b style=&quot;color: red;&quot;>[mygallery]</b> to insert the title of your gallery.<br>
    246 - <b style=&quot;color: red;&quot;>[myurl]</b> to insert your gallery URL if set in Piwigo\'s configuration options.
    247 <br><br>
    248 Ja ir aktivēts paplašinātā apraksta Extended description spraudnis, varat izmantot tā iezīmes (valodu tagus), lai lietotu vairākas pieejamās valodas.';
    249 /* TODO */$lang['UAM_confirmmail_custom1_d'] = 'Tad, kas opcija &quot;Confirmation of registration&quot; ir aktīva, šis lauks ļauj jums pielāgot apstiprinājuma tekstu <b><u>acceptance text</u></b> reģistrācijas apstiprināšanas lapā, kas parādās, kad lietotājs uzklikšķina uz apstiprināšanas saites, ko viņš saņēmis ar e-pastu.
    250 <br><br>
    251 Pēc spraudņa uzinstalēšanas, kā piemērs tiek piedāvāts standarta teksta variants.
    252 <br><br>
    253 Further customize the content with special inserted tags:<br>
    254 - <b style=&quot;color: red;&quot;>[username]</b> to automatically insert the name of the destination user of the email.<br>
    255 - <b style=&quot;color: red;&quot;>[mygallery]</b> to insert the title of your gallery.<br>
    256 - <b style=&quot;color: red;&quot;>[myurl]</b> to insert your gallery URL if set in Piwigo\'s configuration options.
    257 <br><br>
    258 Šis lauks ir savietojams ar FCK Redaktoru un, multi-valodu režīmā, varat lietot Paplašināta apraksta (Extended description), gadījumā, ja tas ir aktīvs) [lang] iezīmes- tagus.';
    259 /* TODO */$lang['UAM_confirmmail_custom2_d'] = 'Tad, kad opcija &quot;Confirmation of registration&quot; ir aktīva, šis lauks ļauj jums pielāgot noraidījuma tekstu <b><u>rejectance text</u></b> > reģistrācijas apstiprināšanas lapā, kas parādās, kad lietotājs uzklikšķina uz apstiprināšanas saites, ko viņš saņēmis ar e-pastu.
    260 <br><br>
    261 Pēc spraudņa uzinstalēšanas, kā piemērs tiek piedāvāts standarta teksta variants.
    262 <br><br>
    263 Further customize the content with special inserted tags:<br>
    264 - <b style=&quot;color: red;&quot;>[username]</b> to automatically insert the name of the destination user of the email.<br>
    265 - <b style=&quot;color: red;&quot;>[mygallery]</b> to insert the title of your gallery.<br>
    266 - <b style=&quot;color: red;&quot;>[myurl]</b> to insert your gallery URL if set in Piwigo\'s configuration options.
    267 <br><br>
    268 Šis lauks ir savietojams ar FCK Redaktoru un, multi-valodu režīmā, varat lietot Paplašināta apraksta (Extended description), gadījumā, ja tas ir aktīvs) [lang] iezīmes- tagus.';
    269 /* TODO */$lang['UAM_GTAutoDelTitle_d'] = 'Šis variants ir iespējams tikai tad, ja lietotājs, kura konta derīguma termiņš ir beidzies, pats ieslēdz dzēšanas mehānismu (rets, bet iespējams gadījums). Tad viņš tiek atslēgts no galerijas un novirzīts uz lapu, kas atspoguļo viņa konta dzēšanas faktu un iespējamo šīs dzēšanas iemeslu.
    270 <br><br>
    271 Further customize the content with special inserted tags:<br>
    272 - <b style=&quot;color: red;&quot;>[mygallery]</b> to insert the title of your gallery.<br>
    273 - <b style=&quot;color: red;&quot;>[myurl]</b> to insert your gallery URL if set in Piwigo\'s configuration options.<br>
    274 <b style=&quot;color: red;&quot;>[username]</b> is not available here because concerned user has been deleted.
    275 <br><br>
    276 Pāradresācijas lapai paredzēto pielāgoto tekstu var ievadīt šajā laukā, savietojams ar FCK Redaktora standartu, lai izmantotu multi-valodu režīmu, lietojiet spraudņa paplašinātais apraksts Extended description iezīmes [lang], tikai gadījumā, ja spraudnis aktīvs.';
    277 /* TODO */$lang['UAM_GTAutoMailTitle_d'] = 'Kad konta derīguma termiņš izbeidzas (grupas/statusa maiņa, apmeklētāja funkcionāla pazemināšana), var tikt izsūtīts informatīvs e-pasta ziņojums, kas izskaidro notikušā iemeslus, kā arī paskaidro iespējas, kā no jauna atjaunot piekļuvi galerijai.
    278 <br>Lai to paveiktu, e-pastam ir pievienota reģistrācijas revalidācijas saite (jaunas validācijas automātiska uzģenerēšana).<b
    279 style=&quot;color: red;&quot;>Ja lietotājs jau ir bijis brīdināts, viņa konts automātiski tiek iznīcināts.</b>
    280 <br><br>
    281 Lai papildinātu validācijas apstiprināšanas saiti, var pievienot konta funkcionalitātes pazemināšanas paskaidrojošu tekstu. Šis paskaidrojuma teksts nav obligāts, bet stingri iesakāms. Patiesībā, jūsu apmeklētāji nebūs sevišķi apmierināti, saņemot tikai aktivācijas saiti bez nekādiem paskaidrojumiem. ;-)
    282 <br><br>
    283 Further customize the content with special inserted tags:<br>
    284 - <b style=&quot;color: red;&quot;>[username]</b> to automatically insert the name of the destination user of the email.<br>
    285 - <b style=&quot;color: red;&quot;>[mygallery]</b> to insert the title of your gallery.<br>
    286 - <b style=&quot;color: red;&quot;>[myurl]</b> to insert your gallery URL if set in Piwigo\'s configuration options.
    287 <br><br>
    288  Ja ir aktivēts paplašinātā apraksta Extended description spraudnis, varat izmantot tā iezīmes (valodu tagus), lai lietotu vairākas pieejamās valodas.
    289 <br><br>
    290 <b style=&quot;color: red;&quot;>Brīdinājums: Šīs funkcijas izmantošana ir cieši saistīta ar lietotāja reģistrācijas apstiprināšanu (apstiprināšana ar e-pastu) un nevar tikt aktivēta bez šīs opcijas.</b>';
    291 /* TODO */$lang['UAM_CustomPasswRetrTitle_d'] = 'By default, when a user has lost his password and selects the option of recovery, he receives an email containing only his username and his new password.
    292 <br><br>
    293 Here, you can add text of your choice to be inserted <b><u>before</u></b> the standard information.
    294 <br><br>
    295 Further customize the content with special inserted tags:<br>
    296 - <b style=&quot;color: red;&quot;>[mygallery]</b> to insert the title of your gallery.<br>
    297 - <b style=&quot;color: red;&quot;>[myurl]</b> to insert your gallery URL if set in Piwigo\'s configuration options.
    298 <br><br>
    299 To use multiple languages, you can use the Extended description plugin\'s tags if it is active.';
    300 /*TODO*/$lang['UAM_USRAutoDelTitle_d'] = 'This is only valid when the user whose account has expired itself triggers the deletion mechanism (rare but possible). he\'s then disconnected of the gallery and redirected to a page showing the deletion of his account and, possibly, the reasons for this deletion.
    301 <br><br>
    302 Further customize the content with special inserted tags:<br>
    303 - <b style=&quot;color: red;&quot;>[mygallery]</b> to insert the title of your gallery.<br>
    304 - <b style=&quot;color: red;&quot;>[myurl]</b> to insert your gallery URL if set in Piwigo\'s configuration options.<br>
    305 <b style=&quot;color: red;&quot;>[username]</b> is not available here because concerned user has been deleted.
    306 <br><br>
    307 Custom text for the redirect page can be entered in this field that is compatible with the FCK Editor and, for multi-languages, you can use the tags [lang] of the plugin Extended description if it\'s active.';
    308 // --------- End: New or revised $lang ---- from version 2.20.11
    309148?>
  • extensions/UserAdvManager/branches/2.30/language/lv_LV/plugin.lang.php

    r12667 r13124  
    9292$lang['UAM_mail_exclusionlist_error'] = 'Brīdinājums! Jūs esat ievadījis jaunu rindu (CR-LF) e-pasta izņēmumu saraksta sākumā (parādīts ar sarkanu zemāk). Lai gan šī jaunā rinda nav redzama, tā joprojām eksistē un var būt par iemeslu spraudņa kļūmīgai darbībai. Lūdzu pārrakstiet jūsu izņēmumu sarakstu, lai tas nesāktos ar jaunu tukšu rindu.';
    9393// --------- End: New or revised $lang ---- from version 2.12.8
    94 
    95 
    96 // --------- Starting below: New or revised $lang ---- from version 2.13.0
    97 /* UserList Tab */
    98 $lang['UAM_UserList_Title'] = 'Re;gistrēto lietotāju Monitorings';
    99 // --------- End: New or revised $lang ---- from version 2.13.0
    10094
    10195
     
    141135$lang['UAM_GhostTracker_true'] = ' Iespējot. Maksimālais periods dienās starp divām vizītēm: ';
    142136$lang['UAM_GhostTracker_ReminderText'] = 'Ghost Tracker atgadinājuma ziņojuma pielāgošana';
    143 $lang['UAM_LastVisit'] = ' Reģistrēto lietotāju izsekošana';
    144 
    145 $lang['UAM_Tab_UserManager'] = 'Apstiprinājumu izsekošana';
    146 
    147 /* UserManager Tab */
    148 $lang['UAM_SubTitle3'] = 'Apstiprinājumu izsekošana';
    149 $lang['UAM_UserManager_Title'] = 'Apstiprinājumu izsekošana';
     137
     138
    150139/* Ghost Tracker Tab */
    151140$lang['UAM_SubTitle4'] = 'Ghost Tracker';
     
    153142$lang['UAM_GhostTracker_Title'] = 'Ghost (slēpto) apmeklētāju pārvaldība';
    154143$lang['UAM_GhostTracker_Init'] = 'Ja grasāties lietot šo iespēju pirmo reizi vai reaktivējat to pēc ilgāka laika, kurā reģistrējušies jauni lietotāji, jums jāinicializē vai jāresetē Ghost Tracker. Šī darbība ir veicama tikai pēc opcijas aktivēšanas vai reaktivēšanas. Lūdzu klikšķiniet <u>vienreiz</u> uz reset pogas zemāk.';
    155 /* UserList Tab */
    156 $lang['UAM_SubTitle5'] = 'Lietotāju izsekošana';
    157 $lang['UAM_Tab_UserList'] = 'Lietotāju izsekošana';
    158144/* Mailing */
    159145$lang['UAM_Add of %s'] = 'Profils izveidos priekš %s';
    160146$lang['UAM_Update of %s'] = 'Profils %s atjaunināts';
    161 
    162 /* Mailing */
    163147$lang['UAM_Ghost_reminder_of_%s'] = '%s, šis ir atgādinājuma e-pasts';
    164148$lang['UAM_Reminder_with_key_of_%s'] = '%s, jūsu apstiprināšanas atslēga ir atjaunota';
     
    236220
    237221
    238 // --------- Starting below: New or revised $lang ---- from version 2.16.0
    239 /* TODO */$lang['UAM_Expired_Group'] = '<b>Group</b> for user\'s registration has expired<br>';
    240 /* TODO */$lang['UAM_Expired_Status'] = '<b>Status</b> for user\'s registration has expired<br>';
    241 /* TODO */$lang['UAM_GTAuto'] = 'Automatic management of ghosts users';
    242 /* TODO */$lang['UAM_GTAutoDel'] = 'Automatic deletion of accounts';
    243 /* TODO */$lang['UAM_Deleted_Account_Redirection_Page'] = 'Access denied - Account destroyed!';
    244 /* TODO */$lang['UAM_title_redir_page'] = 'Access denied for having an account destroyed!';
    245 /* TODO */$lang['UAM_Error_GTAutoMail_cannot_be_set_without_ConfirmMail'] = 'Consistency error in the chosen configuration:<br><br>
    246 "Setting the registered users monitoring and other options > Ghost visitors management (Ghost Tracker) > Automatic management of ghosts users > Automatically sending an email when changing group / status" can not be activated if "Setting confirmations and validations of registration > Confirmation of registration - Validation by user" is not enabled at first.<br><br>
    247 To ensure consistency, the option "Automatically sending an email when changing group / status" was automatically repositioned "disabled".<br><br>';
    248 /* TODO */$lang['UAM_Demotion of %s'] = 'Demotion of %s';
    249 /* TODO */$lang['UAM_AdminValidationMail_Text'] = 'Notification of manual registration validation';
    250 /* TODO */$lang['UAM_Validation of %s'] = 'Validation of %s';
    251 // --------- End: New or revised $lang ---- from version 2.16.0
    252 
    253 
    254222// --------- Starting below: New or revised $lang ---- from version 2.20.0
    255 /* TODO */$lang['UAM_CustomPasswRetr'] = 'Customize lost password email content';
    256 /* TODO */$lang['UAM_USRAuto'] = 'Automatic management of unvalidated users';
    257 /* TODO */$lang['UAM_USRAutoDel'] = 'Custom message on deleted account';
    258 /* TODO */$lang['UAM_USRAutoMail'] = 'Automated email reminder';
    259223$lang['UAM_Disable'] = ' Atspējot (pēc noklusējuma)';
    260224$lang['UAM_Enable'] = ' Iespējot ';
    261 /*TODO*/$lang['UAM_Tips1'] = 'Information of non-validated registration with UAM and PWG_Stuffs';
    262 /*TODO*/$lang['UAM_Tips1_txt'] = '
    263           <ul>
    264             <li>
    265             Goals: Inform the visitor that the registration is awaiting approval by displaying a personal block on the home page of the gallery, and this, as registration is not approved.
    266             <br><br>
    267             <b>Recall: In standard operation, the "Guest" only sees the public categories, without information message.</b>
    268             </li><br><br>
    269             <li>
    270 Prerequisite:<br>
    271 - A gallery with all or some private categories, visible only by registered users<br>
    272 - 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>
    273 - UAM plugin<br>
    274 - PWG Stuffs plugin, for adding a special UAM module<br>
    275 - Optionally, the plugin Extended Description to support multi-languages<br>
    276             </li><br><br>
    277             <li>
    278 Stages:<br><br>
    279 A. In plugin UAM:
    280               <ol>
    281                 <li>Enable registration confirmation</li>
    282                 <li>Enable PWG Stuffs module option</li>
    283                 <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>
    284                 <li>Select the "Waiting" group under "For users who have not validated their registration"</li>
    285                 <li>Select the "Validated" group under "For users who have validated their registration"</li>
    286                 <li>Save the plugin configuration</li>
    287               </ol>
    288 <br>
    289 B. In plugin PWG Stuffs :
    290               <ol>
    291                 <li>Go to tab "Add a new module"</li>
    292                 <li>Choose "UAM Module"</li>
    293                 <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>
    294                 <li>Complete content of the module with the message information to be displayed to users not validated. As UAM, languages markup may be used if the plugin is enabled Extended Description</li>
    295                 <li>Check "Display the module on the homepage of the site"</li>
    296                 <li>Validate the configuration of the module</li>
    297               </ol>
    298             </li>
    299           </ul>';
    300 /*TODO*/$lang['UAM_Tips2'] = 'Information of non-validated registration with UAM and Additional Pages';
    301 /*TODO*/$lang['UAM_Tips2_txt'] = '
    302           <ul>
    303             <li>
    304             Goals: Inform the visitor that the registration is awaiting validation by posting an additional page replacing the standard index page gallery at each of these connections, and this, as registration is not approved.
    305             <br><br>
    306             Advantages over the method with PWG_Stuffs: Allow formatting information and displaying the information immediately upon registration of visitors.
    307             </li><br><br>
    308             <li>
    309 Priekšnoteikumi:<br>
    310 - Galerija ar visām vai dažām privātajām ketegorijām redzama tikai reģistrētiem lietotājiem<br>
    311 - Vismaz 2 sekojošas Piwigo lietotāju grupas:gaidīšanas grupa  "Waiting," bez tiesībām darboties ar privātām kategorijām un apstiprināto grupa "Validated" ar visām tiesībām darbam ar privātām kategorijām<br>
    312 - UAM spraudnis<br>
    313 - Additional Pages plugin for adding and managing an additional page to replace the default index page of the gallery<br>
    314 - Pēc izvēles (neobligāts), spraudnis Extended Description (paplašināts apraksts), lai nodrošinātu daudzvalodu atbalstu<br>
    315             </li><br><br>
    316             <li>
    317 Posmi:<br><br>
    318 A. UAM spraudnī:
    319 <ol>
    320 <li>Iespējo reģistrācijas apstiprināšanu</li>
    321 <li>Ievada papildinformāciju-skaidrojumu, kas tiks pievienots e-pasta reģistrācijas apstiprinājumam. Gadījumā, ja ir aktivēts spraudnis Extended Description (papildus apraksts), var tikt lietotas valodu iezīmes (tagi)</li>
    322 <li>Izvēlas gaidīšanas grupu "Waiting" sadaļā "Lietotājiem, kas nav apstiprinājuši savu reģistrāciju"</li>
    323 <li>Izvēlas apstiprināto grupu "Validated" sadaļā "Lietotājiem, kas apstiprinājuši savu reģistrāciju"</li>
    324 <li>Saglabā spraudņa konfigurāciju</li>
    325 </ol>
    326 <br>
    327 B. Additional Pages spraudnī :<br>
    328                 <b>NOTE : The management of access rights for groups on Additional Pages must be turned on (see plugin configuration settings).</b>
    329                 <br>
    330               <ol>
    331                 <li>Add a new page with at least the following parameters:</li>
    332                 <ul>
    333                   <li>Page name: The name you wish to give to the additional page (ie: Registration not validated)</li>
    334                   <li>Set as homepage checked</li>
    335                   <li>Groups allowed: Check the box corresponding to the group "Waiting" configured in UAM</li>
    336                   <li>Content: The text you want to use for visitors.</li>
    337                 </ul>
    338                 <br>
    339                 <li>And that\'s it! Only visitors registered and whose registration has not been validated will see this additional index page.</li>
    340               </ol>
    341             </li>
    342           </ul>';
    343 /*TODO*/$lang['UAM_No_Ghosts'] = 'No ghosts visitors for the moment';
    344 /*TODO*/$lang['UAM_No_Userlist'] = 'No visitors to list for the moment';
    345 /*TODO*/$lang['UAM_No_Usermanager'] = 'No unvalidated registers to list for the moment';
    346 /*TODO*/$lang['UAM_Stuffs_Title'] = 'UAM block';
    347 /*TODO*/$lang['UAM_Stuffs_Desc'] = 'Adds an information block for unvalidated users';
    348 /*TODO*/$lang['UAM_Stuffs'] = 'PWG Stuffs block';
    349225// --------- End: New or revised $lang ---- from version 2.20.0
    350226
    351 
    352 // --------- Starting below: New or revised $lang ---- from version 2.20.3
    353 /*TODO*/$lang['UAM_DumpTxt'] = 'Backup your configuration';
    354 /*TODO*/$lang['UAM_Dump_Download'] = 'To download the backup file, please check this box:';
    355 /*TODO*/$lang['UAM_Save'] = 'Run backup';
    356 /*TODO*/$lang['UAM_Dump_OK'] = 'Backup file created successfully';
    357 /*TODO*/$lang['UAM_Dump_NOK'] = 'Error: Unable to create backup file !';
    358 // --------- End: New or revised $lang ---- from version 2.20.3
    359 
    360 
    361 // --------- Starting below: New or revised $lang ---- from version 2.20.4
    362 /*TODO*/$lang['UAM_HidePassw'] = 'Clear password in information email';
    363 // --------- End: New or revised $lang ---- from version 2.20.4
    364 
    365 
    366 // --------- Starting below: New or revised $lang ---- from version 2.20.11
    367 /*TODO*/$lang['UAM_Error_Using_illegal_flag'] = 'Syntax error ! The [Kdays] AutoText flag is used as the "Reģistrācijas apstiprināšanas limita robežlīnija" option was not activated. Please activate the option or correct the text field(s) colored in red.';
    368 // --------- End: New or revised $lang ---- from version 2.20.11
    369227
    370228
    371229// --------- Starting below: New or revised $lang ---- from version 2.30.2
    372230$lang['UAM_RedirToProfile'] = 'Novirzīt uz pielāgošanas lapu';
    373 /*TODO*/$lang['UAM_GTAutoGp'] = 'Automatic change of group / status / privacy level';
    374 /*TODO*/$lang['UAM_GTAutoMail'] = 'Automatically sending an email when changing group / status / privacy level';
    375 /*TODO*/$lang['UAM_NewFeature'] = 'New feature !';
    376 /*TODO*/$lang['UAM_RejectConnexion'] = 'Reject user\'s connexion until registration is validated';
    377 /*TODO*/$lang['UAM_RejectConnexion_Custom_Txt'] = 'Customize rejection text';
    378 /*TODO*/$lang['UAM_Default_RejectConnexion_Txt'] = 'Sorry, you don\'t have validate your registration yet, so you can\'t connect the gallery now. Please check your email box. You should find an email sent by the gallery, containing a link to perform your validation. If not, please contact the webmaster.';
    379 /*TODO*/$lang['UAM_Reject_Page_Title'] = 'Connexion not allowed !';
    380231// --------- End: New or revised $lang ---- from version 2.30.2
    381232?>
  • extensions/UserAdvManager/branches/2.30/main.inc.php

    r12667 r13124  
    22/*
    33Plugin Name: UserAdvManager
    4 Version: 2.30.2
     4Version: 2.30.3
    55Description: Renforcer la gestion des utilisateurs - Enforce users management
    66Plugin URI: http://piwigo.org/ext/extension_view.php?eid=216
     
    6767// PWG_Stuffs module
    6868// -----------------
    69 if ((isset($conf_UAM[33]) and $conf_UAM[33] == 'true'))
     69if (isset($conf_UAM[33]) and $conf_UAM[33] == 'true')
    7070{
    7171  add_event_handler('get_stuffs_modules', 'register_UAM_stuffs_module');
     
    7474// Add new feature in user_list - Password Reset
    7575// ---------------------------------------------
    76 if ((isset($conf_UAM[38]) and $conf_UAM[38] == 'true'))
     76if (isset($conf_UAM[38]) and $conf_UAM[38] == 'true')
    7777{
    7878  // Add new column on user_list
  • extensions/UserAdvManager/branches/2.30/obsolete.list

    r12239 r13124  
    11language/de_DE/help/index.php
    22language/de_DE/help/plugin.lang.php
    3 language/de_DE/help/
     3language/de_DE/help
    44language/en_UK/help/index.php
    55language/en_UK/help/plugin.lang.php
    6 language/en_UK/help/
     6language/en_UK/help
    77language/es_ES/help/index.php
    88language/es_ES/help/plugin.lang.php
    9 language/es_ES/help/
    10 language/fr_FR/help/index.php
     9language/es_ES/help
     10language/fr_FRhelp/index.php
    1111language/fr_FR/help/plugin.lang.php
    12 language/fr_FR/help/
     12language/fr_FR/help
    1313language/hu_HU/help/index.php
    1414language/hu_HU/help/plugin.lang.php
    15 language/hu_HU/help/
     15language/hu_HU/help
    1616language/it_IT/help/index.php
    1717language/it_IT/help/plugin.lang.php
    18 language/it_IT/help/
     18language/it_IT/help
    1919language/lv_LV/help/index.php
    2020language/lv_LV/help/plugin.lang.php
    21 language/lv_LV/help/
     21language/lv_LV/help
Note: See TracChangeset for help on using the changeset viewer.