mirror of
https://github.com/qbcore-fivem/qb-core.git
synced 2026-08-29 04:01:24 +00:00
4dd082f551
Updated Chinese translation
32 lines
1.3 KiB
Lua
32 lines
1.3 KiB
Lua
local Translations = {
|
|
error = {
|
|
not_online = '玩家不在线',
|
|
wrong_format = '格式错误',
|
|
missing_args = '请输入必须参数 (x, y, z)',
|
|
missing_args2 = '请输入所有参数!',
|
|
no_access = '你没有权限',
|
|
company_too_poor = '你所在的公司账户目前发不起工资',
|
|
item_not_exist = '该物品不存在',
|
|
too_heavy = '背包已满',
|
|
duplicate_license = '发现重复的 Rockstar 许可证',
|
|
no_valid_license = '未找到有效的 Rockstar 许可证',
|
|
not_whitelisted = '您没有被列入此服务器的白名单'
|
|
},
|
|
success = {},
|
|
info = {
|
|
received_paycheck = '你收到了你的工资 $%{value}',
|
|
job_info = '工作: %{value} | 级别: %{value2} | 工作状态状态: %{value3}',
|
|
gang_info = '帮派: %{value} | 级别: %{value2}',
|
|
on_duty = '你开始上班了!',
|
|
off_duty = '你现在下班了!',
|
|
checking_ban = '你好 %s. 我们正在检查你是否被服务器封禁.',
|
|
join_server = '欢迎 %s 进入 {Server Name}.',
|
|
checking_whitelisted = '你好 %s. 我们正在检查您是否在白名单内.'
|
|
}
|
|
}
|
|
|
|
Lang = Locale:new({
|
|
phrases = Translations,
|
|
warnOnMissing = true
|
|
})
|