Multilanguage support for users mail settings
This commit is contained in:
parent
710672769a
commit
e72db62736
1 changed files with 41 additions and 0 deletions
|
@ -256,3 +256,44 @@ ini_set('url_rewriter.tags', '');
|
||||||
# 'forum' => 'Discussion board',
|
# 'forum' => 'Discussion board',
|
||||||
# '@count min' => '@count minutes',
|
# '@count min' => '@count minutes',
|
||||||
# );
|
# );
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Multilingual settings
|
||||||
|
*
|
||||||
|
* This is a collection of variables that can be set up for each language when
|
||||||
|
* i18n is enabled. These are the basic ones for Drupal core, but you can add
|
||||||
|
* your own here.
|
||||||
|
*/
|
||||||
|
$conf['i18n_variables'] = array(
|
||||||
|
// User email variables:
|
||||||
|
'user_registration_help',
|
||||||
|
'user_mail_register_admin_created_subject',
|
||||||
|
'user_mail_register_admin_created_body',
|
||||||
|
'user_mail_register_no_approval_required_subject',
|
||||||
|
'user_mail_register_no_approval_required_body',
|
||||||
|
'user_mail_register_pending_approval_subject',
|
||||||
|
'user_mail_register_pending_approval_body',
|
||||||
|
'user_mail_password_reset_subject',
|
||||||
|
'user_mail_password_reset_body',
|
||||||
|
'user_mail_status_activated_subject',
|
||||||
|
'user_mail_status_activated_body',
|
||||||
|
'user_mail_status_blocked_subject',
|
||||||
|
'user_mail_status_blocked_body',
|
||||||
|
'user_mail_status_deleted_subject',
|
||||||
|
'user_mail_status_deleted_body',
|
||||||
|
'user_picture_guidelines',
|
||||||
|
// Primary and secondary links:
|
||||||
|
'menu_primary_links_source',
|
||||||
|
// Custom error module variables:
|
||||||
|
'customerror_403_title',
|
||||||
|
// Print link:
|
||||||
|
'print_html_link_text',
|
||||||
|
// Watcher templates:
|
||||||
|
'watcher_notifications_templates_header',
|
||||||
|
'watcher_notifications_templates_footer',
|
||||||
|
'watcher_notifications_templates_footer_anonymous_notify',
|
||||||
|
'watcher_notifications_templates_footer_confirm',
|
||||||
|
'watcher_notifications_templates_body_node',
|
||||||
|
'watcher_notifications_templates_body_cmt',
|
||||||
|
'watcher_notifications_templates_body_confirm',
|
||||||
|
);
|
||||||
|
|
Reference in a new issue