mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
* don't hardcode index for Mikrotik LTE wireless statistics * sync test data now that Mikrotik LTE index is no longer hardcoded * sync tests data now that Mikrotik LTE index is no longer hardcoded * fix whitespace * sync test data now that Mikrotik LTE index is no longer hardcoded * add test data for Mikrotik LtAP mini (aka RB912R-2nD) * Re-write Routeros wireless code It now works like most other devices * fix style * update baseline * Remove station 60G rate * use base unit of m, not km * move interface stats name inside loop to avoid a walk when it does exist * notification * fix typo Co-authored-by: Tony Murray <murraytony@gmail.com>
111 lines
2.4 KiB
PHP
111 lines
2.4 KiB
PHP
<?php
|
|
|
|
return [
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Wireless Sensors Language Lines
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| The following language lines are used to translate names and units of wireless sensors
|
|
|
|
|
*/
|
|
|
|
'ap-count' => [
|
|
'short' => 'AP 数量',
|
|
'long' => 'AP 数量',
|
|
'unit' => '',
|
|
],
|
|
'clients' => [
|
|
'short' => '客户端',
|
|
'long' => '客户端数量',
|
|
'unit' => '',
|
|
],
|
|
'capacity' => [
|
|
'short' => '容量',
|
|
'long' => '容量',
|
|
'unit' => '%',
|
|
],
|
|
'ccq' => [
|
|
'short' => 'CCQ',
|
|
'long' => '客户端联机质量',
|
|
'unit' => '%',
|
|
],
|
|
'errors' => [
|
|
'short' => '错误',
|
|
'long' => '错误数量',
|
|
'unit' => '',
|
|
],
|
|
'error-ratio' => [
|
|
'short' => '错误率',
|
|
'long' => '位/封包错误率',
|
|
'unit' => '%',
|
|
],
|
|
'error-rate' => [
|
|
'short' => 'BER',
|
|
'long' => '位错误率',
|
|
'unit' => 'bps',
|
|
],
|
|
'frequency' => [
|
|
'short' => '频率',
|
|
'long' => '频率',
|
|
'unit' => 'MHz',
|
|
],
|
|
'distance' => [
|
|
'short' => '距离',
|
|
'long' => '距离',
|
|
'unit' => 'm',
|
|
],
|
|
'mse' => [
|
|
'short' => 'MSE',
|
|
'long' => '平均误差',
|
|
'unit' => 'dB',
|
|
],
|
|
'noise-floor' => [
|
|
'short' => '背景噪声',
|
|
'long' => '背景噪声',
|
|
'unit' => 'dBm/Hz',
|
|
],
|
|
'power' => [
|
|
'short' => '电力/讯号',
|
|
'long' => 'TX/RX 电力或讯号',
|
|
'unit' => 'dBm',
|
|
],
|
|
'quality' => [
|
|
'short' => '品质',
|
|
'long' => '品质',
|
|
'unit' => '%',
|
|
],
|
|
'rate' => [
|
|
'short' => '传送率',
|
|
'long' => 'TX/RX 传送率',
|
|
'unit' => 'bps',
|
|
],
|
|
'rssi' => [
|
|
'short' => 'RSSI',
|
|
'long' => '接收讯号强度指针',
|
|
'unit' => 'dBm',
|
|
],
|
|
'snr' => [
|
|
'short' => 'SNR',
|
|
'long' => '讯号噪讯比',
|
|
'unit' => 'dB',
|
|
],
|
|
'ssr' => [
|
|
'short' => 'SSR',
|
|
'long' => '讯号强度比',
|
|
'unit' => 'dB',
|
|
],
|
|
'utilization' => [
|
|
'short' => '使用率',
|
|
'long' => '使用率',
|
|
'unit' => '%',
|
|
],
|
|
'xpi' => [
|
|
'short' => 'XPI',
|
|
'long' => '交互极化干扰',
|
|
'unit' => 'dB',
|
|
],
|
|
|
|
];
|