Skip to content
Snippets Groups Projects
Commit 28be811b authored by Fabrice Salvaire's avatar Fabrice Salvaire
Browse files

fixed translation

parent 5a9660c4
No related branches found
No related tags found
No related merge requests found
......@@ -172,7 +172,7 @@
">
<a href="{% if menu.url %}{{ url(menu.url) }}{% else %}#{% endif %}">
{% if menu.icon %}<span class="menu-icon">{{ icon(menu.icon) }}</span>{% endif %}
<span>{{ menu.title }}</span>
<span>{{ _(menu.title) }}</span>
</a>
{% if menu.as_childs %}
<ul class="sub-menu">
......@@ -180,7 +180,7 @@
<li class="{% if submenu.url == url_name %}active{% endif %}">
<a href="{{ url(submenu.url) }}">
{% if menu.icon %}<span class="menu-icon">{{ icon(submenu.icon) }}</span>{% endif %}
<span>{{ submenu.title }}</span>
<span>{{ _(submenu.title) }}</span>
</a>
</li>
{% endfor %}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment