以下是上述代码的中文汉化版本,包括文本消息、Discord网络钩子以及通知功能:
-- 翻译
Config.text1 = "在线公民"
Config.text2 = "点击重新发送全局通知"
Config.text3 = "附近没有玩家"
Config.text4 = "该公民被通缉"
Config.text5 = "该公民不是通缉犯"
Config.text6 = "你不是警察或者你没有在执勤"
Config.text12 = "你被逮捕了"
Config.text13 = "一个 NPC 已经发现你并报警了"
Config.text14 = "发现被通缉人员"
Config.text15 = "公民现已被通缉"
Config.text16 = "你现在被通缉"
Config.text17 = "通知已发送给公民"
Config.text18 = "该公民不再被通缉"
Config.text19 = "你不再被通缉"
Config.text20 = "位置已标记在小地图上"
-- Discord Webhooks
Config.wanteddiscord = "" -- 被通缉 webhook
Config.notwanteddiscord = "" -- 不再被通缉 webhook
Config.wantedtitle = "玩家被通缉"
Config.notwantedtitle = "玩家不再被通缉"
Config.BlacklistedPeds = { -- 不会报告给警察的 NPC,检查哈希值,参考 https://wiki.gtanet.work/index.php/Peds
1885233650, -- mp_freemode 男性
-1667301416, -- mp_freemode 女性
-832573324, -- 动物
1462895032, -- 动物
-1430839454, -- 动物
-1469565163, -- 动物
351016938, -- 动物
1457690978, -- 动物
-50684386, -- 动物
1682622302, -- 动物
402729631, -- 动物
-664053099, -- 动物
-1950698411, -- 动物
802685111, -- 动物
1015224100, -- 动物
1794449327, -- 动物
1193010354, -- 动物
1318032802, -- 动物
-1920284487, -- 动物
307287994, -- 动物
-1323586730, -- 动物
111281960, -- 动物
1125994524, -- 动物
1832265812, -- 动物
-541762431, -- 动物
-1011537562, -- 动物
882848737, -- 动物
-1026527405, -- 动物
-1788665315, -- 动物
-745300483, -- 动物
1126154828, -- 动物
-1589092019, -- 动物
113504370, -- 动物
-1384627013 -- 动物
}
Config.Notification = function(message, type) -- 可以在这里修改通知事件
if Config.Framework == "newesx" or Config.Framework == "oldesx" then
TriggerEvent("esx:showNotification", message)
elseif Config.Framework == "newqb" or Config.Framework == "oldqb" then
TriggerEvent('QBCore:Notify', message, type, 1500)
elseif Config.Framework == "custom" then
-- 在这里放置你的通知事件
-- 或使用 GTA 默认通知
SetNotificationTextEntry("STRING")
AddTextComponentString(message)
DrawNotification(false, false)
end
end
请根据你的需求调整以上内容。如果你有其他翻译需求或代码相关问题,请随时告诉我! |