翻译
Config.NotificationsText = { -- Notifications texts
['not_admin'] = { title = "Vehicle Shop", text = "You don't have permission to access the admin menu", time = 5000, type = "error"},
['inside_vehicle'] = { title = "Vehicle Shop", text = "You can't access the vehicle shop inside a vehicle", time = 5000, type = "error"},
['load_vehicle'] = { title = "Vehicle Shop", text = "Loading vehicle, please wait", time = 3000, type = "info"},
['stop_testdrive'] = { title = "Vehicle Shop", text = "Stopping the test drive", time = 5000, type = "success"},
['not_testdriving'] = { title = "Vehicle Shop", text = "You are not on a test drive", time = 5000, type = "error"},
['fill_fields'] = { title = "Vehicle Shop", text = "Please fill the input field", time = 5000, type = "error"},
['already_accepted'] = { title = "Vehicle Shop", text = "You already accepted an order, complete it before accepting another", time = 5000, type = "error"},
['not_selected_hire'] = { title = "Vehicle Shop", text = "No one was selected", time = 5000, type = "error"},
['ordered_success'] = { title = "Vehicle Shop", text = "You ordered x${amount} ${vehicle_name} successfully!", time = 5000, type = "success"},
['some_wrong'] = { title = "Vehicle Shop", text = "Something went wrong!", time = 5000, type = "error"},
['not_enough_money'] = { title = "Vehicle Shop", text = "You don't have enough money", time = 5000, type = "error"},
['not_enough_money_s'] = {title = "Vehicle Shop", text = "Your society doesn't have enough money", time = 5000, type = "error"},
['accepted_order'] = { title = "Vehicle Shop", text = "You accepted an order successfully", time = 5000, type = "success"},
['someone_accepted'] = { title = "Vehicle Shop", text = "Someone has already accepted this order", time = 5000, type = "error"},
['finished_order'] = { title = "Vehicle Shop", text = "You successfully finished the order and received ${reward}€", time = 5000, type = "success"},
['no_ads_cancel'] = { title = "Vehicle Shop", text = "You don't have any ads to cancel", time = 5000, type = "error"},
['veh_not_available'] = { title = "Vehicle Shop", text = "This vehicle isn't available", time = 5000, type = "error"},
['price_not_valid'] = { title = "Vehicle Shop", text = "This is not a valid price", time = 5000, type = "error"},
['employee_not_exist'] = {title = "Vehicle Shop", text = "This employee does not exist", time = 5000, type = "error"},
['not_enough_to_sell'] = {title = "Vehicle Shop", text = "You don't have enough vehicles to sell", time = 5000, type = "error"},
['got_hired'] = { title = "Vehicle Shop", text = "You got hired by ${shop_name}", time = 5000, type = "info"},
['got_fired'] = { title = "Vehicle Shop", text = "You got fired by ${shop_name}", time = 5000, type = "info"},
['success_hired'] = { title = "Vehicle Shop", text = "You successfully hired ${hired_name}", time = 5000, type = "success"},
['success_fired'] = { title = "Vehicle Shop", text = "You successfully fired ${fired_name}", time = 5000, type = "success"},
['success_added_ad'] = { title = "Vehicle Shop", text = "Added x${amount} ${vehicle_name} ads", time = 5000, type = "success"},
['deposited'] = { title = "Vehicle Shop", text = "Deposited ${amount}€ successfully", time = 5000, type = "success"},
['withdrawn'] = { title = "Vehicle Shop", text = "Whitdrawn ${amount}€ successfully", time = 5000, type = "success"},
['bought_veh'] = { title = "Vehicle Shop", text = "Bought ${vehicle_name} for ${vehiclePrice}€", time = 5000, type = "success"},
['change_money'] = { title = "Vehicle Shop", text = "Changed the ${shop_name} money to ${money} successfully", time = 5000, type = "success"},
['change_info'] = { title = "Vehicle Shop", text = "Changed the ${vehicle_name} informations successfully", time = 5000, type = "success"},
['remove_veh'] = { title = "Vehicle Shop", text = "Removed the ${vehicle_name} successfully", time = 5000, type = "success"},
['created_veh'] = { title = "Vehicle Shop", text = "Created a ${vehicle_name} successfully", time = 5000, type = "success"},
['cancel_ads'] = { title = "Vehicle Shop", text = "Canceled x${amount} ${vehicle_name} ads", time = 5000, type = "success"},
['updated_price'] = { title = "Vehicle Shop", text = "Updated price of ${vehicle_name} to ${amount}€", time = 5000, type = "success"},
['change_rank'] = { title = "Vehicle Shop", text = "${name} is now a ${job}", time = 5000, type = "success"},
['already_rank'] = { title = "Vehicle Shop", text = "${name} is already a ${job}", time = 5000, type = "error"},
['already_employee'] = { title = "Vehicle Shop", text = "${name} is your employee already", time = 5000, type = "error"},
['max_shops'] = { title = "Vehicle Shop", text = "You can't buy more dealerships", time = 5000, type = "error"},
['got_to_truck'] = { title = "Vehicle Shop", text = "Go get the order marked in your minimap", time = 5000, type = "info"},
['not_towing'] = { title = "Vehicle Shop", text = "You need to be closer to the ordered vehicle", time = 5000, type = "error"},
['towed'] = { title = "Vehicle Shop", text = "You successfully towed the ordered vehicle", time = 5000, type = "success"},
['sold_business'] = { title = "Vehicle Shop", text = "You successfully sold ${shop} for ${amount}€", time = 5000, type = "success"},
['leave_business'] = { title = "Vehicle Shop", text = "You successfully left ${shop}", time = 5000, type = "success"},
['min_max_price'] = { title = "Vehicle Shop", text = "The minimum price needs to be less than the maximum price", time = 5000, type = "error"},
['owner_changed'] = { title = "Vehicle Shop", text = "${owner} is now the owner of ${shop}", time = 5000, type = "success"},
['max_employees'] = { title = "Vehicle Shop", text = "You can only hire ${employees} employees", time = 5000, type = "error"},
}
-------------------------- DISCORD LOGS
-- To set your Discord Webhook URL go to webhook.lua, line 1
Config.BotName = 'ServerName' -- Write the desired bot name
Config.ServerName = 'ServerName' -- Write your server's name
Config.IconURL = '' -- Insert your desired image link
Config.DateFormat = '%d/%m/%Y [%X]' -- To change the date format check this website - https://www.lua.org/pil/22.1.html
-- To change a webhook color you need to set the decimal value of a color, you can use this website to do that - https://www.mathsisfun.com/hexadecimal-decimal-colors.html
Config.BuyBusinessWebhook = true
Config.BuyBusinessWebhookColor = '65280'
Config.SellBusinessWebhook = true
Config.SellBusinessWebhookColor = '16711680'
Config.DepositWebhook = true
Config.DepositWebhookColor = '16776960'
Config.WithdrawWebhook = true
Config.WithdrawWebhookColor = '16776960'
Config.StartOrderWebhook = true
Config.StartOrderWebhookColor = '16742656'
Config.EndOrderWebhook = true
Config.EndOrderWebhookColor = '16742656'
Config.HireWebhook = true
Config.HireWebhookColor = '4223487'
Config.FireWebhook = true
Config.FireWebhookColor = '4223487'
Config.BuyVehicleWebhook = true
Config.BuyVehicleWebhookColor = '65535'
Config.ADStockWebhook = true
Config.ADStockWebhookColor = '7209071'
Config.CancelStockWebhook = true
Config.CancelStockWebhookColor = '7209071'
Config.BuyStockWebhook = true
Config.BuyStockWebhookColor = '7209071'
Config.EditEmployeeRankWebhook = true
Config.EditEmployeeRankWebhookColor = '4223487'
Config.QuitJobWebhook = true
Config.QuitJobWebhookColor = '16711680'
Config.NotificationsText = { -- 通知文本
['not_admin'] = { title = "车辆商店", text = "您没有权限访问管理员菜单", time = 5000, type = "error"},
['inside_vehicle'] = { title = "车辆商店", text = "您无法在车辆内部访问车辆商店", time = 5000, type = "error"},
['load_vehicle'] = { title = "车辆商店", text = "正在加载车辆,请稍候", time = 3000, type = "info"},
['stop_testdrive'] = { title = "车辆商店", text = "停止试驾", time = 5000, type = "success"},
['not_testdriving'] = { title = "车辆商店", text = "您没有在试驾中", time = 5000, type = "error"},
['fill_fields'] = { title = "车辆商店", text = "请填写输入字段", time = 5000, type = "error"},
['already_accepted'] = { title = "车辆商店", text = "您已经接受了一个订单,请在接受另一个订单之前完成它", time = 5000, type = "error"},
['not_selected_hire'] = { title = "车辆商店", text = "未选择任何人", time = 5000, type = "error"},
['ordered_success'] = { title = "车辆商店", text = "您成功订购了 x${amount} ${vehicle_name}!", time = 5000, type = "success"},
['some_wrong'] = { title = "车辆商店", text = "出现错误!", time = 5000, type = "error"},
['not_enough_money'] = { title = "车辆商店", text = "您没有足够的钱", time = 5000, type = "error"},
['not_enough_money_s'] = { title = "车辆商店", text = "您的公司没有足够的钱", time = 5000, type = "error"},
['accepted_order'] = { title = "车辆商店", text = "您成功接受了一个订单", time = 5000, type = "success"},
['someone_accepted'] = { title = "车辆商店", text = "已有人接受了这个订单", time = 5000, type = "error"},
['finished_order'] = { title = "车辆商店", text = "您成功完成了订单并收到了 ${reward}€", time = 5000, type = "success"},
['no_ads_cancel'] = { title = "车辆商店", text = "您没有任何广告可以取消", time = 5000, type = "error"},
['veh_not_available'] = { title = "车辆商店", text = "该车辆不可用", time = 5000, type = "error"},
['price_not_valid'] = { title = "车辆商店", text = "这不是一个有效的价格", time = 5000, type = "error"},
['employee_not_exist'] = { title = "车辆商店", text = "此员工不存在", time = 5000, type = "error"},
['not_enough_to_sell'] = { title = "车辆商店", text = "您没有足够的车辆可出售", time = 5000, type = "error"},
['got_hired'] = { title = "车辆商店", text = "您被 ${shop_name} 雇佣了", time = 5000, type = "info"},
['got_fired'] = { title = "车辆商店", text = "您被 ${shop_name} 解雇了", time = 5000, type = "info"},
['success_hired'] = { title = "车辆商店", text = "您成功雇佣了 ${hired_name}", time = 5000, type = "success"},
['success_fired'] = { title = "车辆商店", text = "您成功解雇了 ${fired_name}", time = 5000, type = "success"},
['success_added_ad'] = { title = "车辆商店", text = "添加了 x${amount} ${vehicle_name} 广告", time = 5000, type = "success"},
['deposited'] = { title = "车辆商店", text = "成功存入了 ${amount}€", time = 5000, type = "success"},
['withdrawn'] = { title = "车辆商店", text = "成功取出了 ${amount}€", time = 5000, type = "success"},
['bought_veh'] = { title = "车辆商店", text = "以 ${vehiclePrice}€ 购买了 ${vehicle_name}", time = 5000, type = "success"},
['change_money'] = { title = "车辆商店", text = "成功将 ${shop_name} 的资金变更为 ${money}", time = 5000, type = "success"},
['change_info'] = { title = "车辆商店", text = "成功变更了 ${vehicle_name} 的信息", time = 5000, type = "success"},
['remove_veh'] = { title = "车辆商店", text = "成功移除了 ${vehicle_name}", time = 5000, type = "success"},
['created_veh'] = { title = "车辆商店", text = "成功创建了 ${vehicle_name}", time = 5000, type = "success"},
['cancel_ads'] = { title = "车辆商店", text = "取消了 x${amount} ${vehicle_name} 广告", time = 5000, type = "success"},
['updated_price'] = { title = "车辆商店", text = "将 ${vehicle_name} 的价格更新为 ${amount}€", time = 5000, type = "success"},
['change_rank'] = { title = "车辆商店", text = "${name} 现在是一个 ${job}", time = 5000, type = "success"},
['already_rank'] = { title = "车辆商店", text = "${name} 已经是一个 ${job}", time = 5000, type = "error"},
['already_employee'] = { title = "车辆商店", text = "${name} 已经是您的员工", time = 5000, type = "error"},
['max_shops'] = { title = "车辆商店", text = "您不能再购买更多的经销商", time = 5000, type = "error"},
['got_to_truck'] = { title = "车辆商店", text = "去获取标记在迷你地图上的订单", time = 5000, type = "info"},
['not_towing'] = { title = "车辆商店", text = "您需要靠近已订购的车辆", time = 5000, type = "error"},
['towed'] = { title = "车辆商店", text = "您成功拖走了已订购的车辆", time = 5000, type = "success"},
['sold_business'] = { title = "车辆商店", text = "您成功出售了 ${shop},售价为 ${amount}€", time = 5000, type = "success"},
['leave_business'] = { title = "车辆商店", text = "您成功离开了 ${shop}", time = 5000, type = "success"},
['min_max_price'] = { title = "车辆商店", text = "最低价格需要小于最高价格", time = 5000, type = "error"},
['owner_changed'] = { title = "车辆商店", text = "${owner} 现在是 ${shop} 的所有者", time = 5000, type = "success"},
['max_employees'] = { title = "车辆商店", text = "您只能雇佣 ${employees} 个员工", time = 5000, type = "error"},
}
-------------------------- DISCORD 日志
-- 要设置您的Discord Webhook URL,请转到webhook.lua,第1行
Config.BotName = '服务器名称' -- 输入所需的机器人名称
Config.ServerName = '服务器名称' -- 输入您的服务器名称
Config.IconURL = '' -- 插入您所需的图片链接
Config.DateFormat = '%d/%m/%Y ' -- 要更改日期格式,请查看此网站-https://www.lua.org/pil/22.1.html
-- 要更改Webhook颜色,您需要设置颜色的十进制值,您可以使用此网站来进行转换-https://www.mathsisfun.com/hexadecimal-decimal-colors.html
Config.BuyBusinessWebhook = true
Config.BuyBusinessWebhookColor = '65280'
Config.SellBusinessWebhook = true
Config.SellBusinessWebhookColor = '16711680'
Config.DepositWebhook = true
Config.DepositWebhookColor = '16776960'
Config.WithdrawWebhook = true
Config.WithdrawWebhookColor = '16776960'
Config.StartOrderWebhook = true
Config.StartOrderWebhookColor = '16742656'
Config.EndOrderWebhook = true
Config.EndOrderWebhookColor = '16742656'
Config.HireWebhook = true
Config.HireWebhookColor = '4223487'
Config.FireWebhook = true
Config.FireWebhookColor = '4223487'
Config.BuyVehicleWebhook = true
Config.BuyVehicleWebhookColor = '65535'
Config.ADStockWebhook = true
Config.ADStockWebhookColor = '7209071'
Config.CancelStockWebhook = true
Config.CancelStockWebhookColor = '7209071'
Config.BuyStockWebhook = true
Config.BuyStockWebhookColor = '7209071'
Config.EditEmployeeRankWebhook = true
Config.EditEmployeeRankWebhookColor = '4223487'
Config.QuitJobWebhook = true
Config.QuitJobWebhookColor = '16711680'
页:
[1]