Skip to content

Commit

Permalink
chore: bpt_ballasjob) replace _U with TranslateCap
Browse files Browse the repository at this point in the history
  • Loading branch information
bitpredator committed Mar 26, 2024
1 parent cb635c8 commit 5371ee6
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 20 deletions.
30 changes: 15 additions & 15 deletions server-data/resources/[bpt_addons]/bpt_ballasjob/client/main.lua
Original file line number Diff line number Diff line change
Expand Up @@ -41,15 +41,15 @@ end

function OpenballasActionsMenu()
local elements = {
{ unselectable = true, icon = "fas fa-ballas", title = _U("ballas") },
{ icon = "fas fa-box", title = _U("deposit_stock"), value = "put_stock" },
{ icon = "fas fa-box", title = _U("take_stock"), value = "get_stock" },
{ unselectable = true, icon = "fas fa-ballas", title = TranslateCap("ballas") },
{ icon = "fas fa-box", title = TranslateCap("deposit_stock"), value = "put_stock" },
{ icon = "fas fa-box", title = TranslateCap("take_stock"), value = "get_stock" },
}

if Config.EnablePlayerManagement and ESX.PlayerData.job ~= nil and ESX.PlayerData.job.grade_name == "boss" then
elements[#elements + 1] = {
icon = "fas fa-wallet",
title = _U("boss_actions"),
title = TranslateCap("boss_actions"),
value = "boss_actions",
}
end
Expand All @@ -69,41 +69,41 @@ function OpenballasActionsMenu()
end
end, function()
CurrentAction = "ballas_actions_menu"
CurrentActionMsg = _U("press_to_open")
CurrentActionMsg = TranslateCap("press_to_open")
CurrentActionData = {}
end)
end

function OpenMobileBallasActionsMenu()
local elements = {
{ unselectable = true, icon = "fas fa-ballas", title = _U("ballas") },
{ icon = "fas fa-scroll", title = _U("billing"), value = "billing" },
{ unselectable = true, icon = "fas fa-ballas", title = TranslateCap("ballas") },
{ icon = "fas fa-scroll", title = TranslateCap("billing"), value = "billing" },
}

ESX.OpenContext("right", elements, function(_, element)
if element.value == "billing" then
local elements2 = {
{ unselectable = true, icon = "fas fa-ballas", title = element.title },
{
title = _U("amount"),
title = TranslateCap("amount"),
input = true,
inputType = "number",
inputMin = 1,
inputMax = 250000,
inputPlaceholder = _U("bill_amount"),
inputPlaceholder = TranslateCap("bill_amount"),
},
{ icon = "fas fa-check-double", title = _U("confirm"), value = "confirm" },
{ icon = "fas fa-check-double", title = TranslateCap("confirm"), value = "confirm" },
}

ESX.OpenContext("right", elements2, function(menu2)
local amount = tonumber(menu2.eles[2].inputValue)
if amount == nil then
ESX.ShowNotification(_U("amount_invalid"))
ESX.ShowNotification(TranslateCap("amount_invalid"))
else
ESX.CloseContext()
local closestPlayer, closestDistance = ESX.Game.GetClosestPlayer()
if closestPlayer == -1 or closestDistance > 3.0 then
ESX.ShowNotification(_U("no_players_near"))
ESX.ShowNotification(TranslateCap("no_players_near"))
else
TriggerServerEvent(
"esx_billing:sendBill",
Expand All @@ -112,7 +112,7 @@ function OpenMobileBallasActionsMenu()
"Ballas",
amount
)
ESX.ShowNotification(_U("billing_sent"))
ESX.ShowNotification(TranslateCap("billing_sent"))
end
end
end)
Expand All @@ -123,7 +123,7 @@ end
AddEventHandler("bpt_ballasjob:hasEnteredMarker", function(zone)
if zone == "BallasActions" then
CurrentAction = "ballas_actions_menu"
CurrentActionMsg = _U("press_to_open")
CurrentActionMsg = TranslateCap("press_to_open")
CurrentActionData = {}
end
end)
Expand All @@ -148,7 +148,7 @@ CreateThread(function()
SetBlipAsShortRange(blip, true)

BeginTextCommandSetBlipName("STRING")
AddTextComponentSubstringPlayerName(_U("blip_ballas"))
AddTextComponentSubstringPlayerName(TranslateCap("blip_ballas"))
EndTextCommandSetBlipName(blip)
end)

Expand Down
10 changes: 5 additions & 5 deletions server-data/resources/[bpt_addons]/bpt_ballasjob/server/main.lua
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,12 @@ AddEventHandler("bpt_ballasjob:getStockItem", function(itemName, count)
if xPlayer.canCarryItem(itemName, count) then
inventory.removeItem(itemName, count)
xPlayer.addInventoryItem(itemName, count)
xPlayer.showNotification(_U("have_withdrawn", count, item.label))
xPlayer.showNotification(TranslateCap("have_withdrawn", count, item.label))
else
xPlayer.showNotification(_U("player_cannot_hold"))
xPlayer.showNotification(TranslateCap("player_cannot_hold"))
end
else
xPlayer.showNotification(_U("quantity_invalid"))
xPlayer.showNotification(TranslateCap("quantity_invalid"))
end
end)
else
Expand All @@ -56,9 +56,9 @@ AddEventHandler("bpt_ballasjob:putStockItems", function(itemName, count)
if sourceItem.count >= count and count > 0 then
xPlayer.removeInventoryItem(itemName, count)
inventory.addItem(itemName, count)
xPlayer.showNotification(_U("have_deposited", count, item.label))
xPlayer.showNotification(TranslateCap("have_deposited", count, item.label))
else
xPlayer.showNotification(_U("quantity_invalid"))
xPlayer.showNotification(TranslateCap("quantity_invalid"))
end
end)
else
Expand Down

0 comments on commit 5371ee6

Please sign in to comment.