2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-06-20 05:46:34 +00:00

updating language to be clearer

see https://github.com/inventree/InvenTree/issues/1889#issuecomment-891901070
This commit is contained in:
2021-08-04 00:45:56 +02:00
parent 529742b520
commit fa3c5ae108
3 changed files with 6 additions and 6 deletions

View File

@ -262,13 +262,13 @@ function loadBomTable(table, options) {
cols.push(
{
field: 'price_range',
title: '{% trans "Buy Price" %}',
title: '{% trans "Supplier Cost" %}',
sortable: true,
formatter: function(value, row, index, field) {
if (value) {
return value;
} else {
return "<span class='warning-msg'>{% trans 'No pricing available' %}</span>";
return "<span class='warning-msg'>{% trans 'No supplier pricing available' %}</span>";
}
}
});