mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-11-13 23:57:35 +00:00
rename templates as they use |trans and are therefore not limited to language fr
This commit is contained in:
@@ -0,0 +1,24 @@
|
||||
{% apply markdown_to_html %}
|
||||
# {{ 'notification.daily_digest.title'|trans }}
|
||||
|
||||
{{ 'notification.daily_digest.greeting'|trans({'%user%': user.label ?? user.email}) }},
|
||||
|
||||
{{ 'daily_notifications'|trans({'notification_count': notification_count}) }}
|
||||
|
||||
{% for notification in notifications %}
|
||||
## {{ notification.title }}
|
||||
|
||||
{{ notification.message }}
|
||||
|
||||
{{ 'notification.daily_digest.view_notification'|trans }}
|
||||
|
||||
{{ absolute_url(path('chill_main_notification_show', {'_locale': user.locale, 'id': notification.id }, false)) }}
|
||||
|
||||
{% if not loop.last %}
|
||||
---
|
||||
{% endif %}
|
||||
{% endfor %}
|
||||
|
||||
---
|
||||
{{ 'notification.daily_digest.signature'|trans }}
|
||||
{% endapply %}
|
||||
Reference in New Issue
Block a user