cfg_locales.lua

return {
	UI = {
		header = {
			title = "BANKING",
			tag = "SYSTEM",
			description = "Welcome to Fleeca Bank, {{playerName}}!\nManage your finances with ease, anytime and anywhere.",
			close = "Exit",
		},
		cardInfo = {
			bankBalance = "Bank Balance",
			walletBalance = "Wallet Balance",
		},
		transactions = {
			title = "Transaction History",
			description = "View all your recent transactions in one place.",
		},
		paymentOptions = {
			deposit = "Deposit",
			withdraw = "Withdraw",
			transfer = "Transfer",
			money = "Money",
		},
		quickActions = {
			["1"] = "1k",
			["2"] = "5k",
			["3"] = "10k",
			["4"] = "All",
		},
		input = {
			placeholder = "Enter Amount",
			idPlaceholder = "ID",
		},
		currency = "$",
	},
	Notify = {
		BankingError = { Title = "Banking", Description = "An error occurred during the banking process.", Type = "error" },
		NoWalletMoney = { Title = "Banking", Description = "You don't have enough money in your wallet!", Type = "error" },
		NoBankMoney = { Title = "Banking", Description = "You don't have enough money in your bank account!", Type = "error" },
		NoReceiver = { Title = "Banking", Description = "The receiver ID is invalid or does not exist.", Type = "error" },
		NoSelfTransfer = { Title = "Banking", Description = "You cannot transfer money to your own account.", Type = "error" },
	},
	Interaction = {
		HelpText = {
			OpenBanking = "~INPUT_CONTEXT~  Open Banking",
			OpenATM = "~INPUT_CONTEXT~  Use ATM",
		},
		FloatingText = {
			OpenBanking = "~INPUT_CONTEXT~ Open Banking",
			OpenATM = "~INPUT_CONTEXT~ Use ATM",
		},
		Target = {
			OpenBanking = {
				Icon = "fa-solid fa-building-columns",
				Label = "Open Banking",
			},
			OpenATM = {
				Icon = "fa-solid fa-credit-card",
				Label = "Use ATM",
			},
		},
	},
}

Last updated