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
42 lines
1.2 KiB
PHP
42 lines
1.2 KiB
PHP
<?php
|
||
|
||
return [
|
||
'title' => '系统日志',
|
||
'severity' => [
|
||
'0' => '紧急',
|
||
'1' => '警报',
|
||
'2' => '严重',
|
||
'3' => '错误',
|
||
'4' => '警告',
|
||
'5' => '通知',
|
||
'6' => '信息',
|
||
'7' => '调试',
|
||
],
|
||
'facility' => [
|
||
'0' => '内核消息',
|
||
'1' => '用户级消息',
|
||
'2' => '邮件系统',
|
||
'3' => '系统守护进程',
|
||
'4' => '安全/授权消息',
|
||
'5' => 'syslogd 内部生成的消息',
|
||
'6' => '行式打印机子系统',
|
||
'7' => '网络新闻子系统',
|
||
'8' => 'UUCP 子系统',
|
||
'9' => '时钟守护进程',
|
||
'10' => '安全/授权消息',
|
||
'11' => 'FTP 守护进程',
|
||
'12' => 'NTP 子系统',
|
||
'13' => '日志审计',
|
||
'14' => '日志警告',
|
||
'15' => '时钟守护进程(注意2)',
|
||
'16' => '本地使用 0 (local0)',
|
||
'17' => '本地使用 1 (local1)',
|
||
'18' => '本地使用 2 (local2)',
|
||
'19' => '本地使用 3 (local3)',
|
||
'20' => '本地使用 4 (local4)',
|
||
'21' => '本地使用 5 (local5)',
|
||
'22' => '本地使用 6 (local6)',
|
||
'23' => '本地使用 7 (local7)',
|
||
],
|
||
];
|