Changeset 8095


Ignore:
Timestamp:
Dec 12, 2010, 7:09:27 PM (13 years ago)
Author:
Eric
Message:

merge from trunk to branch 2.16

Location:
extensions/NBC_UserAdvManager/branches/2.16
Files:
17 edited

Legend:

Unmodified
Added
Removed
  • extensions/NBC_UserAdvManager/branches/2.16/admin/UAM_admin.php

    r8088 r8095  
    118118
    119119    $_POST['UAM_GTAutoMailText'] = str_replace('\"', '"', str_replace("\'", "'", str_replace("\\\\", "\\", $_POST['UAM_GTAutoMailText'])));
     120   
     121    $_POST['UAM_AdminValidationMail_Text'] = str_replace('\"', '"', str_replace("\'", "'", str_replace("\\\\", "\\", $_POST['UAM_AdminValidationMail_Text'])));
    120122
    121123    //Check if CR-LF exist at begining and end of mail exclusion list - If yes, removes them
     
    160162      $_POST['UAM_RedirToProfile'],
    161163      $_POST['UAM_GTAuto'],
    162       $_POST['UAM_GTAutoDel'],
    163164      $_POST['UAM_GTAutoMail'],
    164165      $_POST['UAM_GTAutoDelText'],
    165166      $_POST['UAM_GTAutoMailText'],
    166167      (isset($_POST['UAM_Downgrade_Group'])?$_POST['UAM_Downgrade_Group']:''),
    167       (isset($_POST['UAM_Downgrade_Status'])?$_POST['UAM_Downgrade_Status']:''));
     168      (isset($_POST['UAM_Downgrade_Status'])?$_POST['UAM_Downgrade_Status']:''),
     169      $_POST['UAM_AdminValidationMail_Text']
     170      );
    168171
    169172    $conf['UserAdvManager'] = serialize($newconf_UAM);
     
    252255                }
    253256    //configuration value for downgrade users
    254     if (isset($conf_UAM[27]) and $conf_UAM[27] == $row['id'])
     257    if (isset($conf_UAM[26]) and $conf_UAM[26] == $row['id'])
    255258                {
    256259                $Downgrade = $row['id'];
     
    331334  {
    332335          $status_options[$status] = l10n('user_status_'.$status);
    333           if (isset($conf_UAM[28]) and $conf_UAM[28] == $status)
     336          if (isset($conf_UAM[27]) and $conf_UAM[27] == $status)
    334337                {
    335338                  $Downgrade_Status = $status;
     
    395398    'UAM_GTAUTO_TRUE'                => $conf_UAM[22]=='true' ?  'checked="checked"' : '' ,
    396399    'UAM_GTAUTO_FALSE'               => $conf_UAM[22]=='false' ?  'checked="checked"' : '' ,
    397     'UAM_GTAUTODEL_TRUE'             => $conf_UAM[23]=='true' ?  'checked="checked"' : '' ,
    398     'UAM_GTAUTODEL_FALSE'            => $conf_UAM[23]=='false' ?  'checked="checked"' : '' ,
    399     'UAM_GTAUTOMAIL_TRUE'            => $conf_UAM[24]=='true' ?  'checked="checked"' : '' ,
    400     'UAM_GTAUTOMAIL_FALSE'           => $conf_UAM[24]=='false' ?  'checked="checked"' : '' ,
    401     'UAM_GTAUTODEL_TEXT'             => $conf_UAM[25],
    402     'UAM_GTAUTOMAILTEXT'             => $conf_UAM[26],
    403                 'UAM_Downgrade_Group'            => $conf_UAM[27],
    404                 'UAM_Downgrade_Status'           => $conf_UAM[28],
     400    'UAM_GTAUTOMAIL_TRUE'            => $conf_UAM[23]=='true' ?  'checked="checked"' : '' ,
     401    'UAM_GTAUTOMAIL_FALSE'           => $conf_UAM[23]=='false' ?  'checked="checked"' : '' ,
     402    'UAM_GTAUTODEL_TEXT'             => $conf_UAM[24],
     403    'UAM_GTAUTOMAILTEXT'             => $conf_UAM[25],
     404                'UAM_Downgrade_Group'            => $conf_UAM[26],
     405                'UAM_Downgrade_Status'           => $conf_UAM[27],
     406    'UAM_ADMINVALIDATIONMAIL_TEXT'   => $conf_UAM[28],
    405407                'UAM_PASSWORD_TEST_SCORE'        => $UAM_Password_Test_Score,
    406408    'UAM_ERROR_REPORTS4'             => $UAM_Exclusionlist_Error,
     
    966968        {
    967969          ForceValidation($user_id);
     970          validation_mail($user_id);
    968971        }
    969972        array_push(
  • extensions/NBC_UserAdvManager/branches/2.16/admin/template/global.tpl

    r8088 r8095  
    201201              {'UAM_Confirm_Mail_local'|@translate}
    202202            <br><br>
     203{if $UAM_CONFIRM_MAIL_FALSE}
     204<div class="uam_hide">
     205{/if}
     206            <ul>
     207              <li>
     208                <label class="cluetip" title="{'UAM_AdminValidationMail'|translate}|{'UAM_AdminValidationMail_d'|translate}">
     209                  {'UAM_AdminValidationMail_Text'|@translate}
     210                </label>
     211                <br><br>
     212                  <textarea class="uam_textfields" name="UAM_AdminValidationMail_Text" id="UAM_AdminValidationMail_Text" rows="10" {$TAG_INPUT_ENABLED}>{$UAM_ADMINVALIDATIONMAIL_TEXT}</textarea>
     213                <br><br>
     214              </li>
     215            </ul>
     216{if $UAM_CONFIRM_MAIL_FALSE}
     217</div>
     218{/if}
    203219                </li>
    204220{if $UAM_CONFIRM_MAIL_FALSE}
     
    433449                  <li><label class="cluetip" title="{'UAM_GTAutoDelTitle'|translate}|{'UAM_GTAutoDelTitle_d'|translate}">{'UAM_GTAutoDel'|@translate}</label>
    434450                  <br><br>
    435                     <input type="radio" value="false" {$UAM_GTAUTODEL_FALSE} name="UAM_GTAutoDel">{'UAM_GTAutoDel_false'|@translate}<br>
    436                     <input type="radio" value="true" {$UAM_GTAUTODEL_TRUE} name="UAM_GTAutoDel">{'UAM_GTAutoDel_true'|@translate}<br><br>
    437451                      <textarea class="uam_textfields" name="UAM_GTAutoDelText" id="UAM_GTAutoDelText" rows="10" {$TAG_INPUT_ENABLED}>{$UAM_GTAUTODEL_TEXT}</textarea>
    438452                      <br><br>
     
    445459                  </li>
    446460
    447                   {if $UAM_GTAUTODEL_TRUE}
    448                     <div class="uam_hide">
    449                   {/if}
    450                       <li><label class="cluetip" title="{'UAM_GTAutoGpTitle'|translate}|{'UAM_GTAutoGpTitle_d'|translate}">{'UAM_GTAutoGp'|@translate}</label><br><br>
    451                         <ul>
    452                           <li>
    453                             <label>
    454                               {'UAM_Expired_Group'|@translate}
    455                             </label>
    456                           <br>
    457                             <div id="uam_leftmargin">
    458                               {html_options name="UAM_Downgrade_Group" options=$Downgrade_Group.group_options selected=$Downgrade_Group.group_selected}
    459                             </div>
    460                           <br><br>
    461                           </li>
    462 
    463                           <li>
    464                             <label>
    465                               {'UAM_Expired_Status'|@translate}
    466                             </label>
    467                           <br>
    468                             <div id="uam_leftmargin">
    469                               {html_options name="UAM_Downgrade_Status" options=$Downgrade_Status.Status_options selected=$Downgrade_Status.Status_selected}
    470                             </div>
    471                           <br><br>
    472                           </li>
    473                         </ul>
    474 
    475                         <ul>
    476                           <li><label class="cluetip" title="{'UAM_GTAutoMailTitle'|translate}|{'UAM_GTAutoMailTitle_d'|translate}">{'UAM_GTAutoMail'|@translate}</label><br><br>
    477                             <input type="radio" value="false" {$UAM_GTAUTOMAIL_FALSE} name="UAM_GTAutoMail">{'UAM_GTAutoMail_false'|@translate}<br>
    478                             <input type="radio" value="true" {$UAM_GTAUTOMAIL_TRUE} name="UAM_GTAutoMail">{'UAM_GTAutoMail_true'|@translate}<br><br><br>
    479                             <textarea class="uam_textfields" name="UAM_GTAutoMailText" id="UAM_GTAutoMailText" rows="10" {$TAG_INPUT_ENABLED}>{$UAM_GTAUTOMAILTEXT}</textarea><br><br>
    480                           </li>
    481                         </ul>
     461                  <li><label class="cluetip" title="{'UAM_GTAutoGpTitle'|translate}|{'UAM_GTAutoGpTitle_d'|translate}">{'UAM_GTAutoGp'|@translate}</label><br><br>
     462                    <ul>
     463                      <li>
     464                        <label>
     465                          {'UAM_Expired_Group'|@translate}
     466                        </label>
     467                        <br>
     468                          <div id="uam_leftmargin">
     469                            {html_options name="UAM_Downgrade_Group" options=$Downgrade_Group.group_options selected=$Downgrade_Group.group_selected}
     470                          </div>
     471                        <br><br>
    482472                      </li>
    483                   {if $UAM_GTAUTODEL_TRUE}
    484                     </div>
    485                   {/if}
     473
     474                      <li>
     475                        <label>
     476                          {'UAM_Expired_Status'|@translate}
     477                        </label>
     478                        <br>
     479                        <div id="uam_leftmargin">
     480                          {html_options name="UAM_Downgrade_Status" options=$Downgrade_Status.Status_options selected=$Downgrade_Status.Status_selected}
     481                        </div>
     482                        <br><br>
     483                      </li>
     484                    </ul>
     485
     486                    <ul>
     487                      <li><label class="cluetip" title="{'UAM_GTAutoMailTitle'|translate}|{'UAM_GTAutoMailTitle_d'|translate}">{'UAM_GTAutoMail'|@translate}</label><br><br>
     488                        <input type="radio" value="false" {$UAM_GTAUTOMAIL_FALSE} name="UAM_GTAutoMail">{'UAM_GTAutoMail_false'|@translate}<br>
     489                        <input type="radio" value="true" {$UAM_GTAUTOMAIL_TRUE} name="UAM_GTAutoMail">{'UAM_GTAutoMail_true'|@translate}<br><br><br>
     490                        <textarea class="uam_textfields" name="UAM_GTAutoMailText" id="UAM_GTAutoMailText" rows="10" {$TAG_INPUT_ENABLED}>{$UAM_GTAUTOMAILTEXT}</textarea><br><br>
     491                      </li>
     492                    </ul>
     493                  </li>
    486494                </ul>
    487495            {if $UAM_GTAUTO_FALSE}
  • extensions/NBC_UserAdvManager/branches/2.16/changelog.txt.php

    r8088 r8095  
    215215            Bug 2046 fixed - Using Piwigo's $conf['insensitive_case_logon'] = true option works again with UAM
    216216            Bug 2053 fixed - Manual validation by admins wasn't working correctly
    217             Bug 2054
    218             Bug 2056 fixed - Automated tasks are available to delete or downgrade ghost users with or without email notification
     217            Bug 2054 fixed - Add of customized email notification to validated users when admins validate them manually
     218            Bug 1430, 1840, 2056 fixed - Automated tasks are available to delete or downgrade ghost users with or without email notification
    219219            Add of Latvian (lv_LV) translation (Thx to Aivars Baldone)
    220220
  • extensions/NBC_UserAdvManager/branches/2.16/include/functions.inc.php

    r8088 r8095  
    369369  }
    370370
    371   // Ghost accounts auto deletion
    372   if ((isset($conf_UAM[22]) and $conf_UAM[22] == 'true') and (isset($conf_UAM[23]) and $conf_UAM[23] == 'true'))
    373   {
    374     if (count($collection) > 0)
    375         {
    376         if (in_array($user['id'], $collection))
    377         {
    378         invalidate_user_cache();
    379        
    380         foreach ($collection as $user_id)
    381         {
    382           delete_user($user_id);
    383         }
    384         logout_user();
    385         redirect(UAM_PATH.'del_account.php');
    386         }
    387       else
    388       {
    389         foreach ($collection as $user_id)
    390         {
    391           delete_user($user_id);
    392         }
    393       }
    394     }
    395   }
    396 
    397371  // Ghost accounts auto group or status downgrade with or without information email sending and autodeletion if user already reminded
    398   if ((isset($conf_UAM[22]) and $conf_UAM[22] == 'true') and (isset($conf_UAM[23]) and $conf_UAM[23] == 'false') and ((isset($conf_UAM[27]) and $conf_UAM[27] <> -1) or (isset($conf_UAM[28]) and $conf_UAM[28] <> -1)))
     372  if ((isset($conf_UAM[22]) and $conf_UAM[22] == 'true') and ((isset($conf_UAM[26]) and $conf_UAM[26] <> -1) or (isset($conf_UAM[27]) and $conf_UAM[27] <> -1)))
    399373  {
    400374    if (count($collection) > 0)
     
    450424
    451425            // Change user status
    452             if ($conf_UAM[28] <> -1)
     426            if ($conf_UAM[27] <> -1)
    453427            {
    454428              $query = "
    455429UPDATE ".USER_INFOS_TABLE."
    456 SET status = '".$conf_UAM[28]."'
     430SET status = '".$conf_UAM[27]."'
    457431WHERE user_id = '".$user_id."'
    458432;";
     
    461435
    462436            // Change user group
    463             if ($conf_UAM[27] <> -1)
     437            if ($conf_UAM[26] <> -1)
    464438            {
    465439              $query = "
     
    467441  (user_id, group_id)
    468442VALUES
    469   ('".$user_id."', '".$conf_UAM[27]."')
     443  ('".$user_id."', '".$conf_UAM[26]."')
    470444;";
    471445              pwg_query($query);
     
    473447         
    474448            // Auto send email notification on group / status downgrade only if never reminded before
    475             if (isset($conf_UAM[24]) and $conf_UAM[24] == 'true')
     449            if (isset($conf_UAM[23]) and $conf_UAM[23] == 'true')
    476450            {
    477451              // Set reminder true
     
    508482          }
    509483        }
    510         // Logged-in user cleanup
    511         invalidate_user_cache();
    512         log_user($user['id'], false);
    513         redirect(make_index_url());
     484
     485        if (!$reminder) // If user never reminded for ghost account
     486        {
     487          // Logged-in user cleanup
     488          invalidate_user_cache();
     489          log_user($user['id'], false);
     490          redirect(make_index_url());
     491        }
     492        elseif ($reminder) // If user already reminded for ghost account
     493        {
     494          // Logged-in user cleanup
     495          invalidate_user_cache();
     496          log_user($user['id'], false);
     497          redirect(UAM_PATH.'del_account.php');
     498        }
    514499        }
    515500      else // Process if an admin or webmaster user is logged
     
    561546
    562547            // Change user status
    563             if ($conf_UAM[28] <> -1)
     548            if ($conf_UAM[27] <> -1)
    564549            {
    565550              $query = "
    566551UPDATE ".USER_INFOS_TABLE."
    567 SET status = '".$conf_UAM[28]."'
     552SET status = '".$conf_UAM[27]."'
    568553WHERE user_id = '".$user_id."'
    569554;";
     
    572557
    573558            // Change user group
    574             if ($conf_UAM[27] <> -1)
     559            if ($conf_UAM[26] <> -1)
    575560            {
    576561              $query = "
     
    578563  (user_id, group_id)
    579564VALUES
    580   ('".$user_id."', '".$conf_UAM[27]."')
     565  ('".$user_id."', '".$conf_UAM[26]."')
    581566;";
    582567              pwg_query($query);
     
    584569
    585570            // Auto send email notification on group / status downgrade
    586             if (isset($conf_UAM[24]) and $conf_UAM[24] == 'true')
     571            if (isset($conf_UAM[23]) and $conf_UAM[23] == 'true')
    587572            {
    588573              // Set reminder true
     
    983968// debugging             
    984969// **********************
    985 //$content = get_user_language_desc($conf_UAM[19])."\n\n"
     970//$content = $infos1.get_absolute_root_url()
    986971//MailLog($email,$subject,$content,$language);
    987972// **********************
     
    994979 * Function called from functions.inc.php to send notification email when user have been downgraded
    995980 *
    996  * @param : user id, username, email address, confirmation
     981 * @param : user id, username, email address
    997982 *
    998983 */
     
    10321017  $subject = '['.$conf['gallery_title'].'] '.l10n_args(get_l10n_args('Demotion of %s', stripslashes($username)));
    10331018     
    1034   if (isset($conf_UAM[26]) and $conf_UAM[26] <> '')
     1019  if (isset($conf_UAM[25]) and $conf_UAM[25] <> '')
    10351020  {
    10361021    if (function_exists('get_user_language_desc'))
    10371022    {
    1038       $custom_txt = get_user_language_desc($conf_UAM[26])."\n\n";
    1039     }
    1040     else $custom_txt = l10n($conf_UAM[26])."\n\n";
     1023      $custom_txt = get_user_language_desc($conf_UAM[25])."\n\n";
     1024    }
     1025    else $custom_txt = l10n($conf_UAM[25])."\n\n";
    10411026  }
    10421027
     
    10661051// debugging             
    10671052// **********************
    1068 //$content = ($infos1."\n\n".$infos2."\n\n").get_absolute_root_url();   
     1053//$content = ($custom_txt.l10n_args($infos1)."\n\n".l10n_args($infos2)."\n\n").get_absolute_root_url();   
     1054//MailLog($email,$subject,$content,$language);
     1055// **********************
     1056
     1057// Switching back to default language
     1058switch_lang_back();
     1059}
     1060
     1061/**
     1062 * Function called from UAM_admin.php to send notification email when user registration have been manually validated by admin
     1063 *
     1064 * @param : user id
     1065 *
     1066 */
     1067function validation_mail($id)
     1068{
     1069  global $conf;
     1070
     1071  $conf_UAM = unserialize($conf['UserAdvManager']);
     1072 
     1073        include_once(PHPWG_ROOT_PATH.'include/functions_mail.inc.php');
     1074 
     1075        $custom_txt = "";
     1076
     1077// We have to get the user's language in database
     1078  $query ='
     1079SELECT user_id, language
     1080FROM '.USER_INFOS_TABLE.'
     1081WHERE user_id = '.$id.'
     1082;';
     1083  $data = pwg_db_fetch_assoc(pwg_query($query));
     1084
     1085// Check if user is already registered (profile changing) - If not (new registration), language is set to current gallery language
     1086  if (empty($data))
     1087  {
     1088// And switch gallery to this language before using personalized and multilangual contents
     1089    $language = pwg_get_session_var( 'lang_switch', $user['language'] );
     1090    switch_lang_to($language);
     1091  }
     1092  else
     1093  {
     1094// And switch gallery to this language before using personalized and multilangual contents
     1095    $language = $data['language']; // Usefull for debugging
     1096    switch_lang_to($data['language']);
     1097    load_language('plugin.lang', UAM_PATH);
     1098  }
     1099
     1100// Retreive users email and user name from id
     1101  $query ='
     1102SELECT id, username, mail_address
     1103FROM '.USERS_TABLE.'
     1104WHERE id = '.$id.'
     1105;';
     1106  $result = pwg_db_fetch_assoc(pwg_query($query));
     1107
     1108  $subject = '['.$conf['gallery_title'].'] '.l10n_args(get_l10n_args('Validation of %s', stripslashes($result['username'])));
     1109     
     1110  if (isset($conf_UAM[28]) and $conf_UAM[28] <> '')
     1111  {
     1112    if (function_exists('get_user_language_desc'))
     1113    {
     1114      $custom_txt = get_user_language_desc($conf_UAM[28])."\n\n";
     1115    }
     1116    else $custom_txt = l10n($conf_UAM[28])."\n\n";
     1117  }
     1118
     1119  $infos = array(
     1120    get_l10n_args('User: %s', stripslashes($result['username'])),
     1121    get_l10n_args('Email: %s', $result['mail_address']),
     1122    get_l10n_args('', ''),
     1123  );
     1124
     1125// Sending the email with subject and contents
     1126  pwg_mail($result['mail_address'], array(
     1127    'subject' => $subject,
     1128    'content' => (l10n_args($infos)."\n\n".$custom_txt),
     1129  ));
     1130
     1131// **********************
     1132// Email sending debugger
     1133// This is only to trace
     1134// the send of emails for
     1135// debugging             
     1136// **********************
     1137//$email = $result['mail_address'];
     1138//$content = (l10n_args($infos)."\n\n".$custom_txt);   
    10691139//MailLog($email,$subject,$content,$language);
    10701140// **********************
  • extensions/NBC_UserAdvManager/branches/2.16/include/upgradedb.inc.php

    r8088 r8095  
    287287  $Newconf_UAM[22] = 'false';
    288288  $Newconf_UAM[23] = 'false';
    289   $Newconf_UAM[24] = 'false';
    290   $Newconf_UAM[25] = 'Sorry, your account has been deleted due to a too long time passed since your last visit.';
    291   $Newconf_UAM[26] = 'Sorry, your account has been deprecated due to a too long time passed since your last visit. Please, use the following link to revalidate your account.';
     289  $Newconf_UAM[24] = 'Sorry, your account has been deleted due to a too long time passed since your last visit.';
     290  $Newconf_UAM[25] = 'Sorry, your account has been deprecated due to a too long time passed since your last visit. Please, use the following link to revalidate your account.';
     291  $Newconf_UAM[26] = '-1';
    292292  $Newconf_UAM[27] = '-1';
    293   $Newconf_UAM[28] = '-1';
     293  $Newconf_UAM[28] = 'Thank you to have registered the gallery. Your account has been manually validated by admin. You can now visit all the gallery for free !';
    294294 
    295295  $update_conf = serialize($Newconf_UAM);
  • extensions/NBC_UserAdvManager/branches/2.16/language/de_DE/help/plugin.lang.php

    r8088 r8095  
    1313';
    1414$lang['UAM_miscTitle'] = 'Registrierung gefolgt und andere Optionen';
    15 $lang['UAM_miscTitle_d'] = '
    16 - Geist Benutzer-Management<br>
    17 - Gefolgt registrierte Benutzer<br>
    18 - Nickname obligatorisch für Gäste Kommentare<br>
    19 ...
    20 ';
    21 $lang['UAM_casenTitle'] = 'Benutzernamen: Groß-und Kleinschreibung';
    2215$lang['UAM_carexcTitle'] = 'Benutzernamen: Ausschluss von Zeichen';
    2316$lang['UAM_carexcTitle_d'] = 'Es mag interessant sein, bestimmte Zeichen in Benutzernamen verbieten (Beispiel: verweigern Logins mit &quot;@&quot;). Diese Option erm&ouml;glicht es, Zeichen oder Zeichenfolge, Veranstaltungen auszuschlie&szlig;en.<br>
     
    5649$lang['UAM_remailtxt2Title'] = 'Reminder per E-Mail, ohne dass neue Schlüssel generiert';
    5750$lang['UAM_ghosttrackerTitle'] = 'Geist Besucher-Management';
    58 $lang['UAM_ghosttrackerTitle_d'] = 'Auch bekannt als &quot;Geist Tracker&quot;, wenn diese Funktion aktiviert ist, k&ouml;nnen Sie verwalten Ihre Besucher je nach der H&auml;ufigkeit ihrer Besuche. Wenn die Zeit zwischen 2 besucht, ist erreicht, wird der Besucher in Frage zu &quot;Geist Tracker&quot; Tisch, an dem Sie in der Lage sein wird, die Besucher per E-Mail erinnern.<br><br>
    59 <b style=&quot;color: red;&quot;>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.</b>';
    6051$lang['UAM_gttextTitle'] = 'Geist Tracker Erinnerungs-Nachricht';
    6152$lang['UAM_lastvisitTitle'] = 'Tracking registrierte Benutzer';
     
    7667Durch die Deaktivierung dieser Option (Standard), nur die E-Mail-Informationen gesendet werden (wenn &quot;Informations-E-Mail an Benutzer&quot; aktiviert ist).';
    7768// --------- End: New or revised $lang ---- from version 2.14.0
    78 
    79 
    80 // --------- Starting below: New or revised $lang ---- from version 2.15.0
    81 /*TODO*/$lang['UAM_confirmmail_custom1'] = 'Text of the confirmation page - Confirmation accepted';
    82 /*TODO*/$lang['UAM_confirmmail_custom2'] = 'Text of the confirmation page - Confirmation rejected';
    83 // --------- End: New or revised $lang ---- from version 2.15.0
    84 
    85 
    86 // --------- Starting below: New or revised $lang ---- from version 2.15.2
    87 $lang['UAM_casenTitle_d'] = 'Standardm&auml;&szlig;ig ist Piwigo Groß-und Kleinschreibung sensitive: Gro&szlig;-und Kleinschreibung ber&uuml;cksichtigt werden verschiedene Buchstaben in den Namen von den Nutzern bei der Registrierung gew&auml;hlt. So, &quot;Foo&quot;, &quot;foo&quot; und &quot;FOO&quot; k&ouml;nnen 3 verschiedene Benutzer.<br><br>
    88 Die Aktivierung dieser Option erlaubt es, alle Optionen im Fall von &quot;foo&quot; als ein Benutzer zu betrachten. Wenn &quot;foo&quot; bereits vorhanden ist, einen neuen Benutzer erstellen &quot;Foo&quot; werden nicht angenommen.<br><br>
    89 <b style=&quot;color: red;&quot;>Warnung: Diese Option hat keine Auswirkungen auf den Benutzernamen erstellt vor ihrer Aktivierung.</b>';
    90 // --------- End: New or revised $lang ---- from version 2.15.2
    9169
    9270
     
    156134
    157135
    158 // --------- Starting below: New or revised $lang ---- from version 2.15.7
    159 /*TODO*/$lang['UAM_GTAutoTitle'] = 'Gestion automatique des utilisateurs fantomes';
    160 /*TODO*/$lang['UAM_GTAutoTitle_d'] = 'Cette option permet d\'appliquer des règles de gestion automatisée des visiteurs fantômes. Lorsque ce mode est actif, on partira du principe qu\'un visiteur ayant atteind la limite maximale entre deux visites et ayant déjà été notifié par mail est considéré comme expiré.';
    161 /*TODO*/$lang['UAM_GTAutoDelTitle'] = 'Suppression automatique des comptes expirés';
    162 /*TODO*/$lang['UAM_GTAutoDelTitle_d'] = 'Supprime automatiquement le compte d\'un utilisateur lorsque celui-ci est expiré. La suppression survient lors de la connexion de l\'utilisateur qui est alors redirigé vers une page annonçant que sont compte a été détruit. Un texte personnalisé peut être saisi dans le champ ci-dessous.<br>
    163 Ce 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.<br><br>
    164 Note : Lorsque cette option est active, les autres règles automatiques ne sont pas accessibles.';
    165 /*TODO*/$lang['UAM_GTAutoGpTitle'] = 'Changement automatique de groupe / statut';
    166 /*TODO*/$lang['UAM_GTAutoGpTitle_d'] = 'Changement automatique de groupe / statut';
    167 /*TODO*/$lang['UAM_GTAutoMailTitle'] = 'Emailing automatique des comptes expirés';
    168 /*TODO*/$lang['UAM_GTAutoMailTitle_d'] = 'Emailing automatique des comptes expirés';
    169 // --------- End: New or revised $lang ---- from version 2.15.7
    170 
    171 
    172136// --------- Starting below: New or revised $lang ---- from version 2.16.0
     137$lang['UAM_confirmmail_custom1'] = 'Text der Best&auml;tigungs-Seite - Best&auml;tigung akzeptiert';
     138$lang['UAM_confirmmail_custom2'] = 'Text der Best&auml;tigungs-Seite - Best&auml;tigung abgelehnt';
     139$lang['UAM_miscTitle_d'] = '
     140- Automatische oder manuelle Verwaltung von Geist Benutzern<br>
     141- Gefolgt registrierte Benutzer<br>
     142- Nickname obligatorisch für Gäste Kommentare<br>
     143...
     144';
     145$lang['UAM_ghosttrackerTitle_d'] = 'Auch bekannt als &quot;Geist Tracker&quot;, wenn diese Funktion aktiviert ist, k&ouml;nnen Sie verwalten Ihre Besucher je nach der H&auml;ufigkeit ihrer Besuche. 2 Betriebsarten stehen zur Verfügung:
     146- Manuelle Verwaltung: Wenn die Zeit zwischen 2 Besuche erreicht ist, erscheint dem Besucher in der &quot;Ghost Tracker&quot; Table, an dem Sie in der Lage für die Besucher per E-Mail erinnern oder löschen ihn wird.<br><br>
     147- Automatisiertes Management: Wenn der Zeitraum zwischen 2 aufeinander folgenden Aufenthalte erreicht ist, wird der Besucher automatisch gelöscht oder verschoben in eine Gruppe warten und / oder Status. In diesem zweiten Fall kann eine Information E-Mail an ihn gesendet werden.<br><br>
     148<b style=&quot;color: red;&quot;>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.</b>';
    173149$lang['UAM_mailexcTitle_d'] = 'Standardmäßig akzeptiert Piwigo alle E-Mail-Adressen im Format xxx@yyy.zz. Durch die Aktivierung dieser Option können Sie auf bestimmte Domains im Format ausschließen: @[Domänenname].[Domain Extension].<br><br>
    174150Beispiele:<br>
     
    179155$lang['UAM_confirmtxtTitle_d'] = 'Geben Sie den einleitenden Text, den Sie in der E-Mail-Bestätigung der Anmeldung erscheinen.<br><br>
    180156Um mehrere Sprachen zu benutzen, können Sie die Extended description Plugin-Tags verwenden, wenn er aktiv ist.';
    181 /*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.<br>
    182 After installing the plugin, a standard text is set as an example.<br>
    183 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.';
    184 /*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.<br>
    185 After installing the plugin, a standard text is set as an example.<br>
    186 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.';
     157$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.<br>
     158Nach der Installation des Plugin ist ein Standard-Text als Beispiel vorangehen.<br>
     159Dieses 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.';
     160$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.<br>
     161Nach der Installation des Plugin ist ein Standard-Text als Beispiel vorangehen.<br>
     162Dieses 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.';
    187163$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.<br><br>
    188164Wenn 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)<br><br>
     
    193169$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).<br><br>
    194170Um mehrere Sprachen zu benutzen, können Sie die Extended description Plugin-Tags verwenden, wenn er aktiv ist.';
     171$lang['UAM_GTAutoTitle'] = 'Automatische Verwaltung von Geist Benutzern';
     172$lang['UAM_GTAutoTitle_d'] = 'Diese Option ermöglicht es, Regeln für die automatisierte Verwaltung von Geistern Benutzer anwenden.
     173<br><br>Grundprinzip: Ein Benutzer, der die maximale Zeit zwischen den Besuchen <b><u>und</u></b> hat bereits per E-Mail gilt als abgelaufen gemeldet erreicht. Dann können Sie automatisierte Verarbeitung Regeln wie das automatische Löschen von abgelaufenen Konten oder Herabstufung durch Beschränkung des Zugangs zur Galerie (schaltet automatisch auf eine eingeschränkte Gruppe und / oder Status).
     174<br><br>Die Ansteuerung dieser Automatisierung wird erreicht, wenn eine Verbindung Nutzer (alle Benutzer!) Auf der Galerie.';
     175$lang['UAM_GTAutoDelTitle'] = 'Benutzerdefinierte Meldung auf gelöschtes Konto';
     176$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.<br><br>
     177Custom 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.';
     178$lang['UAM_GTAutoGpTitle'] = 'Automatischer Wechsel der Gruppe / Status';
     179/*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>
     180<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.';
     181$lang['UAM_GTAutoMailTitle'] = 'Automatisches Versenden einer E-Mail beim Wechsel Gruppe / Status';
     182/*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.
     183<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>
     184<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. ;-)
     185<br><br>Um mehrere Sprachen zu benutzen, können Sie die Extended description Plugin-Tags verwenden, wenn er aktiv ist.
     186<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>';
     187$lang['UAM_AdminValidationMail'] = 'Mitteilung der manuellen Registrierung Validierung';
     188$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.<br><br>
     189Um mehrere Sprachen zu benutzen, können Sie die Extended description Plugin-Tags verwenden, wenn er aktiv ist.';
    195190// --------- End: New or revised $lang ---- from version 2.16.0
    196191?>
  • extensions/NBC_UserAdvManager/branches/2.16/language/de_DE/plugin.lang.php

    r8088 r8095  
    2525/* Errors and Warnings */
    2626$lang['UAM_audit_ok'] = 'Audit OK';
    27 $lang['Err_audit_no_casse'] = '<b>Diese Konten sind identisch mit den Fall aufmerksam:</b> ';
    2827$lang['Err_audit_username_char'] = '<b>Dieses Konto verwendet eine oder mehrere der verbotenen Zeichen:</b> ';
    2928$lang['Err_audit_email_forbidden'] = '<b>Dieses Konto verwendet eine E-Mail-Anbieter sind untersagt:</b> ';
     
    272271$lang['UAM_RedirToProfile_true'] = ' Aktivieren';
    273272// --------- End: New or revised $lang ---- from version 2.15.4
     273
     274
     275// --------- Starting below: New or revised $lang ---- from version 2.16.0
     276$lang['UAM_Expired_Group'] = '<b>Gruppe</b> für Benutzer-Registrierung abgelaufen<br>';
     277$lang['UAM_Expired_Status'] = '<b>Status</b> für Benutzer-Registrierung abgelaufen<br>';
     278$lang['UAM_GTAuto'] = 'Automatische Verwaltung von Geist Benutzern';
     279$lang['UAM_GTAuto_false'] = ' Deaktivieren (Standard)';
     280$lang['UAM_GTAuto_true'] = ' Aktivieren';
     281$lang['UAM_GTAutoDel'] = 'Automatisches Löschen von Konten';
     282$lang['UAM_GTAutoGp'] = 'Automatischer Wechsel der Gruppe / Status';
     283$lang['UAM_GTAutoMail'] = 'Automatisches Versenden einer E-Mail beim Wechsel Gruppe / Status';
     284$lang['UAM_GTAutoMail_false'] = ' Deaktivieren (Standard)';
     285$lang['UAM_GTAutoMail_true'] = ' Aktivieren';
     286$lang['Deleted_Account_Redirection_Page'] = 'Zugriff verweigert - Account zerstört!';
     287$lang['title_redir_page'] = 'Zugriff verweigert sich für ein Konto zerstört!';
     288$lang['Error_GTAutoMail_cannot_be_set_without_ConfirmMail'] = 'Konsistenz-Fehler in der Konfiguration gewählt:<br><br>
     289"Einstellen der Registrierung durchgeführt und andere Optionen > Geist Besucher-Management (Geist Tracker) > Automatische Verwaltung von Geist Benutzern > Automatisches Versenden einer E-Mail beim Wechsel Gruppe / Status" kann nicht aktiviert werden, wenn "Einstellen Bestätigungen und Validierungen der Registrierung > Bestätigung der Anmeldung - Validation von Benutzer" ist zunächst nicht aktiviert.<br><br>
     290Um die Kohärenz, die Option "Automatisches Versenden einer E-Mail beim Wechsel Gruppe / Status" wurde automatisch "deaktiviert" neu positioniert.<br><br>';
     291$lang['Demotion of %s'] = 'Herabstufung von %s';
     292$lang['UAM_AdminValidationMail_Text'] = 'Mitteilung der manuellen Registrierung Validierung';
     293$lang['Validation of %s'] = 'Validierung von %s';
     294// --------- End: New or revised $lang ---- from version 2.16.0
    274295?>
  • extensions/NBC_UserAdvManager/branches/2.16/language/en_UK/help/plugin.lang.php

    r8088 r8095  
    1313';
    1414$lang['UAM_miscTitle'] = 'Registration followed and other options';
    15 $lang['UAM_miscTitle_d'] = '
    16 - Ghost users management<br>
    17 - Followed registered users<br>
    18 - Nickname mandatory for guests comments<br>
    19 ...
    20 ';
    21 $lang['UAM_casenTitle'] = 'Usernames: Case sensitivity';
    2215$lang['UAM_carexcTitle'] = 'Usernames: Exclusion of characters';
    2316$lang['UAM_carexcTitle_d'] = 'It may be interesting to prohibit certain characters in usernames (example: refuse logins containing &quot;@&quot;). This option allows to exclude characters or sequence of characters, events.<br>
     
    5649$lang['UAM_remailtxt2Title'] = 'Reminder email without new key generated';
    5750$lang['UAM_ghosttrackerTitle'] = 'Ghost visitors management';
    58 $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. When the time between 2 visits is reaches, the visitor in question appears in the &quot;Ghost Tracker&quot; table where you will be able to remind visitors via email.<br><br>
    59 <b style=&quot;color: red;&quot;>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.</b>';
    6051$lang['UAM_gttextTitle'] = 'Ghost Tracker\'s reminder message';
    6152$lang['UAM_lastvisitTitle'] = 'Tracking registered users';
     
    8374// --------- End: New or revised $lang ---- from version 2.15.0
    8475
    85 
    86 // --------- Starting below: New or revised $lang ---- from version 2.15.2
    87 $lang['UAM_casenTitle_d'] = 'By default, Piwigo is case sensitive: Uppercase and lowercase letters are considered different letters in the names chosen by users at registration. Thus, &quot;Foo&quot;, &quot;foo&quot; and &quot;FOO&quot; may be 3 different users.<br><br>
    88 Enabling this option allows to consider all options in case of &quot;foo&quot; as one user. If &quot;foo&quot; already exists, creating a new user &quot;Foo&quot; will be refused.<br><br>
    89 <b style=&quot;color: red;&quot;>Warning: This option has no effect on the user names created prior to its activation.</b>';
    90 // --------- End: New or revised $lang ---- from version 2.15.2
    9176
    9277// --------- Starting below: New or revised $lang ---- from version 2.15.4
     
    156141
    157142
    158 // --------- Starting below: New or revised $lang ---- from version 2.15.7
    159 /*TODO*/$lang['UAM_GTAutoTitle'] = 'Gestion automatique des utilisateurs fantomes';
    160 /*TODO*/$lang['UAM_GTAutoTitle_d'] = 'Cette option permet d\'appliquer des règles de gestion automatisée des visiteurs fantômes. Lorsque ce mode est actif, on partira du principe qu\'un visiteur ayant atteind la limite maximale entre deux visites et ayant déjà été notifié par mail est considéré comme expiré.';
    161 /*TODO*/$lang['UAM_GTAutoDelTitle'] = 'Suppression automatique des comptes expirés';
    162 /*TODO*/$lang['UAM_GTAutoDelTitle_d'] = 'Supprime automatiquement le compte d\'un utilisateur lorsque celui-ci est expiré. La suppression survient lors de la connexion de l\'utilisateur qui est alors redirigé vers une page annonçant que sont compte a été détruit. Un texte personnalisé peut être saisi dans le champ ci-dessous.<br>
    163 Ce 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.<br><br>
    164 Note : Lorsque cette option est active, les autres règles automatiques ne sont pas accessibles.';
    165 /*TODO*/$lang['UAM_GTAutoGpTitle'] = 'Changement automatique de groupe / statut';
    166 /*TODO*/$lang['UAM_GTAutoGpTitle_d'] = 'Changement automatique de groupe / statut';
    167 /*TODO*/$lang['UAM_GTAutoMailTitle'] = 'Emailing automatique des comptes expirés';
    168 /*TODO*/$lang['UAM_GTAutoMailTitle_d'] = 'Emailing automatique des comptes expirés';
    169 // --------- End: New or revised $lang ---- from version 2.15.7
    170 
    171 
    172143// --------- Starting below: New or revised $lang ---- from version 2.16.0
     144$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>
     145- 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>
     146- 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>
     147<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>';
     148$lang['UAM_miscTitle_d'] = '
     149- Automatic or manual management of ghosts users<br>
     150- Followed registered users<br>
     151- Nickname mandatory for guests comments<br>
     152...
     153';
    173154$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>
    174155Examples :<br>
     
    193174$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).<br><br>
    194175To use multiple languages, you can use the Extended description plugin\'s tags if it is active.';
     176$lang['UAM_GTAutoTitle'] = 'Automatic management of ghosts users';
     177$lang['UAM_GTAutoTitle_d'] = 'This option allows to apply rules for automated management of ghosts users.
     178<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).
     179<br><br>The triggering of these automation is achieved when connecting users (any user!) to the gallery.';
     180$lang['UAM_GTAutoDelTitle'] = 'Custom message on deleted account';
     181$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.<br><br>
     182Custom 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.';
     183$lang['UAM_GTAutoGpTitle'] = 'Automatic change of group / status';
     184$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>
     185<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.';
     186$lang['UAM_GTAutoMailTitle'] = 'Automatically sending an email when changing group / status';
     187$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.
     188<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>
     189<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. ;-)
     190<br><br>To use multiple languages, you can use the Extended description plugin\'s tags if it is active.
     191<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>';
     192$lang['UAM_AdminValidationMail'] = 'Notification of manual registration validation';
     193$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.<br><br>
     194To use multiple languages, you can use the Extended description plugin\'s tags if it is active.';
    195195// --------- End: New or revised $lang ---- from version 2.16.0
    196196?>
  • extensions/NBC_UserAdvManager/branches/2.16/language/en_UK/plugin.lang.php

    r8088 r8095  
    2424/* Errors and Warnings */
    2525$lang['UAM_audit_ok'] = 'Audit OK';
    26 $lang['Err_audit_no_casse'] = '<b>These accounts are identical to the case closely :</b> ';
    2726$lang['Err_audit_username_char'] = '<b>This account uses one or more forbidden characters :</b> ';
    2827$lang['Err_audit_email_forbidden'] = '<b>This account uses a forbidden email provider :</b> ';
     
    269268$lang['UAM_RedirToProfile_true'] = ' Enable';
    270269// --------- End: New or revised $lang ---- from version 2.15.4
     270
     271
     272// --------- Starting below: New or revised $lang ---- from version 2.16.0
     273$lang['UAM_Expired_Group'] = '<b>Group</b> for user\'s registration has expired<br>';
     274$lang['UAM_Expired_Status'] = '<b>Status</b> for user\'s registration has expired<br>';
     275$lang['UAM_GTAuto'] = 'Automatic management of ghosts users';
     276$lang['UAM_GTAuto_false'] = ' Disable (default)';
     277$lang['UAM_GTAuto_true'] = ' Enable';
     278$lang['UAM_GTAutoDel'] = 'Automatic deletion of accounts';
     279$lang['UAM_GTAutoGp'] = 'Automatic change of group / status';
     280$lang['UAM_GTAutoMail'] = 'Automatically sending an email when changing group / status';
     281$lang['UAM_GTAutoMail_false'] = ' Disable (default)';
     282$lang['UAM_GTAutoMail_true'] = ' Enable';
     283$lang['Deleted_Account_Redirection_Page'] = 'Access denied - Account destroyed!';
     284$lang['title_redir_page'] = 'Access denied for having an account destroyed!';
     285$lang['Error_GTAutoMail_cannot_be_set_without_ConfirmMail'] = 'Consistency error in the configuration chosen:<br><br>
     286"Setting the followed registrations 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>
     287To ensure consistency, the option "Automatically sending an email when changing group / status" was automatically repositioned "disabled".<br><br>';
     288$lang['Demotion of %s'] = 'Demotion of %s';
     289$lang['UAM_AdminValidationMail_Text'] = 'Notification of manual registration validation';
     290$lang['Validation of %s'] = 'Validation of %s';
     291// --------- End: New or revised $lang ---- from version 2.16.0
    271292?>
  • extensions/NBC_UserAdvManager/branches/2.16/language/es_ES/help/plugin.lang.php

    r8088 r8095  
    1313';
    1414$lang['UAM_miscTitle'] = 'Registros seguido y otras opciones';
    15 $lang['UAM_miscTitle_d'] = '
    16 - Gestión de visitantes fantasmas<br>
    17 - Seguimiento de usuarios registrados<br>
    18 - Nickname obligatorio para los comentarios<br>
    19 ...
    20 ';
    21 $lang['UAM_casenTitle'] = 'Nombres de usuario: mayúsculas y minúsculas';
    2215$lang['UAM_carexcTitle'] = 'Nombres de usuario: Excluyendo los caracteres';
    2316$lang['UAM_carexcTitle_d'] = 'Puede ser interesante para prohibir ciertos caracteres en nombres de usuario (por ejemplo, se niegan los inicios de sesi&oacute;n que contiene &quot;@&quot;). Esta opci&oacute;n permite excluir caracteres o secuencia de caracteres, los acontecimientos.<br>
     
    5649$lang['UAM_remailtxt2Title'] = 'Recordatorio por correo electrónico sin la llave generada';
    5750$lang['UAM_ghosttrackerTitle'] = 'Gestión de usuarios fantasmas';
    58 $lang['UAM_ghosttrackerTitle_d'] = 'Tambi&eacute;n se llama &quot;Ghost Tracker&quot;, cuando se activa esta funci&oacute;n, usted puede manejar sus visitantes en funci&oacute;n de la frecuencia de sus visitas. Cuando el tiempo entre 2 visitas a llegado, el visitante en cuesti&oacute;n aparecera en el &quot;Ghost Tracker&quot; tabla donde usted ser&aacute; capaz de recordar a los visitantes a trav&eacute;s de correo electr&oacute;nico.<br><br>
    59 <b style=&quot;color: red;&quot;>Si habilita esta función por primera vez o ha reactivado después de un largo período durante el cual los nuevos visitantes se han registrado, usted debera inicializar o restablecer el Rastreador de Ghost.</b>';
    6051$lang['UAM_gttextTitle'] = 'Mensaje recordatorio de Ghost Tracker';
    6152$lang['UAM_lastvisitTitle'] = 'Seguimiento de usuarios registrados';
     
    7667Al deshabilitar esta opci&oacute;n (por defecto), s&oacute;lo el coreo de informaci&oacute;n  se env&iacute;a (si &quot;Informaci&oacute;n por correo electr&oacute;nico para el usuario&quot; est&aacute; activado).';
    7768// --------- End: New or revised $lang ---- from version 2.14.0
    78 
    79 
    80 // --------- Starting below: New or revised $lang ---- from version 2.15.0
    81 /*TODO*/$lang['UAM_confirmmail_custom1'] = 'Text of the confirmation page - Confirmation accepted';
    82 /*TODO*/$lang['UAM_confirmmail_custom2'] = 'Text of the confirmation page - Confirmation rejected';
    83 // --------- End: New or revised $lang ---- from version 2.15.0
    84 
    85 
    86 // --------- Starting below: New or revised $lang ---- from version 2.15.2
    87 /*TODO*/$lang['UAM_casenTitle_d'] = 'By default, Piwigo is case sensitive: Uppercase and lowercase letters are considered different letters in the names chosen by users at registration. Thus, &quot;Foo&quot;, &quot;foo&quot; and &quot;FOO&quot; may be 3 different users.<br><br>
    88 Enabling this option allows to consider all options in case of &quot;foo&quot; as one user. If &quot;foo&quot; already exists, creating a new user &quot;Foo&quot; will be refused.<br><br>
    89 <b style=&quot;color: red;&quot;>Warning: This option has no effect on the user names created prior to its activation.</b>';
    90 // --------- End: New or revised $lang ---- from version 2.15.2
    9169
    9270
     
    157135
    158136
    159 // --------- Starting below: New or revised $lang ---- from version 2.15.7
    160 /*TODO*/$lang['UAM_GTAutoTitle'] = 'Gestion automatique des utilisateurs fantomes';
    161 /*TODO*/$lang['UAM_GTAutoTitle_d'] = 'Cette option permet d\'appliquer des règles de gestion automatisée des visiteurs fantômes. Lorsque ce mode est actif, on partira du principe qu\'un visiteur ayant atteind la limite maximale entre deux visites et ayant déjà été notifié par mail est considéré comme expiré.';
    162 /*TODO*/$lang['UAM_GTAutoDelTitle'] = 'Suppression automatique des comptes expirés';
    163 /*TODO*/$lang['UAM_GTAutoDelTitle_d'] = 'Supprime automatiquement le compte d\'un utilisateur lorsque celui-ci est expiré. La suppression survient lors de la connexion de l\'utilisateur qui est alors redirigé vers une page annonçant que sont compte a été détruit. Un texte personnalisé peut être saisi dans le champ ci-dessous.<br>
    164 Ce 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.<br><br>
    165 Note : Lorsque cette option est active, les autres règles automatiques ne sont pas accessibles.';
    166 /*TODO*/$lang['UAM_GTAutoGpTitle'] = 'Changement automatique de groupe / statut';
    167 /*TODO*/$lang['UAM_GTAutoGpTitle_d'] = 'Changement automatique de groupe / statut';
    168 /*TODO*/$lang['UAM_GTAutoMailTitle'] = 'Emailing automatique des comptes expirés';
    169 /*TODO*/$lang['UAM_GTAutoMailTitle_d'] = 'Emailing automatique des comptes expirés';
    170 // --------- End: New or revised $lang ---- from version 2.15.7
    171 
    172 
    173137// --------- Starting below: New or revised $lang ---- from version 2.16.0
     138$lang['UAM_confirmmail_custom1'] = 'Texto de la página de confirmación - Confirmación aceptada';
     139$lang['UAM_confirmmail_custom2'] = 'Texto de la página de confirmación - Confirmación rechazada';
     140/*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>
     141- 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>
     142- 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>
     143<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>';
     144$lang['UAM_miscTitle_d'] = '
     145- Automatic or manual management of ghosts users<br>
     146- Followed registered users<br>
     147- Nickname mandatory for guests comments<br>
     148...
     149';
    174150$lang['UAM_mailexcTitle_d'] = 'De forma predeterminada, Piwigo acepta todas las direcciones de correo electrónico en el  formato xxx@yyy.zz. Al habilitar esta opción le permite excluir ciertos dominios en el formato: @[nombreDeDominio].[Domain_extension].<br><br>
    175151Ejemplos :<br>
     
    194170$lang['UAM_gttextTitle_d'] = 'Introduzca el texto que desea que aparezca en el recordatorio por correo electrónico para pedir al usuario volver a visitar su galería (Nota: El texto pre-llenado con la instalación del plugin se presenta como un ejemplo).<br><br>
    195171Para utilizar varios idiomas, puede utilizar las etiquetas para el plugin Extended description si está activo.';
     172$lang['UAM_GTAutoTitle'] = 'Gestión automática de los Espíritus usuarios';
     173/*TODO*/$lang['UAM_GTAutoTitle_d'] = 'This option allows to apply rules for automated management of ghosts users.
     174<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).
     175<br><br>The triggering of these automation is achieved when connecting users (any user!) to the gallery.';
     176$lang['UAM_GTAutoDelTitle'] = 'Mensaje personalizado en cuenta eliminada';
     177/*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.<br><br>
     178Custom 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.';
     179$lang['UAM_GTAutoGpTitle'] = 'Cambio automático de grupo / estado';
     180/*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>
     181<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.';
     182$lang['UAM_GTAutoMailTitle'] = 'Automáticamente el envío de un correo electrónico cuando se cambia de grupo / estado';
     183/*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.
     184<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>
     185<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. ;-)
     186<br><br>To use multiple languages, you can use the Extended description plugin\'s tags if it is active.
     187<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>';
     188$lang['UAM_AdminValidationMail'] = 'Notificación de la validación manual de registro';
     189/*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.<br><br>
     190To use multiple languages, you can use the Extended description plugin\'s tags if it is active.';
    196191// --------- End: New or revised $lang ---- from version 2.16.0
    197192?>
  • extensions/NBC_UserAdvManager/branches/2.16/language/es_ES/plugin.lang.php

    r8088 r8095  
    2525/* Errors and Warnings */
    2626$lang['UAM_audit_ok'] = 'Auditoría OK';
    27 $lang['Err_audit_no_casse'] = '<b>Estas cuentas estan idénticas y sensibles a mayusculas:</b> ';
    2827$lang['Err_audit_username_char'] = '<b>Esta cuenta utiliza uno o más caracteres prohibidos:</b> ';
    2928$lang['Err_audit_email_forbidden'] = '<b>Esta cuenta utiliza un proveedor de correo electrónico  prohibido:</b> ';
     
    271270$lang['UAM_RedirToProfile_true'] = ' Activar';
    272271// --------- End: New or revised $lang ---- from version 2.15.4
     272
     273
     274// --------- Starting below: New or revised $lang ---- from version 2.16.0
     275$lang['UAM_Expired_Group'] = '<b>Grupo</b> para el registro de usuario ha caducado<br>';
     276$lang['UAM_Expired_Status'] = '<b>Estado </b> para el registro de usuario ha caducado<br>';
     277$lang['UAM_GTAuto'] = 'Gestión automática de los Espíritus usuarios';
     278$lang['UAM_GTAuto_false'] = ' Desactivar (por defecto)';
     279$lang['UAM_GTAuto_true'] = ' Activar';
     280$lang['UAM_GTAutoDel'] = 'Borrado automático de las cuentas';
     281$lang['UAM_GTAutoGp'] = 'Cambio automático de grupo / estado';
     282$lang['UAM_GTAutoMail'] = 'Automáticamente el envío de un correo electrónico cuando se cambia de grupo / estado';
     283$lang['UAM_GTAutoMail_false'] = ' Desactivar (por defecto)';
     284$lang['UAM_GTAutoMail_true'] = ' Activar';
     285$lang['Deleted_Account_Redirection_Page'] = 'Acceso denegado - Cuenta destruido!';
     286$lang['title_redir_page'] = 'Acceso denegado por haber destruido una cuenta!';
     287$lang['Error_GTAutoMail_cannot_be_set_without_ConfirmMail'] = 'Error de coherencia en la configuración elegida:<br><br>
     288"Configuración de los registros seguidos y otras opciones > Gestión de Espíritu visitantes (Tracker Ghost) > Gestión automática de los Espíritus usuarios > Automáticamente el envío de un correo electrónico cuando se cambia de grupo / estado" no se puede activar si "Configuración de las confirmaciones y validaciones de registro > Confirmación de registro - La validación por el usuario" no está habilitada en un principio.<br><br>
     289Para garantizar la coherencia, la opción "Automáticamente el envío de un correo electrónico cuando se cambia de grupo / estado" fue colocado de nuevo de forma automática "Desactivar".<br><br>';
     290$lang['Demotion of %s'] = 'Degradación de %s';
     291$lang['UAM_AdminValidationMail_Text'] = 'Notificación de la validación manual de registro';
     292$lang['Validation of %s'] = 'Validación de %s';
     293// --------- End: New or revised $lang ---- from version 2.16.0
    273294?>
  • extensions/NBC_UserAdvManager/branches/2.16/language/fr_FR/help/plugin.lang.php

    r8088 r8095  
    1313';
    1414$lang['UAM_miscTitle'] = 'Suivi des inscrits et fonctions diverses';
    15 $lang['UAM_casenTitle'] = 'Noms d\'utilisateurs : Sensibilité à la casse';
    1615$lang['UAM_carexcTitle'] = 'Noms d\'utilisateurs : Exclusion de certains caractères';
    1716$lang['UAM_carexcTitle_d'] = 'Il peut être intéressant d\'interdire certains caractères dans les noms d\'utilisateurs (exemple : refuser les logins contenant un &quot;@&quot;). Cette option permet d\'exclure les caractères, ou suite de caractères, indésirables.<br>NB: l\'option permet également d\'exclure des mots complets.
     
    7473$lang['UAM_confirmmail_custom2'] = 'Texte de la page de confirmation - Confirmation rejetée';
    7574// --------- End: New or revised $lang ---- from version 2.15.0
    76 
    77 
    78 // --------- Starting below: New or revised $lang ---- from version 2.15.2
    79 $lang['UAM_casenTitle_d'] = 'Par défaut, Piwigo est sensible à la casse : majuscules et minuscules sont considérées comme des lettres différentes dans les noms choisis par les utilisateurs à l\'inscription. Ainsi, &quot;Toto&quot;,  &quot;toto&quot; et &quot;TOTO&quot; peuvent être 3 utilisateurs différents.<br><br>
    80 L\'activation de cette option permet de considérer toutes les versions de casse de &quot;toto&quot; comme un seul utilisateur. Si &quot;toto&quot; existe déjà, la création d\'un nouvel utilisateur &quot;ToTo&quot; sera refusée.<br><br>
    81 <b style=&quot;color: red;&quot;>Attention : Cette option est sans effet sur les noms d\'utilisateurs créés préalablement à son activation.</b>';
    82 // --------- End: New or revised $lang ---- from version 2.15.2
    8375
    8476
     
    147139
    148140// --------- Starting below: New or revised $lang ---- from version 2.16.0
    149 $lang['UAM_ghosttrackerTitle_d'] = 'L\'activation de cette fonction permet la gestion des visiteurs inscrits en fonction de la fréquence de leurs visites. 2 fonctionnements sont possibles:<br><br>
     141$lang['UAM_ghosttrackerTitle_d'] = 'L\'activation de cette fonction permet la gestion des visiteurs inscrits en fonction de la fréquence de leurs visites. 2 modes de fonctionnements sont possibles:<br><br>
    150142- Gestion manuelle : Lorsque le délai entre 2 visites successives est atteint, le visiteur apparaît dans le tableau de l\'onglet &quot;Ghost Tracker&quot; d\'où il est possible de le relancer manuellement par email ou le supprimer.<br><br>
    151143- 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>
     
    181173$lang['UAM_GTAutoTitle'] = 'Gestion automatique des utilisateurs fantomes';
    182174$lang['UAM_GTAutoTitle_d'] = 'Cette option permet d\'appliquer des règles de gestion automatisée des visiteurs fantômes.
    183 <br><br>Principe de base : Un compte d\'utilisateur ayant atteind la limite maximale entre deux visites <b>et</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).
     175<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).
    184176<br><br>Le déclenchement de ces automatismes se réalise lors de la connexion des utilisateurs (n\'importe quel utilisateur !)à la galerie.';
    185 $lang['UAM_GTAutoDelTitle'] = 'Suppression automatique des comptes expirés';
    186 $lang['UAM_GTAutoDelTitle_d'] = 'Supprime automatiquement le compte d\'un utilisateur lorsque celui-ci est expiré.
    187 <br><br>Fonction à utiliser avec précaution car la suppression des comptes est définitive et sans appel !<br><br>
    188 La suppression survient lors de la connexion de l\'utilisateur qui est alors redirigé vers une page annonçant que son compte a été détruit. Un texte personnalisé peut être saisi dans le champ ci-dessous.<br>
    189 Ce 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.<br><br>
    190 Note : Lorsque cette option est active, les autres règles automatiques ne sont pas accessibles.';
     177$lang['UAM_GTAutoDelTitle'] = 'Message personnalisé de suppression de compte';
     178$lang['UAM_GTAutoDelTitle_d'] = 'Ceci n\'est valable que lorsque l\'utilisateur dont le compte a expiré déclenche lui même le mécanisme de suppression (cas rare mais possible). Il est alors déconnecté de force de la galerie et redirigé vers une page indiquant la suppression de son compte et, éventuellement, les raisons de cette suppression.<br><br>
     179Un texte personnalisé pour cette page de redirection peut être saisi dans le champ ci-dessous qui est compatible avec l\'extension FCK Editor. Pour une utilisation multi-langues, vous pouvez utiliser les balises [lang] du plugin Extended Description si celui-ci est actif.';
    191180$lang['UAM_GTAutoGpTitle'] = 'Changement automatique de groupe / statut';
    192181$lang['UAM_GTAutoGpTitle_d'] = 'Le changement automatique de groupe ou de statut équivaut à une rétrogradation des comptes concernés et fonctionne sur le même principe que le groupe ou le statut de validation (voir &quot;Paramétrage des confirmations et validations d\'inscriptions&quot;). Il conviendra donc de définir un groupe et/ou un statut 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 groupe / statut.<br><br>
    193 <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 malgré la notification par mail, il est automatiquement supprimé de la base de données.';
     182<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.';
    194183$lang['UAM_GTAutoMailTitle'] = 'Email automatique sur changement de groupe / statut';
    195184$lang['UAM_GTAutoMailTitle_d'] = 'Lorsqu\'un compte est expiré (changement de groupe / statut 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.
    196 <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).
     185<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>
    197186<br><br>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. ;-)
    198187<br><br>Pour une utilisation multi-langues, vous pouvez utiliser les balises [lang] du plugin Extended Description si celui-ci est actif.
    199188<br><br><b style=&quot;color: red;&quot;>Attention : L\'emploi de cette fonction est intimement lié à l\'option de confirmation d\'inscription par l\'utilisateur (confirmation par mail) et ne peut pas être activée sans cette option.</b>';
     189$lang['UAM_AdminValidationMail'] = 'Notification de validation d\'inscription manuelle';
     190$lang['UAM_AdminValidationMail_d'] = 'Lorsqu\'un administrateur ou un webmestre de la galerie valide manuellement une inscription en attente, un email de notification est automatiquement envoyé à l\'utilisateur concerné. Saisissez ici le texte qui apparaîtra dans cet email.<br><br>
     191Pour une utilisation multi-langues, vous pouvez utiliser les balises [lang] du plugin Extended Description si celui-ci est actif.';
    200192// --------- End: New or revised $lang ---- from version 2.16.0
    201193?>
  • extensions/NBC_UserAdvManager/branches/2.16/language/fr_FR/plugin.lang.php

    r8088 r8095  
    278278$lang['UAM_GTAutoDel'] = 'Suppressions automatiques des comptes';
    279279$lang['UAM_GTAutoGp'] = 'Changement automatique de groupe / statut';
    280 $lang['UAM_GTAutoDel_false'] = ' Désactiver (valeur par défaut)';
    281 $lang['UAM_GTAutoDel_true'] = ' Activer';
    282280$lang['UAM_GTAutoMail'] = 'Email automatique sur changement de groupe / statut';
    283281$lang['UAM_GTAutoMail_false'] = ' Désactiver (valeur par défaut)';
     
    286284$lang['title_redir_page'] = 'Accès refusé pour cause de compte détruit !';
    287285$lang['Error_GTAutoMail_cannot_be_set_without_ConfirmMail'] = 'Erreur de cohérence dans la configuration choisie :<br><br>
    288 "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.<br><br>
     286"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.<br><br>
    289287Pour garantir la cohérence, l\'option "Email automatique sur changement de groupe / statut" a été automatiquement repositionnée en "désactivé".<br><br>';
    290288$lang['Demotion of %s'] = 'Rétrogradation de %s';
     289$lang['UAM_AdminValidationMail_Text'] = 'Notification de validation d\'inscription manuelle';
     290$lang['Validation of %s'] = 'Validation de %s';
    291291// --------- End: New or revised $lang ---- from version 2.16.0
    292292?>
  • extensions/NBC_UserAdvManager/branches/2.16/language/it_IT/help/plugin.lang.php

    r8088 r8095  
    1313';
    1414$lang['UAM_miscTitle'] = 'Monitoraggio degli utenti registrati e altre opzioni';
    15 $lang['UAM_miscTitle_d'] = '
    16 - Gestione degli ospiti fantasmi<br>
    17 - Monitoraggio degli utenti registrati<br>
    18 - Pseudo obbligatorio per i commenti degli ospiti<br>
    19 ...
    20 ';
    21 $lang['UAM_casenTitle'] = 'Pseudo: Sensibilità maiuscole/minuscole';
    2215$lang['UAM_carexcTitle'] = 'Pseudo: Esclusione di caratteri';
    2316$lang['UAM_carexcTitle_d'] = 'Può essere interessante vietare certi caratteri per i pseudo (ad esempio: negare login contenente &quot;@&quot;). Questa opzione permette di escludere i caratteri o sequenza di caratteri, eventi.<br>
     
    5649/* TODO */$lang['UAM_remailtxt2Title'] = 'Reminder email without new key generated';
    5750/* TODO */$lang['UAM_ghosttrackerTitle'] = 'Ghost visitors management';
    58 /* 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. When the time between 2 visits is reaches, the visitor in question appears in the &quot;Ghost Tracker&quot; table where you will be able to remind visitors via email.<br><br>
    59 <b style=&quot;color: red;&quot;>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.</b>';
    6051/* TODO */$lang['UAM_gttextTitle'] = 'Ghost Tracker\'s reminder message';
    6152/* TODO */$lang['UAM_lastvisitTitle'] = 'Tracking registered users';
     
    7667Disabilitando questa opzione ((predefinito)), solo le informazioni e-mail viene inviata (se &quot;E-mail informazioni per l\'utente&quot; &egrave; abilitato).';
    7768// --------- End: New or revised $lang ---- from version 2.14.0
    78 
    79 
    80 // --------- Starting below: New or revised $lang ---- from version 2.15.0
    81 /*TODO*/$lang['UAM_confirmmail_custom1'] = 'Text of the confirmation page - Confirmation accepted';
    82 /*TODO*/$lang['UAM_confirmmail_custom2'] = 'Text of the confirmation page - Confirmation rejected';
    83 // --------- End: New or revised $lang ---- from version 2.15.0
    84 
    85 
    86 // --------- Starting below: New or revised $lang ---- from version 2.15.2
    87 $lang['UAM_casenTitle_d'] = 'Di default, Piwigo è sensibile alle minuscole e maiuscole e vengono considerate come diverse lettere nei pseudo scelti dagli utenti al momento dell\'iscrizzione. E dunque &quot;Pippo&quot;, &quot;pippo&quot; e &quot;PIPPO&quot; possono essere 3 diversi utenti.<br><br>
    88 L\'attivazione di questa opzione permette di considerare &quot;Pippo&quot;, &quot;pippo&quot;, &quot;PIPPO&quot;, ... come un\'solo utente. Se &quot;pippo&quot; esiste già, creare un nuovo pseudo &quot;Pippo&quot; risulterà impossibile.<br><br>
    89 <b style=&quot;color: red&quot;>Attenzione: questa opzione non ha alcun effetto sui pseudo creati prima della sua attivazione.</b>';
    90 // --------- End: New or revised $lang ---- from version 2.15.2
    9169
    9270
     
    153131
    154132
    155 // --------- Starting below: New or revised $lang ---- from version 2.15.7
    156 /*TODO*/$lang['UAM_GTAutoTitle'] = 'Gestion automatique des utilisateurs fantomes';
    157 /*TODO*/$lang['UAM_GTAutoTitle_d'] = 'Cette option permet d\'appliquer des règles de gestion automatisée des visiteurs fantômes. Lorsque ce mode est actif, on partira du principe qu\'un visiteur ayant atteind la limite maximale entre deux visites et ayant déjà été notifié par mail est considéré comme expiré.';
    158 /*TODO*/$lang['UAM_GTAutoDelTitle'] = 'Suppression automatique des comptes expirés';
    159 /*TODO*/$lang['UAM_GTAutoDelTitle_d'] = 'Supprime automatiquement le compte d\'un utilisateur lorsque celui-ci est expiré. La suppression survient lors de la connexion de l\'utilisateur qui est alors redirigé vers une page annonçant que sont compte a été détruit. Un texte personnalisé peut être saisi dans le champ ci-dessous.<br>
    160 Ce 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.<br><br>
    161 Note : Lorsque cette option est active, les autres règles automatiques ne sont pas accessibles.';
    162 /*TODO*/$lang['UAM_GTAutoGpTitle'] = 'Changement automatique de groupe / statut';
    163 /*TODO*/$lang['UAM_GTAutoGpTitle_d'] = 'Changement automatique de groupe / statut';
    164 /*TODO*/$lang['UAM_GTAutoMailTitle'] = 'Emailing automatique des comptes expirés';
    165 /*TODO*/$lang['UAM_GTAutoMailTitle_d'] = 'Emailing automatique des comptes expirés';
    166 // --------- End: New or revised $lang ---- from version 2.15.7
    167 
    168 
    169133// --------- Starting below: New or revised $lang ---- from version 2.16.0
     134$lang['UAM_confirmmail_custom1'] = 'Testo della pagina di conferma - Conferma accettati';
     135$lang['UAM_confirmmail_custom2'] = 'Testo della pagina di conferma - Conferma respinto';
     136/* TODO */$lang['UAM_miscTitle_d'] = '
     137- Automatic or manual management of ghosts users<br>
     138- Followed registered users<br>
     139- Nickname mandatory for guests comments<br>
     140...
     141';
     142/* 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>
     143- 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>
     144- 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>
     145<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>';
    170146$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>
    171147Esempi :<br>
     
    190166/* 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).<br><br>
    191167Per utilizzare più lingue, è possibile utilizzare i tag del plugin Extended Description, se esso è attivo.';
     168/* TODO */$lang['UAM_GTAutoTitle'] = 'Automatic management of ghosts users';
     169/* TODO */$lang['UAM_GTAutoTitle_d'] = 'This option allows to apply rules for automated management of ghosts users.
     170<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).
     171<br><br>The triggering of these automation is achieved when connecting users (any user!) to the gallery.';
     172/* TODO */$lang['UAM_GTAutoDelTitle'] = 'Custom message on deleted account';
     173/* 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.<br><br>
     174Custom 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.';
     175/* TODO */$lang['UAM_GTAutoGpTitle'] = 'Automatic change of group / status';
     176/* 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>
     177<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.';
     178/* TODO */$lang['UAM_GTAutoMailTitle'] = 'Automatically sending an email when changing group / status';
     179/* 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.
     180<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>
     181<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. ;-)
     182<br><br>To use multiple languages, you can use the Extended description plugin\'s tags if it is active.
     183<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>';
     184/* TODO */$lang['UAM_AdminValidationMail'] = 'Notification of manual registration validation';
     185/* 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.<br><br>
     186To use multiple languages, you can use the Extended description plugin\'s tags if it is active.';
    192187// --------- End: New or revised $lang ---- from version 2.16.0
    193188?>
  • extensions/NBC_UserAdvManager/branches/2.16/language/it_IT/plugin.lang.php

    r8088 r8095  
    2424/* Errors and Warnings */
    2525$lang['UAM_audit_ok'] = 'Audit OK';
    26 $lang['Err_audit_no_casse'] = '<b>Questi conti sono identici (escluso maiuscola/minuscola):</b> ';
    2726$lang['Err_audit_username_char'] = '<b>Questo conto utente utilizza uno o più caratteri vietati:</b> ';
    2827$lang['Err_audit_email_forbidden'] = '<b>Questo conto utente usa un dominio d\'Email proibito:</b> ';
     
    278277$lang['UAM_GTAutoDel'] = 'Cancellazione automatica dei conti';
    279278$lang['UAM_GTAutoGp'] = 'Cambiamento automatico del gruppo / statuto';
    280 $lang['UAM_GTAutoDel_false'] = ' Disattivare (di default)';
    281 $lang['UAM_GTAutoDel_true'] = ' Attivare';
    282279$lang['UAM_GTAutoMail'] = 'Emailing di rilancio automatico';
    283280$lang['UAM_GTAutoMail_false'] = ' Disattivare (di default)';
     
    289286Per garantire la coerenza, l\'opzione "Email automatica su cambiamento del gruppo / statuto" è stata automaticamente riposizionata in "disattivato".<br><br>';
    290287$lang['Demotion of %s'] = 'Retrocessione di %s';
     288/* TODO */$lang['UAM_AdminValidationMail_Text'] = 'Notification of manual registration validation';
     289/* TODO */$lang['Validation of %s'] = 'Validation of %s';
    291290// --------- End: New or revised $lang ---- from version 2.16.0
    292291?>
  • extensions/NBC_UserAdvManager/branches/2.16/language/lv_LV/plugin.lang.php

    r8088 r8095  
    2424/* Errors and Warnings */
    2525$lang['UAM_audit_ok'] = 'Pārbaude OK';
    26 $lang['Err_audit_no_casse'] = '<b>Šie konti ir identiski šinī gadījumā :</b> ';
    2726$lang['Err_audit_username_char'] = '<b>Šinī kontā izmantotas neatļautas rakstzīmes :</b> ';
    2827$lang['Err_audit_email_forbidden'] = '<b>Šinī kontā izmanots neatļauts e-pasta pakalpojuma sniedzējs :</b> ';
     
    269268$lang['UAM_RedirToProfile_true'] = ' Iespējot';
    270269// --------- End: New or revised $lang ---- from version 2.15.4
     270
     271
     272// --------- Starting below: New or revised $lang ---- from version 2.16.0
     273/* TODO */$lang['UAM_Expired_Group'] = '<b>Group</b> for user\'s registration has expired<br>';
     274/* TODO */$lang['UAM_Expired_Status'] = '<b>Status</b> for user\'s registration has expired<br>';
     275/* TODO */$lang['UAM_GTAuto'] = 'Automatic management of ghosts users';
     276/* TODO */$lang['UAM_GTAuto_false'] = ' Disable (default)';
     277/* TODO */$lang['UAM_GTAuto_true'] = ' Enable';
     278/* TODO */$lang['UAM_GTAutoDel'] = 'Automatic deletion of accounts';
     279/* TODO */$lang['UAM_GTAutoGp'] = 'Automatic change of group / status';
     280/* TODO */$lang['UAM_GTAutoMail'] = 'Automatically sending an email when changing group / status';
     281/* TODO */$lang['UAM_GTAutoMail_false'] = ' Disable (default)';
     282/* TODO */$lang['UAM_GTAutoMail_true'] = ' Enable';
     283/* TODO */$lang['Deleted_Account_Redirection_Page'] = 'Access denied - Account destroyed!';
     284/* TODO */$lang['title_redir_page'] = 'Access denied for having an account destroyed!';
     285/* TODO */$lang['Error_GTAutoMail_cannot_be_set_without_ConfirmMail'] = 'Consistency error in the configuration chosen:<br><br>
     286"Setting the followed registrations 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>
     287To ensure consistency, the option "Automatically sending an email when changing group / status" was automatically repositioned "disabled".<br><br>';
     288/* TODO */$lang['Demotion of %s'] = 'Demotion of %s';
     289/* TODO */$lang['UAM_AdminValidationMail_Text'] = 'Notification of manual registration validation';
     290/* TODO */$lang['Validation of %s'] = 'Validation of %s';
     291// --------- End: New or revised $lang ---- from version 2.16.0
    271292?>
  • extensions/NBC_UserAdvManager/branches/2.16/maintain.inc.php

    r8088 r8095  
    2626Best regards,
    2727
    28 The admin of the gallery.','false','false','false','false','false','false','Sorry, your account has been deleted due to a too long time passed since your last visit.','Sorry, your account has been deprecated due to a too long time passed since your last visit. Please, use the following link to revalidate your account.',-1,-1);
     28The admin of the gallery.','false','false','false','false','false','Sorry, your account has been deleted due to a too long time passed since your last visit.','Sorry, your account has been deprecated due to a too long time passed since your last visit. Please, use the following link to revalidate your account.',-1,-1,'Thank you to have registered the gallery. Your account has been manually validated by admin. You can now visit all the gallery for free !');
    2929
    3030  $q = '
Note: See TracChangeset for help on using the changeset viewer.