mirror of https://github.com/zulip/zulip.git
email: Remove translation tags from email templates.
The only thing being translated in any email was the title of the Zulip header image in the html file, probably because not doing so breaks a linter rule. he name "Zulip" doesn't make sense to translate anyway.
This commit is contained in:
parent
975d5bd8c0
commit
21a2c7b9d9
|
@ -7,7 +7,7 @@
|
|||
<body>
|
||||
<table width="80%" style="align:center; max-width:800px" align="center">
|
||||
<tr><td>
|
||||
<a href="{{ realm_uri }}/"><img style="max-height:75px; height:75px;" height="75px" alt="Zulip" title="{{ _('Zulip') }}" src="{{ realm_uri }}/static/images/landing-page/zulip-header.png" /></a>
|
||||
<a href="{{ realm_uri }}/"><img style="max-height:75px; height:75px;" height="75px" alt="Zulip" title="Zulip" src="{{ realm_uri }}/static/images/landing-page/zulip-header.png" /></a>
|
||||
|
||||
<h3 style="font-family:Arial; font-size:30px; margin: 5px 0px; color:#555">we love our users</h3>
|
||||
</td></tr>
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
<body>
|
||||
<table width="80%" style="align:center; max-width:800px" align="center">
|
||||
<tr><td>
|
||||
<a href="{{ realm_uri }}/"><img style="max-height:75px; height:75px;" height="75px" alt="Zulip" title="{{ _('Zulip') }}" src="{{ realm_uri }}/static/images/landing-page/zulip-header.png" /></a>
|
||||
<a href="{{ realm_uri }}/"><img style="max-height:75px; height:75px;" height="75px" alt="Zulip" title="Zulip" src="{{ realm_uri }}/static/images/landing-page/zulip-header.png" /></a>
|
||||
|
||||
<h3 style="font-family:Arial; font-size:30px; margin: 5px 0px; color:#555">one last thing</h3>
|
||||
</td></tr>
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
<tr>
|
||||
<td>
|
||||
<a href="{{ server_uri }}/hello">
|
||||
<img style="max-height:75px; height:75px;" height="75px" alt="Zulip" title="{{ _('Zulip') }}" src="{{ server_uri }}/static/images/landing-page/zulip-header.png" />
|
||||
<img style="max-height:75px; height:75px;" height="75px" alt="Zulip" title="Zulip" src="{{ server_uri }}/static/images/landing-page/zulip-header.png" />
|
||||
</a>
|
||||
<h3 style="font-family:Arial; font-size:30px; margin: 5px 0px; color:#555">
|
||||
you're busy: we get you
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
<table width="80%" style="align:center; max-width:800px" align="center">
|
||||
<tr>
|
||||
<td>
|
||||
<a href="{{ realm_uri }}"><img style="max-height:75px; height:75px;" height="75px" alt="Zulip" title="{{ _('Zulip') }}" src="{{ realm_uri }}/static/images/landing-page/zulip-header.png" /></a>
|
||||
<a href="{{ realm_uri }}"><img style="max-height:75px; height:75px;" height="75px" alt="Zulip" title="Zulip" src="{{ realm_uri }}/static/images/landing-page/zulip-header.png" /></a>
|
||||
<h3 style="font-family:Arial; font-size:30px; margin: 5px 0px; color:#555">New login to Zulip</h3>
|
||||
</td>
|
||||
</tr>
|
||||
|
|
|
@ -501,6 +501,7 @@ def build_custom_checkers(by_lang):
|
|||
('templates/zerver/markdown_help.html',
|
||||
'<td><img alt=":heart:" class="emoji" src="/static/generated/emoji/images/emoji/heart.png" title=":heart:" /></td>')
|
||||
]),
|
||||
'exclude': set(["templates/zerver/emails"]),
|
||||
'description': "`title` value should be translatable."},
|
||||
] # type: RuleList
|
||||
handlebars_rules = html_rules + [
|
||||
|
|
Loading…
Reference in New Issue