[UI][I18N] Add missing translation tags in templates/cards/navigation/view.html.twig

This commit is contained in:
Hugo Sales 2021-12-23 17:12:26 +00:00 committed by Diogo Peralta Cordeiro
parent 69565e3f49
commit a36bdf9719
Signed by: diogo
GPG Key ID: 18D2D35001FBFAB0
1 changed files with 5 additions and 5 deletions

View File

@ -15,7 +15,7 @@
{% if not app.user %} {# Default feeds #} {% if not app.user %} {# Default feeds #}
<ul> <ul>
<li> <li>
<a href="{{ path('feed_public') }}" class='{{ active('feed_public') }}'> <a href="{{ path('feed_public') }}" class='hover-effect {{ active('feed_public') }}'>
{{ 'Feed' | trans }} {{ 'Feed' | trans }}
</a> </a>
</li> </li>
@ -45,11 +45,11 @@
<nav tabindex="0" class="profile-navigation" title="{{ 'Navigate through account related pages.' | trans }}"> <nav tabindex="0" class="profile-navigation" title="{{ 'Navigate through account related pages.' | trans }}">
<a title='{{ 'Access your account settings.' | trans }}' href="{{ path('settings') }}" class='{{ active('settings') }}'> <a title='{{ 'Access your account settings.' | trans }}' href="{{ path('settings') }}" class='{{ active('settings') }}'>
Settings {% trans %}Settings{% endtrans %}
</a> </a>
<a title='{{ 'Logout from your account.' | trans }}' href='{{ path('security_logout') }}'> <a title='{{ 'Logout from your account.' | trans }}' href='{{ path('security_logout') }}'>
Logout {% trans %}Logout{% endtrans %}
</a> </a>
</nav> </nav>
{% endblock profile_current_actor %} {% endblock profile_current_actor %}
@ -60,11 +60,11 @@
<nav tabindex="0" class="profile-navigation" title="{{ 'Navigate through account related pages.' | trans }}"> <nav tabindex="0" class="profile-navigation" title="{{ 'Navigate through account related pages.' | trans }}">
<a title='{{ 'Login with your existing account.' | trans }}' href="{{ path('security_login') }}" class='hover-effect {{ active('login') }}'> <a title='{{ 'Login with your existing account.' | trans }}' href="{{ path('security_login') }}" class='hover-effect {{ active('login') }}'>
Login {% trans %}Login{% endtrans %}
</a> </a>
<a title='{{ 'Register a new account!' | trans }}' href="{{ path('security_register') }}"> <a title='{{ 'Register a new account!' | trans }}' href="{{ path('security_register') }}">
Register {% trans %}Register{% endtrans %}
</a> </a>
</nav> </nav>