mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
* Chinese translation fixes Chinese translation fixes * Update settings.php Chinese translation fixes * [Chinese Translation] Massive changes to the Chinese interface translation. * [Chinese Translation] Massive changes to the Chinese interface translation. * Update validation.php Fix syntax errors * Update validation.php Fix syntax errors * Chinese Massive changes to the Chinese interface translation. * Update auth.php * Update bgp.php * Update commands.php * Update commands.php * Update components.php * Update components.php * Update device.php * Update exceptions.php * Update install.php * Update inventory.php * Update map.php * Update modules.php * Update pagination.php * Update passwords.php * Update plugins.php * Update poller.php * Update port.php * Update preferences.php * Update sensors.php * Update settings.php * Update syslog.php * Update validation.php * Update widgets.php * Update settings.php * Update settings.php * Update settings.php
23 lines
840 B
PHP
23 lines
840 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' => '我们已向您的电子邮件发送了密码重置链接!',
|
|
'throttled' => '请稍候再试。',
|
|
'token' => '此密码重置令牌无效。',
|
|
'user' => '我们无法找到该电子邮件地址对应的用户。',
|
|
];
|