From d9659ef15104d6d357dc0472b9238fa69d1fa84b Mon Sep 17 00:00:00 2001 From: Dolu <47056777+dolutattoo@users.noreply.github.com> Date: Fri, 9 Sep 2022 04:51:58 +0200 Subject: [PATCH] fix(locales): use 'price' locale instead of raw english --- [esx_addons]/esx_property/client/furniture.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/[esx_addons]/esx_property/client/furniture.lua b/[esx_addons]/esx_property/client/furniture.lua index 1d718e2d..4c15bada 100644 --- a/[esx_addons]/esx_property/client/furniture.lua +++ b/[esx_addons]/esx_property/client/furniture.lua @@ -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)