mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
* Cisco enhanced cellular support * Extra sensors, camelcasing and bugfixes * Doc update * German translation * French translation * Style fixes * Style changes * Style changes * Style changes * Style changes * Style changes * Added test data * New test data --variant * New test data --variant ir1101 * Made the new wireless sensors generic * Added test data for ios variant ir809 * Fix includes/discovery/sensors/count/cisco.inc.php, thanks PipoCanaja * Moved cellular operating band from Wireless sensors to count sensor * test data * test data * test data * test data * Moved ICCID/IMSI/IMEI to inventory * test data and style fix * Cellular state sensors now have a group Co-authored-by: Maikel de Boer <mdb@tampnet.com>
136 lines
3.1 KiB
PHP
136 lines
3.1 KiB
PHP
<?php
|
|
|
|
return [
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Wireless Sensors Language Lines
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| The following language lines are used to translate names and units of wireless sensors
|
|
|
|
|
*/
|
|
|
|
'title' => 'Wireless',
|
|
'ap-count' => [
|
|
'short' => 'APs',
|
|
'long' => 'AP Count',
|
|
'unit' => '',
|
|
],
|
|
'clients' => [
|
|
'short' => 'Clients',
|
|
'long' => 'Client Count',
|
|
'unit' => '',
|
|
],
|
|
'capacity' => [
|
|
'short' => 'Capacity',
|
|
'long' => 'Capacity',
|
|
'unit' => '%',
|
|
],
|
|
'ccq' => [
|
|
'short' => 'CCQ',
|
|
'long' => 'Client Connection Quality',
|
|
'unit' => '%',
|
|
],
|
|
'errors' => [
|
|
'short' => 'Errors',
|
|
'long' => 'Error Count',
|
|
'unit' => '',
|
|
],
|
|
'error-ratio' => [
|
|
'short' => 'Error Ratio',
|
|
'long' => 'Bit/Packet Error Ratio',
|
|
'unit' => '%',
|
|
],
|
|
'error-rate' => [
|
|
'short' => 'BER',
|
|
'long' => 'Bit Error Rate',
|
|
'unit' => 'bps',
|
|
],
|
|
'frequency' => [
|
|
'short' => 'Frequency',
|
|
'long' => 'Frequency',
|
|
'unit' => 'MHz',
|
|
],
|
|
'distance' => [
|
|
'short' => 'Distance',
|
|
'long' => 'Distance',
|
|
'unit' => 'km',
|
|
],
|
|
'mse' => [
|
|
'short' => 'MSE',
|
|
'long' => 'Mean Square Error',
|
|
'unit' => 'dB',
|
|
],
|
|
'noise-floor' => [
|
|
'short' => 'Noise Floor',
|
|
'long' => 'Noise Floor',
|
|
'unit' => 'dBm',
|
|
],
|
|
'power' => [
|
|
'short' => 'Power/Signal',
|
|
'long' => 'TX/RX Power or Signal',
|
|
'unit' => 'dBm',
|
|
],
|
|
'quality' => [
|
|
'short' => 'Quality',
|
|
'long' => 'Quality',
|
|
'unit' => '%',
|
|
],
|
|
'rate' => [
|
|
'short' => 'Rate',
|
|
'long' => 'TX/RX Rate',
|
|
'unit' => 'bps',
|
|
],
|
|
'rssi' => [
|
|
'short' => 'RSSI',
|
|
'long' => 'Received Signal Strength Indicator',
|
|
'unit' => 'dBm',
|
|
],
|
|
'snr' => [
|
|
'short' => 'SNR',
|
|
'long' => 'Signal-to-Noise Ratio',
|
|
'unit' => 'dB',
|
|
],
|
|
'sinr' => [
|
|
'short' => 'SINR',
|
|
'long' => ' Signal-to-Interference-plus-Noise Ratio',
|
|
'unit' => 'dB',
|
|
],
|
|
'rsrq' => [
|
|
'short' => 'RSRQ',
|
|
'long' => 'Reference Signal Received Quality',
|
|
'unit' => 'dB',
|
|
],
|
|
'rsrp' => [
|
|
'short' => 'RSRP',
|
|
'long' => 'Reference Signals Received Power',
|
|
'unit' => 'dBm',
|
|
],
|
|
'ssr' => [
|
|
'short' => 'SSR',
|
|
'long' => 'Signal Strength Ratio',
|
|
'unit' => 'dB',
|
|
],
|
|
'utilization' => [
|
|
'short' => 'Utilization',
|
|
'long' => 'utilization',
|
|
'unit' => '%',
|
|
],
|
|
'xpi' => [
|
|
'short' => 'XPI',
|
|
'long' => 'Cross Polar Interference',
|
|
'unit' => 'dB',
|
|
],
|
|
'cell' => [
|
|
'short' => 'Cell',
|
|
'long' => 'Cell',
|
|
'unit' => '',
|
|
],
|
|
'channel' => [
|
|
'short' => 'Channel',
|
|
'long' => 'Channel',
|
|
'unit' => '',
|
|
],
|
|
];
|