mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-11 16:14:18 -08:00
46 lines
1.6 KiB
PHP
46 lines
1.6 KiB
PHP
<?php
|
|
|
|
return array(
|
|
|
|
'account_already_exists' => '此邮箱已经被注册。',
|
|
'account_not_found' => '用户名或密码错误',
|
|
'account_not_activated' => '用户还未激活',
|
|
'account_suspended' => '账户已经被停用',
|
|
'account_banned' => '账户已经被禁用',
|
|
'throttle' => 'Too many failed login attempts. Please try again in :minutes minutes.',
|
|
|
|
'two_factor' => array(
|
|
'already_enrolled' => 'Your device is already enrolled.',
|
|
'success' => 'You have successfully logged in.',
|
|
'code_required' => 'Two-factor code is required.',
|
|
'invalid_code' => 'Two-factor code is invalid.',
|
|
),
|
|
|
|
'signin' => array(
|
|
'error' => '登陆过程中出现了一点儿问题,请重试。',
|
|
'success' => '恭喜,登陆成功。',
|
|
),
|
|
|
|
'logout' => array(
|
|
'error' => 'There was a problem while trying to log you out, please try again.',
|
|
'success' => 'You have successfully logged out.',
|
|
),
|
|
|
|
'signup' => array(
|
|
'error' => '在创建您的账户的过程中出现了一点儿问题,请重试。',
|
|
'success' => '账户创建成功。',
|
|
),
|
|
|
|
'forgot-password' => array(
|
|
'error' => '重置密码过程中出现了一点儿问题,请重试。',
|
|
'success' => 'If that email address exists in our system, a password recovery email has been sent.',
|
|
),
|
|
|
|
'forgot-password-confirm' => array(
|
|
'error' => '再重置密码过程中出现了一点儿问题,请重试。',
|
|
'success' => '密码重置成功。',
|
|
),
|
|
|
|
|
|
);
|