Changeset 9161


Ignore:
Timestamp:
Feb 10, 2011, 10:13:30 PM (13 years ago)
Author:
Eric
Message:

r9160 merged from trunk to branch 2.20

Location:
extensions/NBC_UserAdvManager/branches/2.20
Files:
14 edited

Legend:

Unmodified
Added
Removed
  • extensions/NBC_UserAdvManager/branches/2.20/ConfirmMail.php

    r7277 r9161  
    2929  $conf_UAM = unserialize($conf['UserAdvManager']);
    3030
     31  $query = '
     32SELECT '.USERS_TABLE.'.username
     33FROM '.USERS_TABLE.'
     34WHERE ('.USERS_TABLE.'.id ='.$userid.')
     35;';
     36  $result = pwg_db_fetch_assoc(pwg_query($query));
     37
    3138  if (VerifyConfirmMail($key))
    3239  {
     
    5764    }
    5865
    59     if (function_exists('get_user_language_desc'))
     66    if (isset($conf_UAM_ConfirmMail[5]) and $conf_UAM_ConfirmMail[5] <> '')
    6067    {
    61       $custom_text = get_user_language_desc($conf_UAM_ConfirmMail[5]);
     68      // Management of Extension flags ([username], [mygallery])
     69      $patterns[] = '#\[username\]#i';
     70      $replacements[] = $username;
     71      $patterns[] = '#\[mygallery\]#i';
     72      $replacements[] = $conf['gallery_title'];
     73   
     74      if (function_exists('get_user_language_desc'))
     75      {
     76        $custom_text = get_user_language_desc(preg_replace($patterns, $replacements, $conf_UAM_ConfirmMail[5]));
     77      }
     78      else $custom_text = l10n(preg_replace($patterns, $replacements, $conf_UAM_ConfirmMail[5]));
    6279    }
    63     else $custom_text = l10n($conf_UAM_ConfirmMail[5]);
    64 
     80   
    6581    $redirect = true;
    6682   
     
    7793    $status = false;
    7894    $redirect = false;
    79     if (function_exists('get_user_language_desc'))
     95   
     96    if (isset($conf_UAM_ConfirmMail[6]) and $conf_UAM_ConfirmMail[6] <> '')
    8097    {
    81       $custom_text = get_user_language_desc($conf_UAM_ConfirmMail[6]);
     98      // Management of Extension flags ([username], [mygallery])
     99      $patterns[] = '#\[username\]#i';
     100      $replacements[] = $username;
     101      $patterns[] = '#\[mygallery\]#i';
     102      $replacements[] = $conf['gallery_title'];
     103   
     104      if (function_exists('get_user_language_desc'))
     105      {
     106        $custom_text = get_user_language_desc(preg_replace($patterns, $replacements, $conf_UAM_ConfirmMail[6]));
     107      }
     108      else $custom_text = l10n(preg_replace($patterns, $replacements, $conf_UAM_ConfirmMail[6]));
    82109    }
    83     else $custom_text = l10n($conf_UAM_ConfirmMail[6]);
    84110   
    85111    $template->assign(
  • extensions/NBC_UserAdvManager/branches/2.20/changelog.txt.php

    r9154 r9161  
    223223**************************************************************
    224224-- 2.20.0 : Compliance with Piwigo 2.2
    225             Bug 1666 fixed - Customizing "lost password" email
     225            Bug 1666 fixed - New feature : Customizing "lost password" email
     226            Bug 2045 fixed - New feature : Special tags insertion in text fields. The tags actually available are [username] (insert current user username) and [mygallery] (insert current gallery title).
    226227            Bug 2072 fixed - Remove sort on "difference in days" in user tracking tab
    227228            Bug 2140 fixed - English sentence corrections
    228             Bug 2186 fixed - JQuery accordeon menu when no users are listed in UAM tables
     229            Bug 2186 fixed - JQuery accordion menu when no users are listed in UAM tables
    229230
    230231*/
  • extensions/NBC_UserAdvManager/branches/2.20/include/functions.inc.php

    r9136 r9161  
    658658  if (isset($conf_UAM[29]) and $conf_UAM[29] == 'true')
    659659  {
    660     $infos = $conf_UAM[30]."\n"."\n".$infos;
     660    // Management of Extension flags ([username], [mygallery])
     661    $patterns[] = '#\[username\]#i';
     662    $replacements[] = stripslashes($row['username']);
     663    $patterns[] = '#\[mygallery\]#i';
     664    $replacements[] = $conf['gallery_title'];
     665   
     666    $infos = preg_replace($patterns, $replacements, $conf_UAM[30])."\n"."\n".$infos;
    661667  }
    662668  return $infos;
     
    740746      if (isset($conf_UAM[9]) and $conf_UAM[9] <> '')
    741747      {
     748        // Management of Extension flags ([username], [mygallery])
     749        $patterns[] = '#\[username\]#i';
     750        $replacements[] = $username;
     751        $patterns[] = '#\[mygallery\]#i';
     752        $replacements[] = $conf['gallery_title'];
     753   
    742754        if (function_exists('get_user_language_desc'))
    743755        {
    744           $infos1_perso = get_user_language_desc($conf_UAM[9])."\n\n";
     756          $infos1_perso = get_user_language_desc(preg_replace($patterns, $replacements, $conf_UAM[9]))."\n\n";
    745757        }
    746         else $infos1_perso = l10n($conf_UAM[9])."\n\n";
     758        else $infos1_perso = l10n(preg_replace($patterns, $replacements, $conf_UAM[9]))."\n\n";
    747759      }
    748760     
     
    784796    if (isset($conf_UAM[10]) and $conf_UAM[10] <> '')
    785797    {
     798      // Management of Extension flags ([username], [mygallery])
     799      $patterns[] = '#\[username\]#i';
     800      $replacements[] = $username;
     801      $patterns[] = '#\[mygallery\]#i';
     802      $replacements[] = $conf['gallery_title'];
     803     
    786804      if (function_exists('get_user_language_desc'))
    787805      {
    788         $infos2_perso = get_user_language_desc($conf_UAM[10])."\n\n";
     806        $infos2_perso = get_user_language_desc(preg_replace($patterns, $replacements, $conf_UAM[10]))."\n\n";
    789807      }
    790       else $infos2_perso = l10n($conf_UAM[10])."\n\n";
     808      else $infos2_perso = l10n(preg_replace($patterns, $replacements, $conf_UAM[10]))."\n\n";
    791809    }
    792810  }
     
    874892      if (isset($conf_UAM_ConfirmMail[2]) and $conf_UAM_ConfirmMail[2] <> '' and isset($conf_UAM_ConfirmMail[3]) and $conf_UAM_ConfirmMail[3] == 'true' and $confirm)
    875893      {
     894        // Management of Extension flags ([username], [mygallery])
     895        $patterns[] = '#\[username\]#i';
     896        $replacements[] = $username;
     897        $patterns[] = '#\[mygallery\]#i';
     898        $replacements[] = $conf['gallery_title'];
     899
    876900        if (function_exists('get_user_language_desc'))
    877901        {
    878           $infos1 = get_user_language_desc($conf_UAM_ConfirmMail[2])."\n\n";
     902          $infos1 = get_user_language_desc(preg_replace($patterns, $replacements, $conf_UAM_ConfirmMail[2]))."\n\n";
    879903        }
    880                                 else $infos1 = l10n($conf_UAM_ConfirmMail[2])."\n\n";
     904                                else $infos1 = l10n(preg_replace($patterns, $replacements, $conf_UAM_ConfirmMail[2]))."\n\n";
    881905
    882906        $infos2 = array
     
    900924      $subject = '['.$conf['gallery_title'].'] '.l10n_args(get_l10n_args('Reminder_without_key_of_%s',$username));
    901925     
    902       if (isset($conf_UAM_ConfirmMail[2]) and $conf_UAM_ConfirmMail[2] <> '' and isset($conf_UAM_ConfirmMail[3]) and $conf_UAM_ConfirmMail[3] == 'true' and !$confirm)
     926      if (isset($conf_UAM_ConfirmMail[4]) and $conf_UAM_ConfirmMail[4] <> '' and isset($conf_UAM_ConfirmMail[3]) and $conf_UAM_ConfirmMail[3] == 'true' and !$confirm)
    903927      {
     928        // Management of Extension flags ([username], [mygallery])
     929        $patterns[] = '#\[username\]#i';
     930        $replacements[] = $username;
     931        $patterns[] = '#\[mygallery\]#i';
     932        $replacements[] = $conf['gallery_title'];
     933       
    904934        if (function_exists('get_user_language_desc'))
    905935        {
    906           $infos1 = get_user_language_desc($conf_UAM_ConfirmMail[2])."\n\n";
     936          $infos1 = get_user_language_desc(preg_replace($patterns, $replacements, $conf_UAM_ConfirmMail[4]))."\n\n";
    907937        }
    908         else $infos1 = l10n($conf_UAM_ConfirmMail[2])."\n\n";
     938        else $infos1 = l10n(preg_replace($patterns, $replacements, $conf_UAM_ConfirmMail[4]))."\n\n";
    909939      }
    910940     
     
    9731003  if (isset($conf_UAM[18]) and $conf_UAM[18] <> '' and isset($conf_UAM[16]) and $conf_UAM[16] == 'true')
    9741004  {
     1005    // Management of Extension flags ([username], [mygallery])
     1006    $patterns[] = '#\[username\]#i';
     1007    $replacements[] = $username;
     1008    $patterns[] = '#\[mygallery\]#i';
     1009    $replacements[] = $conf['gallery_title'];
     1010
    9751011    if (function_exists('get_user_language_desc'))
    9761012    {
    977       $infos1 = get_user_language_desc($conf_UAM[18])."\n\n";
     1013      $infos1 = get_user_language_desc(preg_replace($patterns, $replacements, $conf_UAM[18]))."\n\n";
    9781014    }
    9791015    else
    9801016    {
    981       $infos1 = l10n($conf_UAM[18])."\n\n";
     1017      $infos1 = l10n(preg_replace($patterns, $replacements, $conf_UAM[18]))."\n\n";
    9821018    }
    9831019
     
    10471083  if (isset($conf_UAM[25]) and $conf_UAM[25] <> '')
    10481084  {
     1085    // Management of Extension flags ([username], [mygallery])
     1086    $patterns[] = '#\[username\]#i';
     1087    $replacements[] = $username;
     1088    $patterns[] = '#\[mygallery\]#i';
     1089    $replacements[] = $conf['gallery_title'];
     1090
    10491091    if (function_exists('get_user_language_desc'))
    10501092    {
    1051       $custom_txt = get_user_language_desc($conf_UAM[25])."\n\n";
    1052     }
    1053     else $custom_txt = l10n($conf_UAM[25])."\n\n";
     1093      $custom_txt = get_user_language_desc(preg_replace($patterns, $replacements, $conf_UAM[25]))."\n\n";
     1094    }
     1095    else $custom_txt = l10n(preg_replace($patterns, $replacements, $conf_UAM[25]))."\n\n";
    10541096  }
    10551097
     
    11381180  if (isset($conf_UAM[28]) and $conf_UAM[28] <> '')
    11391181  {
     1182    // Management of Extension flags ([username], [mygallery])
     1183    $patterns[] = '#\[username\]#i';
     1184    $replacements[] = $username;
     1185    $patterns[] = '#\[mygallery\]#i';
     1186    $replacements[] = $conf['gallery_title'];
     1187
    11401188    if (function_exists('get_user_language_desc'))
    11411189    {
    1142       $custom_txt = get_user_language_desc($conf_UAM[28])."\n\n";
    1143     }
    1144     else $custom_txt = l10n($conf_UAM[28])."\n\n";
     1190      $custom_txt = get_user_language_desc(preg_replace($patterns, $replacements, $conf_UAM[28]))."\n\n";
     1191    }
     1192    else $custom_txt = l10n(preg_replace($patterns, $replacements, $conf_UAM[28]))."\n\n";
    11451193  }
    11461194
  • extensions/NBC_UserAdvManager/branches/2.20/language/de_DE/help/plugin.lang.php

    r8094 r9161  
    151151@hotmail.com -> Ausnahme-Adressen *@hotmail.com<br>
    152152@hotmail -> ohne alle Adressen *@hotmail *';
    153 $lang['UAM_infotxtTitle_d'] = 'Geben Sie den einleitenden Text, den Sie in der Informations-E-Mail angezeigt.<br><br>
    154 Um mehrere Sprachen zu benutzen, können Sie die Extended description Plugin-Tags verwenden, wenn er aktiv ist.';
    155 $lang['UAM_confirmtxtTitle_d'] = 'Geben Sie den einleitenden Text, den Sie in der E-Mail-Bestätigung der Anmeldung erscheinen.<br><br>
    156 Um mehrere Sprachen zu benutzen, können Sie die Extended description Plugin-Tags verwenden, wenn er aktiv ist.';
    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>
    158 Nach der Installation des Plugin ist ein Standard-Text als Beispiel vorangehen.<br>
    159 Dieses Feld ist kompatibel mit den FCK-Editor und, um mehrere Sprachen zu benutzen, können Sie die Extended description Plugin-Tags verwenden, wenn er aktiv ist.';
    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>
    161 Nach der Installation des Plugin ist ein Standard-Text als Beispiel vorangehen.<br>
    162 Dieses Feld ist kompatibel mit den FCK-Editor und, um mehrere Sprachen zu benutzen, können Sie die Extended description Plugin-Tags verwenden, wenn er aktiv ist.';
    163 $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>
    164 Wenn 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>
    165 Um mehrere Sprachen zu benutzen, können Sie die Extended description Plugin-Tags verwenden, wenn er aktiv ist.';
    166 $lang['UAM_remailtxt2Title_d'] = 'Geben Sie den einleitenden Text, den Sie in der Erinnerung, ohne eine Bestätigung per E-Mail-Taste erscheinen regeneriert.<br><br>
    167 Wenn links leer ist, wird die E-Mail-Erinnerung leer sein. Es wird daher dringend empfohlen, ein wenig erläuternden Text zu nehmen. (NB: Der Text Fertigpen mit der Installation des Plugins ist als Beispiel vorgesehen)<br><br>
    168 Um mehrere Sprachen zu benutzen, können Sie die Extended description Plugin-Tags verwenden, wenn er aktiv ist.';
    169 $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>
    170 Um mehrere Sprachen zu benutzen, können Sie die Extended description Plugin-Tags verwenden, wenn er aktiv ist.';
    171153$lang['UAM_GTAutoTitle'] = 'Automatische Verwaltung von Geist Benutzern';
    172154$lang['UAM_GTAutoTitle_d'] = 'Diese Option ermöglicht es, Regeln für die automatisierte Verwaltung von Geistern Benutzer anwenden.
     
    186168<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>';
    187169$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>
    189 Um mehrere Sprachen zu benutzen, können Sie die Extended description Plugin-Tags verwenden, wenn er aktiv ist.';
    190170// --------- End: New or revised $lang ---- from version 2.16.0
     171
     172
     173// --------- Starting below: New or revised $lang ---- from version 2.20.0
     174/*TODO*/$lang['UAM_gttextTitle_d'] = 'Geben Sie den gewünschten Text in die E-Mail-Erinnerung angezeigt, die Benutzer rechtzeitig, um wieder zur Galerie zu besuchen (Anm.: Der Text Fertigpen mit der Installation des Plugins ist als Beispiel vorgesehen).
     175<br><br>
     176Further customize the content with special inserted tags : Use <b style=&quot;color: red;&quot;>[username]</b> to automatically insert the name of the destination user of the email. Use <b style=&quot;color: red;&quot;>[mygallery]</b> to insert the title of your gallery.
     177<br><br>
     178Um mehrere Sprachen zu benutzen, können Sie die Extended description Plugin-Tags verwenden, wenn er aktiv ist.';
     179/*TODO*/$lang['UAM_infotxtTitle_d'] = 'Geben Sie den einleitenden Text, den Sie in der Informations-E-Mail angezeigt.
     180<br><br>
     181Further customize the content with special inserted tags : Use <b style=&quot;color: red;&quot;>[username]</b> to automatically insert the name of the destination user of the email. Use <b style=&quot;color: red;&quot;>[mygallery]</b> to insert the title of your gallery.
     182<br><br>
     183Um mehrere Sprachen zu benutzen, können Sie die Extended description Plugin-Tags verwenden, wenn er aktiv ist.';
     184/*TODO*/$lang['UAM_confirmtxtTitle_d'] = 'Geben Sie den einleitenden Text, den Sie in der E-Mail-Bestätigung der Anmeldung erscheinen.
     185<br><br>
     186Further customize the content with special inserted tags : Use <b style=&quot;color: red;&quot;>[username]</b> to automatically insert the name of the destination user of the email. Use <b style=&quot;color: red;&quot;>[mygallery]</b> to insert the title of your gallery.
     187<br><br>
     188Um mehrere Sprachen zu benutzen, können Sie die Extended description Plugin-Tags verwenden, wenn er aktiv ist.';
     189/*TODO*/$lang['UAM_AdminValidationMail_d'] = 'Wenn ein Administrator oder Webmaster der Galerie manuell gültige Registrierung anhängig ist, ist eine Benachrichtigungs-Email automatisch an den Benutzer gesendet. Geben Sie hier den Text ein, in dieser E-Mail angezeigt.
     190<br><br>
     191Further customize the content with special inserted tags : Use <b style=&quot;color: red;&quot;>[username]</b> to automatically insert the name of the destination user of the email. Use <b style=&quot;color: red;&quot;>[mygallery]</b> to insert the title of your gallery.
     192<br><br>
     193Um mehrere Sprachen zu benutzen, können Sie die Extended description Plugin-Tags verwenden, wenn er aktiv ist.';
     194/*TODO*/$lang['UAM_confirmmail_custom1_d'] = 'Wenn die Option &quot;Bestätigung der Anmeldung&quot; aktiv ist, können Sie in diesem zu <b><u>Akzeptanz Text anpassen</u></b> auf der Anmeldebestätigung Seite angezeigt, wenn Benutzer auf den Bestätigungs-Link, die empfangen wurde per E-Mail.
     195<br><br>
     196Nach der Installation des Plugin ist ein Standard-Text als Beispiel vorangehen.
     197<br><br>
     198Further customize the content with special inserted tags : Use <b style=&quot;color: red;&quot;>[username]</b> to automatically insert the name of the destination user of the email. Use <b style=&quot;color: red;&quot;>[mygallery]</b> to insert the title of your gallery.
     199<br><br>
     200Dieses 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.';
     201/*TODO*/$lang['UAM_confirmmail_custom2_d'] = 'Wenn die Option &quot;Bestätigung der Anmeldung&quot; aktiv ist, können Sie in diesem zu <b><u>rejectance Text anpassen</u></b> auf der Anmeldebestätigung Seite angezeigt, wenn Benutzer auf den Bestätigungs-Link, die empfangen wurde per E-Mail.
     202<br><br>
     203Nach der Installation des Plugin ist ein Standard-Text als Beispiel vorangehen.
     204<br><br>
     205Further customize the content with special inserted tags : Use <b style=&quot;color: red;&quot;>[username]</b> to automatically insert the name of the destination user of the email. Use <b style=&quot;color: red;&quot;>[mygallery]</b> to insert the title of your gallery.
     206<br><br>
     207Dieses 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.';
     208/*TODO*/$lang['UAM_remailtxt1Title_d'] = 'Geben Sie den einleitenden Text, den Sie in der E-Mail-Erinnerung angezeigt wird, zusätzlich zu der Prüfschlüssel regeneriert.
     209<br><br>
     210Wenn 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).
     211<br><br>
     212Further customize the content with special inserted tags : Use <b style=&quot;color: red;&quot;>[username]</b> to automatically insert the name of the destination user of the email. Use <b style=&quot;color: red;&quot;>[mygallery]</b> to insert the title of your gallery.
     213<br><br>
     214Um mehrere Sprachen zu benutzen, können Sie die Extended description Plugin-Tags verwenden, wenn er aktiv ist.';
     215/*TODO*/$lang['UAM_remailtxt2Title_d'] = 'Geben Sie den einleitenden Text, den Sie in der Erinnerung, ohne eine Bestätigung per E-Mail-Taste erscheinen regeneriert.
     216<br><br>
     217Wenn links leer ist, wird die E-Mail-Erinnerung leer sein. Es wird daher dringend empfohlen, ein wenig erläuternden Text zu nehmen. (NB: Der Text Fertigpen mit der Installation des Plugins ist als Beispiel vorgesehen).
     218<br><br>
     219Further customize the content with special inserted tags : Use <b style=&quot;color: red;&quot;>[username]</b> to automatically insert the name of the destination user of the email. Use <b style=&quot;color: red;&quot;>[mygallery]</b> to insert the title of your gallery.
     220<br><br>
     221Um mehrere Sprachen zu benutzen, können Sie die Extended description Plugin-Tags verwenden, wenn er aktiv ist.';
     222/*TODO*/$lang['UAM_CustomPasswRetrTitle'] = 'Customize lost password email content';
     223/*TODO*/$lang['UAM_CustomPasswRetrTitle_d'] = 'By default, when a user has lost his password and selects the option of recovery, he receives an email containing only his username and his new password.
     224<br><br>
     225Here, you can add text of your choice to be inserted <b><u>before</u></b> the standard information.
     226<br><br>
     227Further customize the content with special inserted tags : Use <b style=&quot;color: red;&quot;>[username]</b> to automatically insert the name of the destination user of the email. Use <b style=&quot;color: red;&quot;>[mygallery]</b> to insert the title of your gallery.
     228<br><br>
     229To use multiple languages, you can use the Extended description plugin\'s tags if it is active.';
     230// --------- End: New or revised $lang ---- from version 2.20.0
    191231?>
  • extensions/NBC_UserAdvManager/branches/2.20/language/de_DE/plugin.lang.php

    r8094 r9161  
    293293$lang['Validation of %s'] = 'Validierung von %s';
    294294// --------- End: New or revised $lang ---- from version 2.16.0
     295
     296// --------- Starting below: New or revised $lang ---- from version 2.20.0
     297/*TODO*/$lang['UAM_CustomPasswRetr'] = 'Customize lost password email content';
     298$lang['UAM_CustomPasswRetr_false'] = ' Deaktivieren (Standard)';
     299$lang['UAM_CustomPasswRetr_true'] = ' Aktivieren';
     300// --------- End: New or revised $lang ---- from version 2.20.0
    295301?>
  • extensions/NBC_UserAdvManager/branches/2.20/language/en_UK/help/plugin.lang.php

    r9091 r9161  
    156156@hotmail.com -> excluding addresses *@hotmail.com<br>
    157157@hotmail -> excluding all addresses *@hotmail*';
    158 $lang['UAM_infotxtTitle_d'] = 'Enter the introductory text that you want to appear in the information email.<br><br>
    159 To use multiple languages, you can use the Extended description plugin\'s tags if it is active.';
    160 $lang['UAM_confirmtxtTitle_d'] = 'Enter the introductory text that you want to appear in the email confirmation of registration.<br><br>
    161 To use multiple languages, you can use the Extended description plugin\'s tags if it is active.';
    162 $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>
    163 After installing the plugin, a standard text is set as an example.<br>
    164 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.';
    165 $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>
    166 After installing the plugin, a standard text is set as an example.<br>
    167 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.';
    168 $lang['UAM_remailtxt1Title_d'] = 'Enter the introductory text that you want to appear in the reminder email, in addition to the validation key regenerated.<br><br>
    169 If left blank, the mail reminder will include only the validation link. It is therefore strongly advised to take a little explanatory text. (NB: The text pre-filled with the installation of the plugin is provided as an example)<br><br>
    170 To use multiple languages, you can use the Extended description plugin\'s tags if it is active.';
    171 $lang['UAM_remailtxt2Title_d'] = 'Enter the introductory text that you want to appear in the reminder email without a validation key regenerated.<br><br>
    172 If left blank, the mail reminder will be empty. It is therefore strongly advised to take a little explanatory text. (NB: The text pre-filled with the installation of the plugin is provided as an example)<br><br>
    173 To use multiple languages, you can use the Extended description plugin\'s tags if it is active.';
    174 $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>
    175 To use multiple languages, you can use the Extended description plugin\'s tags if it is active.';
    176158$lang['UAM_GTAutoTitle'] = 'Automatic management of ghosts users';
    177159$lang['UAM_GTAutoTitle_d'] = 'This option allows to apply rules for automated management of ghosts users.
     
    191173<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>';
    192174$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>
    194 To use multiple languages, you can use the Extended description plugin\'s tags if it is active.';
    195175// --------- End: New or revised $lang ---- from version 2.16.0
     176
     177
     178// --------- Starting below: New or revised $lang ---- from version 2.20.0
     179$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).
     180<br><br>
     181Further customize the content with special inserted tags : Use <b style=&quot;color: red;&quot;>[username]</b> to automatically insert the name of the destination user of the email. Use <b style=&quot;color: red;&quot;>[mygallery]</b> to insert the title of your gallery.
     182<br><br>
     183To use multiple languages, you can use the Extended description plugin\'s tags if it is active.';
     184$lang['UAM_infotxtTitle_d'] = 'Enter the introductory text that you want to appear in the information email.
     185<br><br>
     186Further customize the content with special inserted tags : Use <b style=&quot;color: red;&quot;>[username]</b> to automatically insert the name of the destination user of the email. Use <b style=&quot;color: red;&quot;>[mygallery]</b> to insert the title of your gallery.
     187<br><br>
     188To use multiple languages, you can use the Extended description plugin\'s tags if it is active.';
     189$lang['UAM_confirmtxtTitle_d'] = 'Enter the introductory text that you want to appear in the email confirmation of registration.
     190<br><br>
     191Further customize the content with special inserted tags : Use <b style=&quot;color: red;&quot;>[username]</b> to automatically insert the name of the destination user of the email. Use <b style=&quot;color: red;&quot;>[mygallery]</b> to insert the title of your gallery.
     192<br><br>
     193To use multiple languages, you can use the Extended description plugin\'s tags if it is active.';
     194$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.
     195<br><br>
     196Further customize the content with special inserted tags : Use <b style=&quot;color: red;&quot;>[username]</b> to automatically insert the name of the destination user of the email. Use <b style=&quot;color: red;&quot;>[mygallery]</b> to insert the title of your gallery.
     197<br><br>
     198To use multiple languages, you can use the Extended description plugin\'s tags if it is active.';
     199$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.
     200<br><br>
     201After installing the plugin, a standard text is set as an example.
     202<br><br>
     203Further customize the content with special inserted tags : Use <b style=&quot;color: red;&quot;>[username]</b> to automatically insert the related user name. Use <b style=&quot;color: red;&quot;>[mygallery]</b> to insert the title of your gallery.
     204<br><br>
     205This 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.';
     206$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.
     207<br><br>
     208After installing the plugin, a standard text is set as an example.
     209<br><br>
     210Further customize the content with special inserted tags : Use <b style=&quot;color: red;&quot;>[username]</b> to automatically insert the related user name. Use <b style=&quot;color: red;&quot;>[mygallery]</b> to insert the title of your gallery.
     211<br><br>
     212This 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.';
     213$lang['UAM_remailtxt1Title_d'] = 'Enter the introductory text that you want to appear in the reminder email, in addition to the validation key regenerated.
     214<br><br>
     215If left blank, the mail reminder will include only the validation link. It is therefore strongly advised to take a little explanatory text. (NB: The text pre-filled with the installation of the plugin is provided as an example).
     216<br><br>
     217Further customize the content with special inserted tags : Use <b style=&quot;color: red;&quot;>[username]</b> to automatically insert the name of the destination user of the email. Use <b style=&quot;color: red;&quot;>[mygallery]</b> to insert the title of your gallery.
     218<br><br>
     219To use multiple languages, you can use the Extended description plugin\'s tags if it is active.';
     220$lang['UAM_remailtxt2Title_d'] = 'Enter the introductory text that you want to appear in the reminder email without a validation key regenerated.
     221<br><br>
     222If left blank, the mail reminder will be empty. It is therefore strongly advised to take a little explanatory text. (NB: The text pre-filled with the installation of the plugin is provided as an example).
     223<br><br>
     224Further customize the content with special inserted tags : Use <b style=&quot;color: red;&quot;>[username]</b> to automatically insert the name of the destination user of the email. Use <b style=&quot;color: red;&quot;>[mygallery]</b> to insert the title of your gallery.
     225<br><br>
     226To use multiple languages, you can use the Extended description plugin\'s tags if it is active.';
     227$lang['UAM_CustomPasswRetrTitle'] = 'Customize lost password email content';
     228$lang['UAM_CustomPasswRetrTitle_d'] = 'By default, when a user has lost his password and selects the option of recovery, he receives an email containing only his username and his new password.
     229<br><br>
     230Here, you can add text of your choice to be inserted <b><u>before</u></b> the standard information.
     231<br><br>
     232Further customize the content with special inserted tags : Use <b style=&quot;color: red;&quot;>[username]</b> to automatically insert the name of the destination user of the email. Use <b style=&quot;color: red;&quot;>[mygallery]</b> to insert the title of your gallery.
     233<br><br>
     234To use multiple languages, you can use the Extended description plugin\'s tags if it is active.';
     235// --------- End: New or revised $lang ---- from version 2.20.0
    196236?>
  • extensions/NBC_UserAdvManager/branches/2.20/language/en_UK/plugin.lang.php

    r9091 r9161  
    290290$lang['Validation of %s'] = 'Validation of %s';
    291291// --------- End: New or revised $lang ---- from version 2.16.0
     292
     293
     294// --------- Starting below: New or revised $lang ---- from version 2.20.0
     295$lang['UAM_CustomPasswRetr'] = 'Customize lost password email content';
     296$lang['UAM_CustomPasswRetr_false'] = ' Disable (default)';
     297$lang['UAM_CustomPasswRetr_true'] = ' Enable';
     298// --------- End: New or revised $lang ---- from version 2.20.0
    292299?>
  • extensions/NBC_UserAdvManager/branches/2.20/language/es_ES/help/plugin.lang.php

    r8094 r9161  
    152152@hotmail.com -> con exclusión de direcciones *@hotmail.com<br>
    153153@hotmail -> con exclusión de todas las direcciones de *@hotmail*';
    154 $lang['UAM_infotxtTitle_d'] = 'Introduzca el texto de introducción que desea ver en el correo electrónico de la información.<br><br>
    155 Para utilizar varios idiomas, puede utilizar las etiquetas para el plugin Extended description si está activo.';
    156 $lang['UAM_confirmtxtTitle_d'] = 'Introduzca el texto de introducción que desea que aparezca en el correo electrónico de confirmación de registro.<br><br>
    157 Para utilizar varios idiomas, puede utilizar las etiquetas para el plugin Extended description si está activo.';
    158 /*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>
    159 After installing the plugin, a standard text is set as an example.<br>
    160 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.';
    161 /*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>
    162 After installing the plugin, a standard text is set as an example.<br>
    163 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.';
    164 $lang['UAM_remailtxt1Title_d'] = 'Introduzca el texto de introducción que desea que aparezca en el recordatorio por correo electrónico, además de la clave de validación regenerada.<br><br>
    165 Si se deja en blanco, el aviso de correo electrónico sólo incluirá el enlace de validación. Por tanto, es muy recomendable tomar un pequeño texto explicativo. (Nota: El texto pre-llenado con la instalación del plugin se proporciona como un ejemplo)<br><br>
    166 Para utilizar varios idiomas, puede utilizar las etiquetas para el plugin Extended description si está activo.';
    167 $lang['UAM_remailtxt2Title_d'] = 'Introduzca el texto de introducción que desea que aparezca en el recordatorio por correo electrónico sin una clave de validación regenerada.<br><br>
    168 Si se deja en blanco, el aviso de correo electrónico estará vacío. Por lo tanto, es muy recomendable poner un pequeño texto explicativo. (Nota: El texto pre-llenado con la instalación del plugin se proporciona como un ejemplo)<br><br>
    169 Para utilizar varios idiomas, puede utilizar las etiquetas para el plugin Extended description si está activo.';
    170 $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>
    171 Para utilizar varios idiomas, puede utilizar las etiquetas para el plugin Extended description si está activo.';
    172154$lang['UAM_GTAutoTitle'] = 'Gestión automática de los Espíritus usuarios';
    173155/*TODO*/$lang['UAM_GTAutoTitle_d'] = 'This option allows to apply rules for automated management of ghosts users.
     
    187169<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>';
    188170$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>
     171// --------- End: New or revised $lang ---- from version 2.16.0
     172
     173
     174// --------- Starting below: New or revised $lang ---- from version 2.20.0
     175/*TODO*/$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).
     176<br><br>
     177Further customize the content with special inserted tags : Use <b style=&quot;color: red;&quot;>[username]</b> to automatically insert the name of the destination user of the email. Use <b style=&quot;color: red;&quot;>[mygallery]</b> to insert the title of your gallery.
     178<br><br>
     179Para utilizar varios idiomas, puede utilizar las etiquetas para el plugin Extended description si está activo.';
     180/*TODO*/$lang['UAM_infotxtTitle_d'] = 'Introduzca el texto de introducción que desea ver en el correo electrónico de la información.
     181<br><br>
     182Further customize the content with special inserted tags : Use <b style=&quot;color: red;&quot;>[username]</b> to automatically insert the name of the destination user of the email. Use <b style=&quot;color: red;&quot;>[mygallery]</b> to insert the title of your gallery.
     183<br><br>
     184Para utilizar varios idiomas, puede utilizar las etiquetas para el plugin Extended description si está activo.';
     185/*TODO*/$lang['UAM_confirmtxtTitle_d'] = 'Introduzca el texto de introducción que desea que aparezca en el correo electrónico de confirmación de registro.
     186<br><br>
     187Further customize the content with special inserted tags : Use <b style=&quot;color: red;&quot;>[username]</b> to automatically insert the name of the destination user of the email. Use <b style=&quot;color: red;&quot;>[mygallery]</b> to insert the title of your gallery.
     188<br><br>
     189Para utilizar varios idiomas, puede utilizar las etiquetas para el plugin Extended description si está activo.';
     190/*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.
     191<br><br>
     192Further customize the content with special inserted tags : Use <b style=&quot;color: red;&quot;>[username]</b> to automatically insert the name of the destination user of the email. Use <b style=&quot;color: red;&quot;>[mygallery]</b> to insert the title of your gallery.
     193<br><br>
    190194To use multiple languages, you can use the Extended description plugin\'s tags if it is active.';
    191 // --------- End: New or revised $lang ---- from version 2.16.0
     195/*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.
     196<br><br>
     197After installing the plugin, a standard text is set as an example.
     198<br><br>
     199Further customize the content with special inserted tags : Use <b style=&quot;color: red;&quot;>[username]</b> to automatically insert the name of the destination user of the email. Use <b style=&quot;color: red;&quot;>[mygallery]</b> to insert the title of your gallery.
     200<br><br>
     201This 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.';
     202/*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.
     203<br><br>
     204After installing the plugin, a standard text is set as an example.
     205<br><br>
     206Further customize the content with special inserted tags : Use <b style=&quot;color: red;&quot;>[username]</b> to automatically insert the name of the destination user of the email. Use <b style=&quot;color: red;&quot;>[mygallery]</b> to insert the title of your gallery.
     207<br><br>
     208This 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.';
     209/*TODO*/$lang['UAM_remailtxt1Title_d'] = 'Introduzca el texto de introducción que desea que aparezca en el recordatorio por correo electrónico, además de la clave de validación regenerada.
     210<br><br>
     211Si se deja en blanco, el aviso de correo electrónico sólo incluirá el enlace de validación. Por tanto, es muy recomendable tomar un pequeño texto explicativo. (Nota: El texto pre-llenado con la instalación del plugin se proporciona como un ejemplo).
     212<br><br>
     213Further customize the content with special inserted tags : Use <b style=&quot;color: red;&quot;>[username]</b> to automatically insert the name of the destination user of the email. Use <b style=&quot;color: red;&quot;>[mygallery]</b> to insert the title of your gallery.
     214<br><br>
     215Para utilizar varios idiomas, puede utilizar las etiquetas para el plugin Extended description si está activo.';
     216/*TODO*/$lang['UAM_remailtxt2Title_d'] = 'Introduzca el texto de introducción que desea que aparezca en el recordatorio por correo electrónico sin una clave de validación regenerada.
     217<br><br>
     218Si se deja en blanco, el aviso de correo electrónico estará vacío. Por lo tanto, es muy recomendable poner un pequeño texto explicativo. (Nota: El texto pre-llenado con la instalación del plugin se proporciona como un ejemplo).
     219<br><br>
     220Further customize the content with special inserted tags : Use <b style=&quot;color: red;&quot;>[username]</b> to automatically insert the name of the destination user of the email. Use <b style=&quot;color: red;&quot;>[mygallery]</b> to insert the title of your gallery.
     221<br><br>
     222Para utilizar varios idiomas, puede utilizar las etiquetas para el plugin Extended description si está activo.';
     223/*TODO*/$lang['UAM_CustomPasswRetrTitle'] = 'Customize lost password email content';
     224/*TODO*/$lang['UAM_CustomPasswRetrTitle_d'] = 'By default, when a user has lost his password and selects the option of recovery, he receives an email containing only his username and his new password.
     225<br><br>
     226Here, you can add text of your choice to be inserted <b><u>before</u></b> the standard information.
     227<br><br>
     228Further customize the content with special inserted tags : Use <b style=&quot;color: red;&quot;>[username]</b> to automatically insert the name of the destination user of the email. Use <b style=&quot;color: red;&quot;>[mygallery]</b> to insert the title of your gallery.
     229<br><br>
     230To use multiple languages, you can use the Extended description plugin\'s tags if it is active.';
     231// --------- End: New or revised $lang ---- from version 2.20.0
    192232?>
  • extensions/NBC_UserAdvManager/branches/2.20/language/es_ES/plugin.lang.php

    r8094 r9161  
    292292$lang['Validation of %s'] = 'Validación de %s';
    293293// --------- End: New or revised $lang ---- from version 2.16.0
     294
     295
     296// --------- Starting below: New or revised $lang ---- from version 2.20.0
     297/*TODO*/$lang['UAM_CustomPasswRetr'] = 'Customize lost password email content';
     298$lang['UAM_CustomPasswRetr_false'] = ' Desactivar (por defecto)';
     299$lang['UAM_CustomPasswRetr_true'] = ' Activar';
     300// --------- End: New or revised $lang ---- from version 2.20.0
    294301?>
  • extensions/NBC_UserAdvManager/branches/2.20/language/fr_FR/help/plugin.lang.php

    r8094 r9161  
    153153@hotmail.com -> exclusion des adresses *@hotmail.com<br>
    154154@hotmail -> exclusion de toutes les adresses *@hotmail*';
    155 $lang['UAM_infotxtTitle_d'] = 'Saisissez ici le texte d\'introduction personnalisé qui apparaîtra dans l\'email d\'information.<br><br>
    156 Pour une utilisation multi-langues, vous pouvez utiliser les balises [lang] du plugin Extended Description si celui-ci est actif.';
    157 $lang['UAM_confirmtxtTitle_d'] = 'Saisissez ici le texte d\'introduction qui apparaîtra dans l\'email de confirmation d\'inscription.<br><br>
    158 Pour une utilisation multi-langues, vous pouvez utiliser les balises [lang] du plugin Extended Description si celui-ci est actif.';
    159 $lang['UAM_confirmmail_custom1_d'] = 'Lorsque l\'option &quot;Confirmation d\'inscription&quot; est active, ce champ permet de personnaliser <b><u>le texte d\'acceptation</u></b> de la confirmation d\'inscription sur la page affichée lorsqu\'un utilisateur clique sur le lien de confirmation qu\'il a reçu par email.<br><br>
    160 A l\'installation du plugin, un texte standard est donnée en exemple.<br><br>
    161 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.';
    162 $lang['UAM_confirmmail_custom2_d'] = 'Lorsque l\'option &quot;Confirmation d\'inscription&quot; est active, ce champ permet de personnaliser <b><u>le texte de rejet</u></b> de la confirmation d\'inscription sur la page affichée lorsqu\'un utilisateur clique sur le lien de confirmation qu\'il a reçu par email.<br><br>
    163 A l\'installation du plugin, un texte standard est donnée en exemple.<br><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.';
    165 $lang['UAM_remailtxt1Title_d'] = 'Saisissez ici le texte d\'introduction qui apparaîtra dans l\'email de rappel, accompagné d\'une nouvelle clef de validation.<br><br>
    166 Il est vivement conseillé de saisir un texte explicatif; à défaut, le mail de rappel ne comportera que le lien de validation. (NB : Le texte pré-renseigné à l\'installation du plugin n\'est donné qu\'à titre d\'exemple)<br><br>
    167 Pour une utilisation multi-langues, vous pouvez utiliser les balises [lang] du plugin Extended Description si celui-ci est actif.';
    168 $lang['UAM_remailtxt2Title_d'] = 'Saisissez ici le texte d\'introduction qui apparaîtra dans l\'email de rappel, sans nouvelle clef de validation .<br><br>
    169 Il est vivement conseillé de saisir un texte explicatif, afin que l\'email ne soit pas vide. (NB : Le texte pré-renseigné à l\'installation du plugin n\'est donné qu\'à titre d\'exemple)<br><br>
    170 Pour une utilisation multi-langues, vous pouvez utiliser les balises [lang] du plugin Extended Description si celui-ci est actif.';
    171 $lang['UAM_gttextTitle_d'] = 'Saisissez ici le texte qui apparaîtra dans l\'email de rappel pour inciter l\'utilisateur à revenir visiter votre galerie (NB: Le texte pré-renseigné à l\'installation du plugin est donné à titre d\'exemple).<br><br>
    172 Pour une utilisation multi-langues, vous pouvez utiliser les balises [lang] du plugin Extended Description si celui-ci est actif.';
    173155$lang['UAM_GTAutoTitle'] = 'Gestion automatique des utilisateurs fantomes';
    174156$lang['UAM_GTAutoTitle_d'] = 'Cette option permet d\'appliquer des règles de gestion automatisée des visiteurs fantômes.
     
    188170<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>';
    189171$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>
    191 Pour une utilisation multi-langues, vous pouvez utiliser les balises [lang] du plugin Extended Description si celui-ci est actif.';
    192172// --------- End: New or revised $lang ---- from version 2.16.0
     173
     174
     175// --------- Starting below: New or revised $lang ---- from version 2.20.0
     176$lang['UAM_gttextTitle_d'] = 'Saisissez ici le texte qui apparaîtra dans l\'email de rappel pour inciter l\'utilisateur à revenir visiter votre galerie (NB: Le texte pré-renseigné à l\'installation du plugin est donné à titre d\'exemple).
     177<br><br>
     178Personnalisez encore plus le contenu avec les balises d\'insertion spéciales : Utilisez la balise <b style=&quot;color: red;&quot;>[username]</b> pour insérer automatiquement le nom de l\'utilisateur destinataire de l\'email. Utilisez la balise <b style=&quot;color: red;&quot;>[mygallery]</b> pour insérer le titre de votre galerie.
     179<br><br>
     180Pour une utilisation multi-langues, vous pouvez utiliser les balises [lang] du plugin Extended Description si celui-ci est actif.';
     181$lang['UAM_infotxtTitle_d'] = 'Saisissez ici le texte d\'introduction personnalisé qui apparaîtra dans l\'email d\'information.
     182<br><br>
     183Personnalisez encore plus le contenu avec les balises d\'insertion spéciales : Utilisez la balise <b style=&quot;color: red;&quot;>[username]</b> pour insérer automatiquement le nom de l\'utilisateur destinataire de l\'email. Utilisez la balise <b style=&quot;color: red;&quot;>[mygallery]</b> pour insérer le titre de votre galerie.
     184<br><br>
     185Pour une utilisation multi-langues, vous pouvez utiliser les balises [lang] du plugin Extended Description si celui-ci est actif.';
     186$lang['UAM_confirmtxtTitle_d'] = 'Saisissez ici le texte d\'introduction qui apparaîtra dans l\'email de confirmation d\'inscription.
     187<br><br>
     188Personnalisez encore plus le contenu avec les balises d\'insertion spéciales : Utilisez la balise <b style=&quot;color: red;&quot;>[username]</b> pour insérer automatiquement le nom de l\'utilisateur destinataire de l\'email. Utilisez la balise <b style=&quot;color: red;&quot;>[mygallery]</b> pour insérer le titre de votre galerie.
     189<br><br>
     190Pour une utilisation multi-langues, vous pouvez utiliser les balises [lang] du plugin Extended Description si celui-ci est actif.';
     191$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.
     192<br><br>
     193Personnalisez encore plus le contenu avec les balises d\'insertion spéciales : Utilisez la balise <b style=&quot;color: red;&quot;>[username]</b> pour insérer automatiquement le nom de l\'utilisateur destinataire de l\'email. Utilisez la balise <b style=&quot;color: red;&quot;>[mygallery]</b> pour insérer le titre de votre galerie.
     194<br><br>
     195Pour une utilisation multi-langues, vous pouvez utiliser les balises [lang] du plugin Extended Description si celui-ci est actif.';
     196$lang['UAM_confirmmail_custom1_d'] = 'Lorsque l\'option &quot;Confirmation d\'inscription&quot; est active, ce champ permet de personnaliser <b><u>le texte d\'acceptation</u></b> de la confirmation d\'inscription sur la page affichée lorsqu\'un utilisateur clique sur le lien de confirmation qu\'il a reçu par email.
     197<br><br>
     198A l\'installation du plugin, un texte standard est donnée en exemple.
     199<br><br>
     200Personnalisez encore plus le contenu avec les balises d\'insertion spéciales : Utilisez la balise <b style=&quot;color: red;&quot;>[username]</b> pour insérer automatiquement le nom de l\'utilisateur. Utilisez la balise <b style=&quot;color: red;&quot;>[mygallery]</b> pour insérer le titre de votre galerie.
     201<br><br>
     202Ce 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.';
     203$lang['UAM_confirmmail_custom2_d'] = 'Lorsque l\'option &quot;Confirmation d\'inscription&quot; est active, ce champ permet de personnaliser <b><u>le texte de rejet</u></b> de la confirmation d\'inscription sur la page affichée lorsqu\'un utilisateur clique sur le lien de confirmation qu\'il a reçu par email.
     204<br><br>
     205A l\'installation du plugin, un texte standard est donnée en exemple.
     206<br><br>
     207Personnalisez encore plus le contenu avec les balises d\'insertion spéciales : Utilisez la balise <b style=&quot;color: red;&quot;>[username]</b> pour insérer automatiquement le nom de l\'utilisateur. Utilisez la balise <b style=&quot;color: red;&quot;>[mygallery]</b> pour insérer le titre de votre galerie.
     208<br><br>
     209Ce 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.';
     210$lang['UAM_remailtxt1Title_d'] = 'Saisissez ici le texte d\'introduction qui apparaîtra dans l\'email de rappel, accompagné d\'une nouvelle clef de validation.
     211<br><br>
     212Il est vivement conseillé de saisir un texte explicatif; à défaut, le mail de rappel ne comportera que le lien de validation. (NB : Le texte pré-renseigné à l\'installation du plugin n\'est donné qu\'à titre d\'exemple).
     213<br><br>
     214Personnalisez encore plus le contenu avec les balises d\'insertion spéciales : Utilisez la balise <b style=&quot;color: red;&quot;>[username]</b> pour insérer automatiquement le nom de l\'utilisateur destinataire de l\'email. Utilisez la balise <b style=&quot;color: red;&quot;>[mygallery]</b> pour insérer le titre de votre galerie.
     215<br><br>
     216Pour une utilisation multi-langues, vous pouvez utiliser les balises [lang] du plugin Extended Description si celui-ci est actif.';
     217$lang['UAM_remailtxt2Title_d'] = 'Saisissez ici le texte d\'introduction qui apparaîtra dans l\'email de rappel, sans nouvelle clef de validation.
     218<br><br>
     219Il est vivement conseillé de saisir un texte explicatif, afin que l\'email ne soit pas vide. (NB : Le texte pré-renseigné à l\'installation du plugin n\'est donné qu\'à titre d\'exemple).
     220<br><br>
     221Personnalisez encore plus le contenu avec les balises d\'insertion spéciales : Utilisez la balise <b style=&quot;color: red;&quot;>[username]</b> pour insérer automatiquement le nom de l\'utilisateur destinataire de l\'email. Utilisez la balise <b style=&quot;color: red;&quot;>[mygallery]</b> pour insérer le titre de votre galerie.
     222<br><br>
     223Pour une utilisation multi-langues, vous pouvez utiliser les balises [lang] du plugin Extended Description si celui-ci est actif.';
     224$lang['UAM_CustomPasswRetrTitle'] = 'Personnaliser le contenu du mail sur mot de passe perdu';
     225$lang['UAM_CustomPasswRetrTitle_d'] = 'Par défaut, lorsqu\'un utilisateur a perdu son mot de passe et qu\'il sélectionne l\'option de récupération, il reçoit un email ne contenant que son nom d\'utilisateur et son nouveau mot de passe.
     226<br><br>
     227Vous pouvez ici ajouter un texte de votre choix qui sera inséré <b><u>avant</u></b> ces informations standards.
     228<br><br>
     229Personnalisez encore plus le contenu avec les balises d\'insertion spéciales : Utilisez la balise <b style=&quot;color: red;&quot;>[username]</b> pour insérer automatiquement le nom de l\'utilisateur destinataire de l\'email. Utilisez la balise <b style=&quot;color: red;&quot;>[mygallery]</b> pour insérer le titre de votre galerie.
     230<br><br>
     231Pour une utilisation multi-langues, vous pouvez utiliser les balises [lang] du plugin Extended Description si celui-ci est actif.';
     232// --------- End: New or revised $lang ---- from version 2.20.0
    193233?>
  • extensions/NBC_UserAdvManager/branches/2.20/language/fr_FR/plugin.lang.php

    r8092 r9161  
    290290$lang['Validation of %s'] = 'Validation de %s';
    291291// --------- End: New or revised $lang ---- from version 2.16.0
     292
     293
     294// --------- Starting below: New or revised $lang ---- from version 2.20.0
     295$lang['UAM_CustomPasswRetr'] = 'Personnaliser le contenu du mail sur mot de passe perdu';
     296$lang['UAM_CustomPasswRetr_false'] = ' Désactiver (valeur par défaut)';
     297$lang['UAM_CustomPasswRetr_true'] = ' Activer';
     298// --------- End: New or revised $lang ---- from version 2.20.0
    292299?>
  • extensions/NBC_UserAdvManager/branches/2.20/language/it_IT/help/plugin.lang.php

    r8571 r9161  
    148148@hotmail.com -> esclusi gli indirizzi *@hotmail.com<br>
    149149@hotmail -> escludendo tutti gli indirizzi *@hotmail*';
    150 $lang['UAM_infotxtTitle_d'] = 'Inserisci il testo introduttivo che si desidera visualizzare nella e-mail informazioni.<br><br>
    151 Per utilizzare più lingue, è possibile utilizzare i tag del plugin Extended Description, se esso è attivo.';
    152 /* TODO */$lang['UAM_confirmtxtTitle_d'] = 'Enter the introductory text that you want to appear in the email confirmation of registration.<br><br>
    153 Per utilizzare più lingue, è possibile utilizzare i tag del plugin Extended Description, se esso è attivo.';
    154 /*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>
    155 After installing the plugin, a standard text is set as an example.<br>
    156 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 /*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>
    158 After installing the plugin, a standard text is set as an example.<br>
    159 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.';
    160 /* TODO */$lang['UAM_remailtxt1Title_d'] = 'Enter the introductory text that you want to appear in the reminder email, in addition to the validation key regenerated.<br><br>
    161 If left blank, the mail reminder will include only the validation link. It is therefore strongly advised to take a little explanatory text. (NB: The text pre-filled with the installation of the plugin is provided as an example)<br><br>
    162 Per utilizzare più lingue, è possibile utilizzare i tag del plugin Extended Description, se esso è attivo.';
    163 /* TODO */$lang['UAM_remailtxt2Title_d'] = 'Enter the introductory text that you want to appear in the reminder email without a validation key regenerated.<br><br>
    164 If left blank, the mail reminder will be empty. It is therefore strongly advised to take a little explanatory text. (NB: The text pre-filled with the installation of the plugin is provided as an example)<br><br>
    165 Per utilizzare più lingue, è possibile utilizzare i tag del plugin Extended Description, se esso è attivo.';
    166 /* 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>
    167 Per utilizzare più lingue, è possibile utilizzare i tag del plugin Extended Description, se esso è attivo.';
    168150/* TODO */$lang['UAM_GTAutoTitle'] = 'Automatic management of ghosts users';
    169151/* TODO */$lang['UAM_GTAutoTitle_d'] = 'This option allows to apply rules for automated management of ghosts users.
     
    186168To use multiple languages, you can use the Extended description plugin\'s tags if it is active.';
    187169// --------- End: New or revised $lang ---- from version 2.16.0
     170
     171
     172// --------- Starting below: New or revised $lang ---- from version 2.20.0
     173/*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).
     174<br><br>
     175Further customize the content with special inserted tags : Use <b style=&quot;color: red;&quot;>[username]</b> to automatically insert the name of the destination user of the email. Use <b style=&quot;color: red;&quot;>[mygallery]</b> to insert the title of your gallery.
     176<br><br>
     177Per utilizzare più lingue, è possibile utilizzare i tag del plugin Extended Description, se esso è attivo.';
     178/*TODO*/$lang['UAM_infotxtTitle_d'] = 'Inserisci il testo introduttivo che si desidera visualizzare nella e-mail informazioni.
     179<br><br>
     180Further customize the content with special inserted tags : Use <b style=&quot;color: red;&quot;>[username]</b> to automatically insert the name of the destination user of the email. Use <b style=&quot;color: red;&quot;>[mygallery]</b> to insert the title of your gallery.
     181<br><br>
     182Per utilizzare più lingue, è possibile utilizzare i tag del plugin Extended Description, se esso è attivo.';
     183/* TODO */$lang['UAM_confirmtxtTitle_d'] = 'Enter the introductory text that you want to appear in the email confirmation of registration.
     184<br><br>
     185Per utilizzare più lingue, è possibile utilizzare i tag del plugin Extended Description, se esso è attivo.';
     186/*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.
     187<br><br>
     188After installing the plugin, a standard text is set as an example.
     189<br><br>
     190Further customize the content with special inserted tags : Use <b style=&quot;color: red;&quot;>[username]</b> to automatically insert the name of the destination user of the email. Use <b style=&quot;color: red;&quot;>[mygallery]</b> to insert the title of your gallery.
     191<br><br>
     192This 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.';
     193/*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.
     194<br><br>
     195After installing the plugin, a standard text is set as an example.
     196<br><br>
     197Further customize the content with special inserted tags : Use <b style=&quot;color: red;&quot;>[username]</b> to automatically insert the name of the destination user of the email. Use <b style=&quot;color: red;&quot;>[mygallery]</b> to insert the title of your gallery.
     198<br><br>
     199This 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.';
     200/* TODO */$lang['UAM_remailtxt1Title_d'] = 'Enter the introductory text that you want to appear in the reminder email, in addition to the validation key regenerated.
     201<br><br>
     202If left blank, the mail reminder will include only the validation link. It is therefore strongly advised to take a little explanatory text. (NB: The text pre-filled with the installation of the plugin is provided as an example).
     203<br><br>
     204Further customize the content with special inserted tags : Use <b style=&quot;color: red;&quot;>[username]</b> to automatically insert the name of the destination user of the email. Use <b style=&quot;color: red;&quot;>[mygallery]</b> to insert the title of your gallery.
     205<br><br>
     206Per utilizzare più lingue, è possibile utilizzare i tag del plugin Extended Description, se esso è attivo.';
     207/* TODO */$lang['UAM_remailtxt2Title_d'] = 'Enter the introductory text that you want to appear in the reminder email without a validation key regenerated.
     208<br><br>
     209If left blank, the mail reminder will be empty. It is therefore strongly advised to take a little explanatory text. (NB: The text pre-filled with the installation of the plugin is provided as an example).
     210<br><br>
     211Further customize the content with special inserted tags : Use <b style=&quot;color: red;&quot;>[username]</b> to automatically insert the name of the destination user of the email. Use <b style=&quot;color: red;&quot;>[mygallery]</b> to insert the title of your gallery.
     212<br><br>
     213Per utilizzare più lingue, è possibile utilizzare i tag del plugin Extended Description, se esso è attivo.';
     214/* TODO */$lang['UAM_CustomPasswRetrTitle'] = 'Customize lost password email content';
     215/* TODO */$lang['UAM_CustomPasswRetrTitle_d'] = 'By default, when a user has lost his password and selects the option of recovery, he receives an email containing only his username and his new password.
     216<br><br>
     217Here, you can add text of your choice to be inserted <b><u>before</u></b> the standard information.
     218<br><br>
     219Further customize the content with special inserted tags : Use <b style=&quot;color: red;&quot;>[username]</b> to automatically insert the name of the destination user of the email. Use <b style=&quot;color: red;&quot;>[mygallery]</b> to insert the title of your gallery.
     220<br><br>
     221To use multiple languages, you can use the Extended description plugin\'s tags if it is active.';
     222// --------- End: New or revised $lang ---- from version 2.20.0
    188223?>
  • extensions/NBC_UserAdvManager/branches/2.20/language/it_IT/plugin.lang.php

    r8102 r9161  
    289289$lang['Validation of %s'] = 'Validazione di %s';
    290290// --------- End: New or revised $lang ---- from version 2.16.0
     291
     292
     293// --------- Starting below: New or revised $lang ---- from version 2.20.0
     294/*TODO*/$lang['UAM_CustomPasswRetr'] = 'Customize lost password email content';
     295$lang['UAM_CustomPasswRetr_false'] = ' Disattivare (di default)';
     296$lang['UAM_CustomPasswRetr_true'] = ' Attivare';
     297// --------- End: New or revised $lang ---- from version 2.20.0
    291298?>
  • extensions/NBC_UserAdvManager/branches/2.20/language/lv_LV/help/plugin.lang.php

    r8155 r9161  
    175175@hotmail.com -> izņemot adreses *@hotmail.com<br>
    176176@hotmail -> izņemot visas adreses *@hotmail*';
    177 $lang['UAM_infotxtTitle_d'] = 'Ievadiet teksta, ko jūs gribat atspoguļot informācijas e-vēstulē, ievaddaļu.<br><br>
    178 Lai izmantotu vairākas valodas, jūs varat lietot Paplašinātā apraksta spraudņa tagus (gadījumā, ja tas ir aktīvs).';
    179 $lang['UAM_confirmtxtTitle_d'] = 'Ievadiet teksta, ko jūs gribat atspoguļot informācijas e-vēstulē, ievaddaļu.<br><br>
    180 Lai izmantotu vairākas valodas, jūs varat lietot Paplašinātā apraksta spraudņa tagus (gadījumā, ja tas ir aktīvs).';
    181 $lang['UAM_confirmmail_custom1_d'] = 'Tad, kas opcija &quot;Confirmation of registration&quot; ir aktīva, šis lauks ļauj jums pielāgot apstiprinājuma tekstu <b><u>acceptance text</u></b> reģistrācijas apstiprināšanas lapā, kas parādās, kad lietotājs uzklikšķina uz apstiprināšanas saites, ko viņš saņēmis ar e-pastu.<br>
    182 Pēc spraudņa uzinstalēšanas, kā piemērs tiek piedāvāts standarta teksta variants.<br>
    183 Šis lauks ir savietojams ar FCK Redaktoru un, multi-valodu režīmā, varat lietot Paplašināta apraksta (Extended description), gadījumā, ja tas ir aktīvs) [lang] iezīmes- tagus.';
    184 $lang['UAM_confirmmail_custom2_d'] = 'Tad, kad opcija &quot;Confirmation of registration&quot; ir aktīva, šis lauks ļauj jums pielāgot noraidījuma tekstu <b><u>rejectance text</u></b> > reģistrācijas apstiprināšanas lapā, kas parādās, kad lietotājs uzklikšķina uz apstiprināšanas saites, ko viņš saņēmis ar e-pastu.<br>
    185 Pēc spraudņa uzinstalēšanas, kā piemērs tiek piedāvāts standarta teksta variants.<br>
    186 Šis lauks ir savietojams ar FCK Redaktoru un, multi-valodu režīmā, varat lietot Paplašināta apraksta (Extended description), gadījumā, ja tas ir aktīvs) [lang] iezīmes- tagus.';
    187 $lang['UAM_remailtxt1Title_d'] = 'Ievadiet teksta, ko jūs gribat atspoguļot informācijas e-vēstulē, ievaddaļu, kā pielikumu reģenerētajai validācijas atslēgai.<br><br>
    188 Ja ir atstāts tukšs lauks, e-pasta atgādinātājs ietver sevī tikai validācijas saiti.
    189 Tādēļ ir ieteicams ietvert mazu skaidrojošu tekstu. (NB: Spraudni instalējot, aizpildītais teksts ir piedāvāts kā paraugs)<br><br>
    190 Lai izmantotu vairākas valodas, jūs varat lietot Paplašinātā apraksta spraudņa tagus (gadījumā, ja tas ir aktīvs).';
    191 $lang['UAM_remailtxt2Title_d'] = 'Ievadiet teksta, ko jūs gribat atspoguļot informācijas e-vēstulē, ievaddaļu bez validācijas atslēgas.<br><br>
    192 Ja ir atstāts tukšs lauks, e-pasta atgādinātājvēstule būs tukša. Tādēļ ir ieteicams ietvert mazu skaidrojošu tekstu.(NB: Spraudni instalējot, aizpildītais teksts ir piedāvāts kā paraugs)<br><br>
    193 Lai izmantotu vairākas valodas, jūs varat lietot Paplašinātā apraksta spraudņa tagus (gadījumā, ja tas ir aktīvs).';
    194 $lang['UAM_gttextTitle_d'] = 'Ievadiet tekstu , ko jūs gribat atspoguļot e-pasta atgādinājumā, lai atgādinātu lietotājam apmeklēt jūsu galeriju. (NB:
    195 Spraudni instalējot, aizpildītais teksts ir piedāvāts kā paraugs).<br><br>
    196 Lai izmantotu vairākas valodas, jūs varat lietot Paplašinātā apraksta spraudņa tagus (gadījumā, ja tas ir aktīvs).';
    197177$lang['UAM_GTAutoTitle'] = ' Ghosts lietotāju automātiskā pārvaldība';
    198178$lang['UAM_GTAutoTitle_d'] = 'Šī opcija dod iespēju pielietot (slēptajiem) ghosts lietotājiem automātiskās pārvaldības nosacījumus.
     
    214194<br><br><b style=&quot;color: red;&quot;>Brīdinājums: Šīs funkcijas izmantošana ir cieši saistīta ar lietotāja reģistrācijas apstiprināšanu (apstiprināšana ar e-pastu) un nevar tikt aktivēta bez šīs opcijas.</b>';
    215195$lang['UAM_AdminValidationMail'] = 'Paziņojums par manuālās reģistrācijas apstiprināšanu';
    216 $lang['UAM_AdminValidationMail_d'] = 'Gadījumā, kad administrators vai galerijas Webmāsters manuāli aiztur reģistrācijas procesu, lietotājam automātiski tiek nosūtīts e-pasta paziņojums. Ievadiet šeit tekstu, ko gribat, lai tas parādītos šajā e-pasta ziņojumā.<br><br>
     196// --------- End: New or revised $lang ---- from version 2.16.0
     197
     198
     199// --------- Starting below: New or revised $lang ---- from version 2.20.0
     200/* TODO */$lang['UAM_gttextTitle_d'] = 'Ievadiet tekstu , ko jūs gribat atspoguļot e-pasta atgādinājumā, lai atgādinātu lietotājam apmeklēt jūsu galeriju. (NB: Spraudni instalējot, aizpildītais teksts ir piedāvāts kā paraugs).
     201<br><br>
     202Further customize the content with special inserted tags : Use <b style=&quot;color: red;&quot;>[username]</b> to automatically insert the name of the destination user of the email. Use <b style=&quot;color: red;&quot;>[mygallery]</b> to insert the title of your gallery.
     203<br><br>
     204Lai izmantotu vairākas valodas, jūs varat lietot Paplašinātā apraksta spraudņa tagus (gadījumā, ja tas ir aktīvs).';
     205/* TODO */$lang['UAM_infotxtTitle_d'] = 'Ievadiet teksta, ko jūs gribat atspoguļot informācijas e-vēstulē, ievaddaļu.
     206<br><br>
     207Further customize the content with special inserted tags : Use <b style=&quot;color: red;&quot;>[username]</b> to automatically insert the name of the destination user of the email. Use <b style=&quot;color: red;&quot;>[mygallery]</b> to insert the title of your gallery.
     208<br><br>
     209Lai izmantotu vairākas valodas, jūs varat lietot Paplašinātā apraksta spraudņa tagus (gadījumā, ja tas ir aktīvs).';
     210/* TODO */$lang['UAM_confirmtxtTitle_d'] = 'Ievadiet teksta, ko jūs gribat atspoguļot informācijas e-vēstulē, ievaddaļu.
     211<br><br>
     212Further customize the content with special inserted tags : Use <b style=&quot;color: red;&quot;>[username]</b> to automatically insert the name of the destination user of the email. Use <b style=&quot;color: red;&quot;>[mygallery]</b> to insert the title of your gallery.
     213<br><br>
     214Lai izmantotu vairākas valodas, jūs varat lietot Paplašinātā apraksta spraudņa tagus (gadījumā, ja tas ir aktīvs).';
     215/* TODO */$lang['UAM_AdminValidationMail_d'] = 'Gadījumā, kad administrators vai galerijas Webmāsters manuāli aiztur reģistrācijas procesu, lietotājam automātiski tiek nosūtīts e-pasta paziņojums. Ievadiet šeit tekstu, ko gribat, lai tas parādītos šajā e-pasta ziņojumā.
     216<br><br>
     217Further customize the content with special inserted tags : Use <b style=&quot;color: red;&quot;>[username]</b> to automatically insert the name of the destination user of the email. Use <b style=&quot;color: red;&quot;>[mygallery]</b> to insert the title of your gallery.
     218<br><br>
    217219Ja ir aktivēts paplašinātā apraksta Extended description spraudnis, varat izmantot tā iezīmes (valodu tagus), lai lietotu vairākas pieejamās valodas.';
    218 // --------- End: New or revised $lang ---- from version 2.16.0
     220/* TODO */$lang['UAM_confirmmail_custom1_d'] = 'Tad, kas opcija &quot;Confirmation of registration&quot; ir aktīva, šis lauks ļauj jums pielāgot apstiprinājuma tekstu <b><u>acceptance text</u></b> reģistrācijas apstiprināšanas lapā, kas parādās, kad lietotājs uzklikšķina uz apstiprināšanas saites, ko viņš saņēmis ar e-pastu.
     221<br><br>
     222Pēc spraudņa uzinstalēšanas, kā piemērs tiek piedāvāts standarta teksta variants.
     223<br><br>
     224Further customize the content with special inserted tags : Use <b style=&quot;color: red;&quot;>[username]</b> to automatically insert the name of the destination user of the email. Use <b style=&quot;color: red;&quot;>[mygallery]</b> to insert the title of your gallery.
     225<br><br>
     226Šis lauks ir savietojams ar FCK Redaktoru un, multi-valodu režīmā, varat lietot Paplašināta apraksta (Extended description), gadījumā, ja tas ir aktīvs) [lang] iezīmes- tagus.';
     227/* TODO */$lang['UAM_confirmmail_custom2_d'] = 'Tad, kad opcija &quot;Confirmation of registration&quot; ir aktīva, šis lauks ļauj jums pielāgot noraidījuma tekstu <b><u>rejectance text</u></b> > reģistrācijas apstiprināšanas lapā, kas parādās, kad lietotājs uzklikšķina uz apstiprināšanas saites, ko viņš saņēmis ar e-pastu.
     228<br><br>
     229Pēc spraudņa uzinstalēšanas, kā piemērs tiek piedāvāts standarta teksta variants.
     230<br><br>
     231Further customize the content with special inserted tags : Use <b style=&quot;color: red;&quot;>[username]</b> to automatically insert the name of the destination user of the email. Use <b style=&quot;color: red;&quot;>[mygallery]</b> to insert the title of your gallery.
     232<br><br>
     233Šis lauks ir savietojams ar FCK Redaktoru un, multi-valodu režīmā, varat lietot Paplašināta apraksta (Extended description), gadījumā, ja tas ir aktīvs) [lang] iezīmes- tagus.';
     234/* TODO */$lang['UAM_remailtxt1Title_d'] = 'Ievadiet teksta, ko jūs gribat atspoguļot informācijas e-vēstulē, ievaddaļu, kā pielikumu reģenerētajai validācijas atslēgai.
     235<br><br>
     236Ja ir atstāts tukšs lauks, e-pasta atgādinātājs ietver sevī tikai validācijas saiti.
     237Tādēļ ir ieteicams ietvert mazu skaidrojošu tekstu. (NB: Spraudni instalējot, aizpildītais teksts ir piedāvāts kā paraugs).
     238<br><br>
     239Further customize the content with special inserted tags : Use <b style=&quot;color: red;&quot;>[username]</b> to automatically insert the name of the destination user of the email. Use <b style=&quot;color: red;&quot;>[mygallery]</b> to insert the title of your gallery.
     240<br><br>
     241Lai izmantotu vairākas valodas, jūs varat lietot Paplašinātā apraksta spraudņa tagus (gadījumā, ja tas ir aktīvs).';
     242/* TODO */$lang['UAM_remailtxt2Title_d'] = 'Ievadiet teksta, ko jūs gribat atspoguļot informācijas e-vēstulē, ievaddaļu bez validācijas atslēgas.
     243<br><br>
     244Ja ir atstāts tukšs lauks, e-pasta atgādinātājvēstule būs tukša. Tādēļ ir ieteicams ietvert mazu skaidrojošu tekstu.(NB: Spraudni instalējot, aizpildītais teksts ir piedāvāts kā paraugs).
     245<br><br>
     246Further customize the content with special inserted tags : Use <b style=&quot;color: red;&quot;>[username]</b> to automatically insert the name of the destination user of the email. Use <b style=&quot;color: red;&quot;>[mygallery]</b> to insert the title of your gallery.
     247<br><br>
     248Lai izmantotu vairākas valodas, jūs varat lietot Paplašinātā apraksta spraudņa tagus (gadījumā, ja tas ir aktīvs).';
     249/* TODO */$lang['UAM_CustomPasswRetrTitle'] = 'Customize lost password email content';
     250/* TODO */$lang['UAM_CustomPasswRetrTitle_d'] = 'By default, when a user has lost his password and selects the option of recovery, he receives an email containing only his username and his new password.
     251<br><br>
     252Here, you can add text of your choice to be inserted <b><u>before</u></b> the standard information.
     253<br><br>
     254Further customize the content with special inserted tags : Use <b style=&quot;color: red;&quot;>[username]</b> to automatically insert the name of the destination user of the email. Use <b style=&quot;color: red;&quot;>[mygallery]</b> to insert the title of your gallery.
     255<br><br>
     256To use multiple languages, you can use the Extended description plugin\'s tags if it is active.';
     257// --------- End: New or revised $lang ---- from version 2.20.0
    219258?>
Note: See TracChangeset for help on using the changeset viewer.