snipe-it/resources/lang/zh-CN/auth/message.php
snipe ddfa5776c5 Updated language strings
This absolutely sucks. Something changed in CrowdIn or something else, which results in this push being *thousands* of files because someone somewhere decided that `return [];` was vastly inferior to `return array();`

I'll try to fix it. :(

FML

Signed-off-by: snipe <snipe@snipe.net>
2022-01-13 21:27:29 -08:00

46 lines
1.6 KiB
PHP

<?php
return array(
'account_already_exists' => '此邮箱已经被注册。',
'account_not_found' => '用户名或密码错误',
'account_not_activated' => '用户还未激活',
'account_suspended' => '账户已经被停用',
'account_banned' => '账户已经被禁用',
'throttle' => '登录失败的次数太多。请在 :minutes分钟后重试。',
'two_factor' => array(
'already_enrolled' => '您的设备已经登记了。',
'success' => '恭喜,登陆成功。',
'code_required' => '需要两步验证码。',
'invalid_code' => '两步验证码无效。',
),
'signin' => array(
'error' => '登陆过程中出现了一点儿问题,请重试。',
'success' => '恭喜,登陆成功。',
),
'logout' => array(
'error' => '登陆过程中出现了一点儿问题,请重试。',
'success' => '恭喜,登陆成功。',
),
'signup' => array(
'error' => '在创建您的账户的过程中出现了一点儿问题,请重试。',
'success' => '账户创建成功。',
),
'forgot-password' => array(
'error' => '重置密码过程中出现了一点儿问题,请重试。',
'success' => '如果该电子邮件地址存在于系统中,那么密码重置邮件已发送到您邮箱。',
),
'forgot-password-confirm' => array(
'error' => '再重置密码过程中出现了一点儿问题,请重试。',
'success' => '密码重置成功。',
),
);