mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
1d2adecd79
* Traditional Chinese language support * Rename zh-tw to zh-tw.json * Rename zh-tw.json to zh-TW.json * Update zh-TW.json * Create preferences.php * Update zh-TW.json * Create auth.php * Create commands.php * Create pagination.php * Create passwords.php * Create validation.php * Update auth.php * Update passwords.php * Update zh-TW.json
23 lines
782 B
PHP
23 lines
782 B
PHP
<?php
|
|
|
|
return [
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Password Reset Language Lines
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| The following language lines are the default lines which match reasons
|
|
| that are given by the password broker for a password update attempt
|
|
| has failed, such as for an invalid token or invalid new password.
|
|
|
|
|
*/
|
|
|
|
'password' => '密碼至少需要六個字元,並且要確認兩者相符。',
|
|
'reset' => '您的密碼已重置。',
|
|
'sent' => '已經寄送密碼重置連結至您的電子郵件信箱。',
|
|
'token' => '此密碼重置權仗無效。',
|
|
'user' => "找不到使用者的電子郵件位址。",
|
|
|
|
];
|