mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-02-11 08:23:49 +00:00
Fix i18n for menu strings
- There should not be a space in front of the text. This is a styling issue. - Remove the CSS rule causing issues with spacing. Signed-off-by: Sunil Mohan Adapa <sunil@medhas.org>
This commit is contained in:
parent
de5ba012e1
commit
d89011cc01
@ -110,7 +110,7 @@
|
||||
{% if user.is_authenticated and user_is_admin %}
|
||||
<li>
|
||||
{% url 'index' as index_url %}
|
||||
<a href="{{ index_url }}" title='{% trans " Home" %}'
|
||||
<a href="{{ index_url }}" title='{% trans "Home" %}'
|
||||
class="{% if not submenu.url %}
|
||||
menu_link_active {% else %} menu_link {% endif %}">
|
||||
{% trans "Home" %}
|
||||
@ -118,7 +118,7 @@
|
||||
</li>
|
||||
<li>
|
||||
{% url 'apps' as apps_url %}
|
||||
<a href="{{ apps_url }}" title='{% trans " Apps" %}'
|
||||
<a href="{{ apps_url }}" title='{% trans "Apps" %}'
|
||||
class="{% if apps_url == submenu.url %}
|
||||
menu_link_active {% else %} menu_link {% endif %}">
|
||||
<span class="fa fa-th"></span>
|
||||
@ -127,7 +127,7 @@
|
||||
</li>
|
||||
<li>
|
||||
{% url 'system' as system_url %}
|
||||
<a href="{{ system_url }}" title='{% trans " System" %}'
|
||||
<a href="{{ system_url }}" title='{% trans "System" %}'
|
||||
class="{% if system_url == submenu.url %}
|
||||
menu_link_active {% else %} menu_link {% endif %}">
|
||||
<span class="fa fa-cog nav-icon"></span>
|
||||
|
||||
@ -264,10 +264,6 @@ footer license-info p {
|
||||
background: transparent;
|
||||
}
|
||||
|
||||
.main-header .navbar-nav>li>a .nav-icon {
|
||||
margin-right: 0px;
|
||||
}
|
||||
|
||||
.navbar-default .navbar-toggle .icon-bar {
|
||||
background-color: #FFF;
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user