mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-11 08:04:09 -08:00
934afa036f
Shift automatically applies the Laravel coding style - which uses the PSR-2 coding style as a base with some minor additions. You may customize the adopted coding style by adding your own [PHP CS Fixer][1] `.php_cs` config file to your project root. Feel free to use [Shift's Laravel ruleset][2] to help you get started. [1]: https://github.com/FriendsOfPHP/PHP-CS-Fixer [2]: https://gist.github.com/laravel-shift/cab527923ed2a109dda047b97d53c200
45 lines
1.6 KiB
PHP
45 lines
1.6 KiB
PHP
<?php
|
|
|
|
return [
|
|
|
|
'account_already_exists' => '此邮箱已经被注册。',
|
|
'account_not_found' => '用户名或密码错误',
|
|
'account_not_activated' => '用户还未激活',
|
|
'account_suspended' => '账户已经被停用',
|
|
'account_banned' => '账户已经被禁用',
|
|
'throttle' => '登录失败的次数太多。请在 :minutes分钟后重试。',
|
|
|
|
'two_factor' => [
|
|
'already_enrolled' => '您的设备已经登记了。',
|
|
'success' => '恭喜,登陆成功。',
|
|
'code_required' => '需要两步验证码。',
|
|
'invalid_code' => '两步验证码无效。',
|
|
],
|
|
|
|
'signin' => [
|
|
'error' => '登陆过程中出现了一点儿问题,请重试。',
|
|
'success' => '恭喜,登陆成功。',
|
|
],
|
|
|
|
'logout' => [
|
|
'error' => '登陆过程中出现了一点儿问题,请重试。',
|
|
'success' => '恭喜,登陆成功。',
|
|
],
|
|
|
|
'signup' => [
|
|
'error' => '在创建您的账户的过程中出现了一点儿问题,请重试。',
|
|
'success' => '账户创建成功。',
|
|
],
|
|
|
|
'forgot-password' => [
|
|
'error' => '重置密码过程中出现了一点儿问题,请重试。',
|
|
'success' => '如果该电子邮件地址存在于系统中,那么密码重置邮件已发送到您邮箱。',
|
|
],
|
|
|
|
'forgot-password-confirm' => [
|
|
'error' => '再重置密码过程中出现了一点儿问题,请重试。',
|
|
'success' => '密码重置成功。',
|
|
],
|
|
|
|
];
|