diff --git a/InvenTree/templates/InvenTree/settings/settings.html b/InvenTree/templates/InvenTree/settings/settings.html index 7b141d2139..d7f5014b9f 100644 --- a/InvenTree/templates/InvenTree/settings/settings.html +++ b/InvenTree/templates/InvenTree/settings/settings.html @@ -250,18 +250,18 @@ $("#param-table").inventreeTable({ columns: [ { field: 'pk', - title: 'ID', + title: '{% trans "ID" %}', visible: false, switchable: false, }, { field: 'name', - title: 'Name', + title: '{% trans "Name" %}', sortable: 'true', }, { field: 'units', - title: 'Units', + title: '{% trans "Units" %}', sortable: 'true', }, { diff --git a/InvenTree/templates/InvenTree/settings/user.html b/InvenTree/templates/InvenTree/settings/user.html index d22c89954f..ba99a69fde 100644 --- a/InvenTree/templates/InvenTree/settings/user.html +++ b/InvenTree/templates/InvenTree/settings/user.html @@ -214,7 +214,7 @@ {% if ALL_LANG %} . {% trans "Show only sufficent" %} {% else %} - and hidden. {% trans "Show them too" %} + {% trans "and hidden." %} {% trans "Show them too" %} {% endif %}

diff --git a/InvenTree/templates/js/translated/part.js b/InvenTree/templates/js/translated/part.js index 89e09a314e..9f67794e4c 100644 --- a/InvenTree/templates/js/translated/part.js +++ b/InvenTree/templates/js/translated/part.js @@ -878,7 +878,7 @@ function loadPartTable(table, url, options={}) { col = { field: 'IPN', - title: 'IPN', + title: '{% trans "IPN" %}', }; if (!options.params.ordering) { diff --git a/InvenTree/templates/js/translated/stock.js b/InvenTree/templates/js/translated/stock.js index ba4238e6f7..c624278c93 100644 --- a/InvenTree/templates/js/translated/stock.js +++ b/InvenTree/templates/js/translated/stock.js @@ -1101,7 +1101,7 @@ function loadStockTable(table, options) { col = { field: 'part_detail.IPN', - title: 'IPN', + title: '{% trans "IPN" %}', sortName: 'part__IPN', visible: params['part_detail'], switchable: params['part_detail'],