mirror of
https://github.com/esx-framework/esx_core.git
synced 2026-09-01 11:01:43 +00:00
fix(locales): use 'price' locale instead of raw english
This commit is contained in:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user