forked from gergely/calendar-social
Update translatable strings
Stop using the `_()` function, and use `{% trans %}` tags instead.
This commit is contained in:
@@ -1,7 +1,9 @@
|
||||
{% extends 'base.html' %}
|
||||
|
||||
{% block content %}
|
||||
{{ _('Welcome to Calendar.social, %(username)s!', username=current_user.username) }}
|
||||
{% trans username=current_user.username -%}
|
||||
Welcome to Calendar.social, {{username}}!
|
||||
{%- endtrans %}
|
||||
|
||||
{% include 'month-view.html' %}
|
||||
|
||||
|
Reference in New Issue
Block a user