diff --git a/mayan/apps/mailer/settings.py b/mayan/apps/mailer/settings.py index 60874e4cc1..6a36e766da 100644 --- a/mayan/apps/mailer/settings.py +++ b/mayan/apps/mailer/settings.py @@ -17,7 +17,10 @@ setting_link_subject_template = namespace.add_setting( ) setting_link_body_template = namespace.add_setting( default=DEFAULT_LINK_BODY_TEMPLATE, - help_text=_('Template for the document link email form body text. Can include HTML.'), + help_text=_( + 'Template for the document link email form body text. ' + 'Can include HTML.' + ), global_name='MAILER_LINK_BODY_TEMPLATE' ) setting_document_subject_template = namespace.add_setting( @@ -27,6 +30,8 @@ setting_document_subject_template = namespace.add_setting( ) setting_document_body_template = namespace.add_setting( default=DEFAULT_DOCUMENT_BODY_TEMPLATE, - help_text=_('Template for the document email form body text. Can include HTML.'), + help_text=_( + 'Template for the document email form body text. Can include HTML.' + ), global_name='MAILER_DOCUMENT_BODY_TEMPLATE' )