fix(locales): use 'price' locale instead of raw english

This commit is contained in:
Dolu
2022-09-09 04:51:58 +02:00
committed by GitHub
parent f621ab2a29
commit d9659ef151
@@ -267,7 +267,7 @@ if Config.Furniture.Enabled then
{title = _U("back"), value = "go-back", icon = "fas fa-arrow-left"}}
for k, v in pairs(Config.FurnitureCatagories[Catagory]) do
table.insert(Items, {title = v.title, value = v.name, index = k, description = "Price: " .. v.price, icon = "fas fa-shopping-cart"})
table.insert(Items, {title = v.title, value = v.name, index = k, description = _U("price", v.price), icon = "fas fa-shopping-cart"})
end
ESX.OpenContext("right", Items, function(data, element)