2016-03-25 01:18:05 -07:00
|
|
|
<?php
|
|
|
|
|
|
|
|
return array(
|
|
|
|
|
2016-10-12 13:01:29 -07:00
|
|
|
'account_already_exists' => '此信箱已被註冊',
|
|
|
|
'account_not_found' => '使用者或密碼錯誤',
|
|
|
|
'account_not_activated' => '使用者尚未啟用',
|
|
|
|
'account_suspended' => '使用者已被停用',
|
|
|
|
'account_banned' => '使用者已被禁用',
|
2020-11-09 14:52:11 -08:00
|
|
|
'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.',
|
|
|
|
),
|
2016-03-25 01:18:05 -07:00
|
|
|
|
|
|
|
'signin' => array(
|
2016-10-12 13:01:29 -07:00
|
|
|
'error' => '登入過程中發生問題,請重試',
|
|
|
|
'success' => '登入成功',
|
2016-03-25 01:18:05 -07:00
|
|
|
),
|
|
|
|
|
2020-11-09 14:52:11 -08:00
|
|
|
'logout' => array(
|
|
|
|
'error' => 'There was a problem while trying to log you out, please try again.',
|
|
|
|
'success' => 'You have successfully logged out.',
|
|
|
|
),
|
|
|
|
|
2016-03-25 01:18:05 -07:00
|
|
|
'signup' => array(
|
2016-10-12 13:01:29 -07:00
|
|
|
'error' => '在新增帳戶時發生問題,請重試',
|
|
|
|
'success' => '新增帳戶成功。',
|
2016-03-25 01:18:05 -07:00
|
|
|
),
|
|
|
|
|
2020-11-09 14:52:11 -08:00
|
|
|
'forgot-password' => array(
|
|
|
|
'error' => '在重設密碼時發生問題,請重試',
|
|
|
|
'success' => 'If that email address exists in our system, a password recovery email has been sent.',
|
|
|
|
),
|
2016-03-25 01:18:05 -07:00
|
|
|
|
2020-11-09 14:52:11 -08:00
|
|
|
'forgot-password-confirm' => array(
|
|
|
|
'error' => '在重設密碼時發生問題,請重試',
|
|
|
|
'success' => '密碼重設成功。',
|
2016-03-25 01:18:05 -07:00
|
|
|
),
|
|
|
|
|
2020-11-09 14:52:11 -08:00
|
|
|
|
2016-03-25 01:18:05 -07:00
|
|
|
);
|