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.
24 lines
609 B
Text
24 lines
609 B
Text
Nowe zgłoszenie (#{ticket.title})
|
|
|
|
<div>Witaj #{recipient.firstname},</div>
|
|
<br>
|
|
<div>Otrzymałeś nowe zgłoszenie (#{ticket.title}) od "<b>#{current_user.longname}</b>".</div>
|
|
<br>
|
|
<div>
|
|
#{t('Group')}: #{ticket.group.name}<br>
|
|
#{t('Owner')}: #{ticket.owner.fullname}<br>
|
|
#{t('State')}: #{t(ticket.state.name)}<br>
|
|
</div>
|
|
<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}" target="zammad_app">Zobacz w Zammad</a>
|
|
</div>
|