From 72da18719f4f53e26bde1f4c9d3872e47bb58fd8 Mon Sep 17 00:00:00 2001 From: Matthias Date: Mon, 22 Nov 2021 20:24:38 +0100 Subject: [PATCH] fix sidebar header --- InvenTree/templates/InvenTree/settings/sidebar.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/InvenTree/templates/InvenTree/settings/sidebar.html b/InvenTree/templates/InvenTree/settings/sidebar.html index 00a3acdaaa..1a2a38f7fb 100644 --- a/InvenTree/templates/InvenTree/settings/sidebar.html +++ b/InvenTree/templates/InvenTree/settings/sidebar.html @@ -2,7 +2,7 @@ {% load static %} {% load inventree_extras %} -{% include "sidebar_header.html" with text="User Settings" icon='fa-user' %} +{% include "sidebar_header.html" with text='{% trans "User Settings" %} icon='fa-user' %} {% include "sidebar_item.html" with label='account' text='{% trans "Account Settings" %}' icon="fa-cog" %} {% include "sidebar_item.html" with label='user-display' text='{% trans "Display Settings" %}' icon="fa-desktop" %} @@ -13,7 +13,7 @@ {% if user.is_staff %} -{% include "sidebar_header.html" with text="Global Settings" icon='fa-cogs' %} +{% include "sidebar_header.html" with text='{% trans "Global Settings" %} icon='fa-cogs' %} {% include "sidebar_item.html" with label='server' text='{% trans "Server Configuration" %}' icon="fa-server" %} {% include "sidebar_item.html" with label='login' text='{% trans "Login Settings" %}' icon="fa-fingerprint" %}