Fix translations

This commit is contained in:
Thomas 2019-08-13 11:22:30 +02:00
parent d3d4fbe396
commit b984f2bd50
2 changed files with 6 additions and 4 deletions

View file

@ -1,3 +1,4 @@
{% trans_default_domain 'fediplan' %}
<header>
<!-- Fixed navbar -->
<nav class="navbar navbar-expand-md navbar-light fixed-top bg-light">
@ -9,20 +10,20 @@
<ul class="navbar-nav mr-auto">
{% if not is_granted('ROLE_USER') %}
<li class="nav-item {% if app.request.attributes.get('_route') == 'index' %} active {% endif %}">
<a class="nav-link" href="{{ path('index') }}">Login <span class="sr-only">(current)</span></a>
<a class="nav-link" href="{{ path('index') }}">{{ 'common.login'|trans }} <span class="sr-only">(current)</span></a>
</li>
{% endif %}
{% if is_granted('ROLE_USER') %}
<li class="nav-item {% if "articles" in app.request.attributes.get('schedule') %} active {% endif %}">
<a class="nav-link" href="{{ path('schedule') }}">Shedule</a>
<a class="nav-link" href="{{ path('schedule') }}">{{ 'common.schedule'|trans }}</a>
</li>
<li class="nav-item {% if app.request.attributes.get('_route') == 'scheduled' %} active {% endif %}">
<a class="nav-link" href="{{ path('scheduled') }}">scheduled</a>
<a class="nav-link" href="{{ path('scheduled') }}">{{ 'common.scheduled'|trans }}</a>
</li>
<li class="nav-item">
<a class="nav-link" href="{{ path('logout') }}" tabindex="-1" >Logout</a>
<a class="nav-link" href="{{ path('logout') }}" tabindex="-1" >{{ 'common.logout'|trans }}</a>
</li>
<li class="nav-item">

View file

@ -5,6 +5,7 @@ common:
login: Login
schedule: Schedule
scheduled: Scheduled
logout: Logout
status:
visibility:
public: Public