diff --git a/InvenTree/templates/navbar.html b/InvenTree/templates/navbar.html index 2118bd2197..691b73f982 100644 --- a/InvenTree/templates/navbar.html +++ b/InvenTree/templates/navbar.html @@ -1,4 +1,5 @@ {% load static %} +{% load i18n %} @@ -6,11 +7,11 @@ - Parts - Stock - Build - Suppliers - Orders + {% trans "Parts" %} + {% trans "Stock" %} + {% trans "Build" %} + {% trans "Suppliers" %} + {% trans "Orders" %} {% include "search_form.html" %} @@ -19,16 +20,17 @@ {% if user.is_authenticated %} {% if user.is_staff %} - Admin + {% trans "Admin" %} {% endif %} - Settings - Logout + {% trans "Settings" %} + {% trans "Logout" %} {% else %} - Login + {% trans "Login" %} {% endif %} - About InvenTree + {% trans "About InvenTree" %} + {% trans "Statistics" %}