64a87b1c67
- Translations are no longer fetched from the cloud. - Instead, they are extracted from the codebase and stored in i18n/zammad.pot. - Translations will be managed via a public Weblate instance soon. - The translated .po files are fed to the database as before. - It is now possible to change "translation" strings for en-us locally via the admin GUI. - It is no longer possible to submit local changes.
29 lines
745 B
Text
29 lines
745 B
Text
Chamado atualizado (#{ticket.title})
|
|
|
|
<div>Oi #{recipient.firstname},</div>
|
|
<br>
|
|
<div>
|
|
O chamado (#{ticket.title}) foi atualizado por "<b>#{current_user.longname}</b>".
|
|
</div>
|
|
<br>
|
|
<% if @objects[:changes].present? %>
|
|
<div>
|
|
#{t('Changes')}:<br>
|
|
<% @objects[:changes].each do |key, value| %>
|
|
<%= t key %>: <%= h value[0] %> -> <%= h value[1] %><br>
|
|
<% end %>
|
|
</div>
|
|
<% end %>
|
|
<br>
|
|
<% if @objects[:article] %>
|
|
<div>
|
|
#{t('Information')}:
|
|
<blockquote type="cite">
|
|
#{article.body_as_html}
|
|
</blockquote>
|
|
</div>
|
|
<% end %>
|
|
<br>
|
|
<div>
|
|
<a href="#{config.http_type}://#{config.fqdn}/#ticket/zoom/#{ticket.id}<% if @objects[:article] %>/#{article.id}<% end %>" target="zammad_app">Veja mais informações no Zammad</a>
|
|
</div>
|