[NBM] Step 7: Add functionalities subscribe/unsubscribe:
o reduce length of check_key o fix bugs o send mail on subscribe/unsubscribe o add and used $conf parameters o review keyword of languages o improve selection/check o can subscribe/unsubscribe with a link include on mail o fix bug mass_update collate git-svn-id: http://piwigo.org/svn/trunk@1116 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
parent
12df580f50
commit
324f3c4279
12 changed files with 699 additions and 257 deletions
|
|
@ -238,21 +238,31 @@ $lang['metadata_basic'] = 'basic';
|
|||
$lang['metadata_exif'] = 'EXIF';
|
||||
$lang['metadata_iptc'] = 'IPTC';
|
||||
$lang['name'] = 'name';
|
||||
$lang['nbm_%d mails were not sent.'] = '%d mails were not sent.';
|
||||
$lang['nbm_%d mails were sent.'] = '%d mails were sent.';
|
||||
$lang['nbm_Error when sending email to %s [%s].'] = 'Error when sending email to %s [%s].';
|
||||
$lang['nbm_Mail sent to %s [%s].'] = 'Mail sent to %s [%s].';
|
||||
$lang['nbm_ContentObject'] = 'New elements added';
|
||||
$lang['nbm_ContentHello'] = 'Hello %s';
|
||||
$lang['nbm_ContentNewElementsBetween'] = 'New elements were added between %s and %s';
|
||||
$lang['nbm_ContentNewElements'] = 'New elements were added on %s';
|
||||
$lang['nbm_ContentGoTo'] = 'Go to %s %s.';
|
||||
$lang['nbm_ContentByeBye'] = 'See you soon';
|
||||
$lang['nbm_ContentUnsubscribe'] = 'To unsubscribe send a message to %s.';
|
||||
$lang['nbm_No mail to send.'] = 'No mail to send.';
|
||||
$lang['nbm_No user to send notifications by mail.'] = 'No user to send notifications by mail.';
|
||||
$lang['nbm_Send mail to users'] = 'Send mail to users';
|
||||
$lang['nbm_User %s [%s] added.'] = 'User %s [%s] added.';
|
||||
$lang['nbm_break_list_user'] = 'List of users to send mail is limited to %d. Others users are not listed.';
|
||||
$lang['nbm_nbm_break_send_mail'] = 'Sent mail is limited to %d send by pass. Others mails are skipped.';
|
||||
$lang['nbm_msg_no_mail_to_send'] = '%d mails were not sent.';
|
||||
$lang['nbm_msg_n_mails_sent'] = '%d mails were sent.';
|
||||
$lang['nbm_msg_error_sending_email_to'] = 'Error when sending email to %s [%s].';
|
||||
$lang['nbm_msg_mail_sent_to'] = 'Mail sent to %s [%s].';
|
||||
$lang['nbm_object_news'] = 'New elements added';
|
||||
$lang['nbm_object_subcribe'] = 'Subcribe of notification by mail';
|
||||
$lang['nbm_object_unsubcribe'] = 'Unsubcribe of notification by mail';
|
||||
$lang['nbm_content_hello'] = 'Hello %s';
|
||||
$lang['nbm_content_new_elements_between'] = 'New elements were added between %s and %s';
|
||||
$lang['nbm_content_new_elements'] = 'New elements were added on %s';
|
||||
$lang['nbm_content_goto'] = 'Go to %s %s.';
|
||||
$lang['nbm_content_subscribe_by_admin'] = 'You are subcribed by webmaster for the notification by mail';
|
||||
$lang['nbm_content_unsubscribe_by_admin'] = 'You are unsubcribed by webmaster for the notification by mail';
|
||||
$lang['nbm_content_subscribe_by_himself'] = 'You are subcribed for the notification by mail';
|
||||
$lang['nbm_content_unsubscribe_by_himself'] = 'You are unsubcribed for the notification by mail';
|
||||
$lang['nbm_content_byebye'] = 'See you soon';
|
||||
$lang['nbm_content_unsubscribe_link'] = 'To unsubscribe, click on %s .';
|
||||
$lang['nbm_content_subscribe_link'] = 'To subscribe, click on %s .';
|
||||
$lang['nbm_content_subscribe_unsubscribe_contact'] = 'On problems or questions, send a message to %s.';
|
||||
$lang['nbm_no_mail_to_send'] = 'No mail to send.';
|
||||
$lang['nbm_no_user_to send_notifications_by_mail'] = 'No user to send notifications by mail.';
|
||||
$lang['nbm_send_mail_to_users'] = 'Send mail to users';
|
||||
$lang['nbm_user_x_added'] = 'User %s [%s] added.';
|
||||
$lang['nbm_item_notification'] = 'Notification';
|
||||
$lang['nbm_param_mode'] = 'Parameter';
|
||||
$lang['nbm_subscribe_mode'] = 'Subscribe';
|
||||
|
|
@ -264,7 +274,7 @@ $lang['nbm_info_send_mail_as'] = 'With blank value, gallery title will be used';
|
|||
$lang['nbm_send_detailed_content'] = 'Send detailed content';
|
||||
$lang['nbm_complementary_mail_content'] = 'Complementary mail content';
|
||||
$lang['nbm_title_subscribe'] = 'Subscribe/unscribe users';
|
||||
$lang['nbm_warning_subscribe_unsubcribe'] = 'Warning, subscribe or unscribe send mails to users [Not Implemented]';
|
||||
$lang['nbm_warning_subscribe_unsubcribe'] = 'Warning, subscribe or unscribe send mails to users';
|
||||
$lang['nbm_subscribe_col'] = 'Subscribed';
|
||||
$lang['nbm_unsubscribe_col'] = 'Unsubcribed';
|
||||
$lang['nbm_no_user_available_to_send_L1'] = 'No user are available in order to send mail.';
|
||||
|
|
@ -281,7 +291,10 @@ $lang['nbm_send_check_all'] = 'Check All';
|
|||
$lang['nbm_send_uncheck_all'] = 'Uncheck All';
|
||||
$lang['nbm_user_change_enabled_true'] = 'User %s [%s] added to subscribe list.';
|
||||
$lang['nbm_user_change_enabled_false'] = 'User %s [%s] removed of subscribe list.';
|
||||
$lang['nbm_user_not_change_enabled_true'] = 'User %s [%s] not added to subscribe list.';
|
||||
$lang['nbm_user_not_change_enabled_false'] = 'User %s [%s] not removed of subscribe list.';
|
||||
$lang['nbm_user_change_enabled_updated_data_count'] = '%d user(s) are updated.';
|
||||
$lang['nbm_user_change_enabled_error_on_updated_data_count'] = '%d user(s) are not updated.';
|
||||
$lang['no_write_access'] = 'no write access';
|
||||
$lang['order_by'] = 'order by';
|
||||
$lang['path'] = 'path';
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue