Changeset 21696 for extensions/UserAdvManager/branches
- Timestamp:
- Mar 18, 2013, 9:54:56 PM (12 years ago)
- Location:
- extensions/UserAdvManager/branches/2.50
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
extensions/UserAdvManager/branches/2.50/admin/UAM_admin.php
r21633 r21696 1317 1317 $reminder = l10n('UAM_Reminder_Sent_OK'); 1318 1318 } 1319 else if ((isset($row['reminder']) and $row['reminder'] == 'false') or !isset($row['reminder']))1319 else if ((isset($row['reminder']) and $row['reminder'] == 'false') or $row['reminder'] == null) 1320 1320 { 1321 1321 $reminder = l10n('UAM_Reminder_Sent_NOK'); 1322 1322 } 1323 1324 1323 1325 1324 if (isset($_POST['pref_submit']) -
extensions/UserAdvManager/branches/2.50/changelog.txt.php
r21633 r21696 402 402 Bug 2871 fixed - Improved process : User registration is confirmed by default when user is added by an admin and confirmation of registration for admins is set to OFF 403 403 Bug 2872 fixed - Check if confirmed users group is set as the default group and set it if not 404 Bug 2873 fixed - Remove annoying flashing message on config submit 404 Bug 2873 fixed - Remove annoying flashing message on config submit 405 406 -- 2.50.4 : Bug 2874 fixed - Warning message on tracking confirmation tab when confirmation by admins is set and a user is added manually by an admin 407 Update de_DE, thanks to : stephy 408 Update lv_LV, thanks to : agrisans 405 409 */ 406 410 ?> -
extensions/UserAdvManager/branches/2.50/include/functions.inc.php
r21633 r21696 1314 1314 } 1315 1315 1316 if ((isset($conf_UAM['CONFIRM_MAIL']) and ($conf_UAM['CONFIRM_MAIL'] == 'true' or $conf_UAM['CONFIRM_MAIL'] == 'local')) and $confirm) // Add confirmation link ?1316 if ((isset($conf_UAM['CONFIRM_MAIL']) and ($conf_UAM['CONFIRM_MAIL'] == 'true')) and $confirm) // Add confirmation link ? 1317 1317 { 1318 1318 $infos2 = array( … … 1952 1952 (id, user_id, mail_address, status, date_check, reminder) 1953 1953 VALUES 1954 ('".$Confirm_Mail_ID."', '".$user_id."', '".$email."', '".$status."', null, false)1954 ('".$Confirm_Mail_ID."', '".$user_id."', '".$email."', '".$status."', null, 'false') 1955 1955 ;"; 1956 1956 pwg_query($query); -
extensions/UserAdvManager/branches/2.50/language/de_DE/plugin.lang.php
r21294 r21696 430 430 $lang['UAM_Change'] = 'Ändere die Gruppe/den Status/die Privatsphäre des Benutzers der bestätigt wurde.'; 431 431 $lang['UAM_Customize_messagesandmails'] = 'Anpassen der Nachrichten und E-Mails.'; 432 $lang['UAM_group "%s" updated'] = 'Für die beste Geschwindigkeit, wurde die Gruppe %s als Standardgruppe eingestellt.'; 432 433 ?> -
extensions/UserAdvManager/branches/2.50/language/en_UK/help.lang.php
r19234 r21696 18 18 $lang['UAM_tipsTitle_d'] = 'Tips and various examples of use'; 19 19 20 21 // --------- Starting below: New or revised $lang ---- from version 2.14.022 20 $lang['UAM_adminconfmailTitle_d'] = 'You can disable this confirmation only for user accounts created by the administrator via Piwigo\'s users management interface.<br><br> 23 21 By activating this option, email confirmation for registration will be sent to each user created by admin.<br><br> 24 By disabling this option (default), only the email information is sent (if "Information email to user" is enabled).'; 25 // --------- End: New or revised $lang ---- from version 2.14.0 22 By disabling this option (default), only the email information is sent (if "Information email to user" is enabled). In addition, the user created will be <b>considered validated</b> by default.'; 26 23 27 24 -
extensions/UserAdvManager/branches/2.50/language/fr_FR/help.lang.php
r19234 r21696 17 17 $lang['UAM_tipsTitle_d'] = 'Astuces et exemples divers d\'utilisation'; 18 18 19 20 // --------- Starting below: New or revised $lang ---- from version 2.14.021 19 $lang['UAM_adminconfmailTitle_d'] = 'On peut ici désactiver la confirmation des inscriptions uniquement pour les comptes d\'utilisateurs créés par l\'administrateur via l\'interface de gestion des utilisateurs de Piwigo.<br><br> 22 20 En activant cette option, l\'email de confirmation d\'inscription sera envoyé à chaque utilisateur créé par l\'admin.<br><br> 23 En désactivant cette option (mode par défaut), seul l\'email d\'information est envoyé (si la fonction "Email d\'information à l\'utilisateur" est activée).'; 24 // --------- End: New or revised $lang ---- from version 2.14.0 21 En désactivant cette option (mode par défaut), seul l\'email d\'information est envoyé (si la fonction "Email d\'information à l\'utilisateur" est activée). De plus, l\'utilisateur ainsi créé sera <b>considéré comme validé</b> par défaut.'; 25 22 26 23 -
extensions/UserAdvManager/branches/2.50/language/lv_LV/plugin.lang.php
r19234 r21696 385 385 $lang['UAM_Change'] = 'Izmainīt apstiprināto lietotāju Grupas/Statuss/Konfidencialitāte Līmeni'; 386 386 $lang['UAM_Customize_messagesandmails'] = 'Pielāgojiet ziņojumus un pastu'; 387 $lang['UAM_group "%s" updated'] = 'Labākam sniegumam, grupa %s automātiski tika iestatīta kā noklusējuma grupa.'; 387 388 ?>
Note: See TracChangeset
for help on using the changeset viewer.