Default Locales
This section provides the default localization settings for Cloud HUD Premium, defining the standard text formats used in the HUD. You can adjust these to better suit your server’s needs.
return {
CancelProgress = "Cancel Progress", -- Key mapping description for canceling the progress bar
UI = {
currency = "$",
},
ConfigMenu = {
CommandSuggestion = "Configure HUD settings",
-- Main Menu
MainMenu = {
menu_title = "HUD - Main Settings",
hud = {
label = "HUD Display",
description = "Toggle the visibility of the HUD on your screen.",
icon = "power-off",
},
cinematic = {
label = "Cinematic Mode",
description = "Enable cinematic bars for a more immersive experience.",
icon = "film",
},
components = {
label = "Toggle Components",
description = "Adjust the visibility of individual HUD components.",
icon = "pen-to-square",
},
intervals = {
label = "Update Intervals",
description = "Configure update intervals to optimize performance.",
icon = "rocket",
},
},
-- Components Menu
ComponentsMenu = {
menu_title = "HUD - Toggle Components",
playerData = {
time_date = {
label = "Time & Date",
description = "Show or hide the time and date display.",
icon = "circle-info",
},
job = {
label = "Job",
description = "Show or hide the player's job title.",
icon = "circle-info",
},
player_id = {
label = "Player ID",
description = "Show or hide the player's ID.",
icon = "circle-info",
},
player_count = {
label = "Player Count",
description = "Show or hide the online player count.",
icon = "circle-info",
},
},
watermarkData = {
label = "Watermark",
description = "Show or hide the server watermark.",
icon = "circle-info",
},
moneyData = {
wallet = {
label = "Wallet",
description = "Show or hide the wallet balance.",
icon = "circle-info",
},
bank = {
label = "Bank",
description = "Show or hide the bank balance.",
icon = "circle-info",
},
},
ammoData = {
label = "Ammo",
description = "Show or hide the ammo count.",
icon = "circle-info",
},
statusData = {
hunger = {
label = "Hunger",
description = "Show or hide the hunger meter.",
icon = "circle-info",
},
thirst = {
label = "Thirst",
description = "Show or hide the thirst meter.",
icon = "circle-info",
},
stamina = {
label = "Stamina",
description = "Show or hide the stamina bar.",
icon = "circle-info",
},
stress = {
label = "Stress",
description = "Show or hide the stress meter.",
icon = "circle-info",
},
voice = {
label = "Voice",
description = "Show or hide the voice chat indicator.",
icon = "circle-info",
},
radio = {
label = "Radio",
description = "Show or hide the radio status.",
icon = "circle-info",
},
radioChannel = {
label = "Radio Channel",
description = "Show or hide the radio channel display.",
icon = "circle-info",
},
},
locationData = {
label = "Location",
description = "Show or hide the player’s location.",
icon = "circle-info",
},
speedoData = {
label = "Speedometer",
description = "Show or hide the speedometer.",
icon = "circle-info",
},
},
-- Intervals Menu
IntervalsMenu = {
menu_title = "HUD - Update Intervals",
player_data = {
label = "Player Data Update Interval",
description = "Set the update interval for player data (default: " .. Config.UpdateIntervals.PlayerData .. " ms).",
input_title = "Player Data Update Interval",
input_prompt = "Enter the desired interval for player data display (in milliseconds):",
icon = "user",
},
stamina = {
label = "Stamina Update Interval",
description = "Set the update interval for stamina data (default: " .. Config.UpdateIntervals.Stamina .. " ms).",
input_title = "Stamina Update Interval",
input_prompt = "Enter the desired interval for stamina display (in milliseconds):",
icon = "person-running",
},
ammo = {
label = "Ammo Update Interval",
description = "Set the update interval for ammo data (default: " .. Config.UpdateIntervals.Ammo .. " ms).",
input_title = "Ammo Update Interval",
input_prompt = "Enter the desired interval for ammo display (in milliseconds):",
icon = "gun",
},
speedo = {
label = "Speedometer Update Interval",
description = "Set the update interval for speedometer data (default: " .. Config.UpdateIntervals.Speedo .. " ms).",
input_title = "Speedometer Update Interval",
input_prompt = "Enter the desired interval for speedometer display (in milliseconds):",
icon = "gauge-high",
},
},
},
}
Last updated