From 492bd53593f6b5daedfc14a2051507bd5b724e92 Mon Sep 17 00:00:00 2001 From: Jim Shield Date: Sun, 11 Sep 2022 22:43:20 +0100 Subject: [PATCH] locale fix --- client/client.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/client.lua b/client/client.lua index 64f4899..3c581c4 100644 --- a/client/client.lua +++ b/client/client.lua @@ -86,7 +86,7 @@ RegisterNetEvent('jim-payments:client:Charge', function(data, outside) --Check if image was given when opening the regsiter local img = data.img or "" --Continue adding payment options to qb-input - newinputs[#newinputs+1] = { type = 'radio', name = 'billtype', text = Loc[Config.Lan].menu["type"], options = { { value = "cash", text = Loc[Config.Lan].menu["cash"] }, { value = "bank", text = Loc[Config.Lan].menu["Card"] } } } + newinputs[#newinputs+1] = { type = 'radio', name = 'billtype', text = Loc[Config.Lan].menu["type"], options = { { value = "cash", text = Loc[Config.Lan].menu["cash"] }, { value = "bank", text = Loc[Config.Lan].menu["card"] } } } newinputs[#newinputs+1] = { type = 'number', isRequired = true, name = 'price', text = Loc[Config.Lan].menu["amount_charge"] } --Grab Player Job name or Gang Name if needed local label = PlayerJob.label