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>
120 lines
2.7 KiB
PHP
120 lines
2.7 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' => 'APs',
|
|
'long' => 'AP Anzahl',
|
|
'unit' => '',
|
|
],
|
|
'clients' => [
|
|
'short' => 'Clienten',
|
|
'long' => 'Client Anzahl',
|
|
'unit' => '',
|
|
],
|
|
'capacity' => [
|
|
'short' => 'Kapazität',
|
|
'long' => 'Kapazität',
|
|
'unit' => '%',
|
|
],
|
|
'ccq' => [
|
|
'short' => 'CCQ',
|
|
'long' => 'Client Verbindungsqualität',
|
|
'unit' => '%',
|
|
],
|
|
'errors' => [
|
|
'short' => 'Fehler',
|
|
'long' => 'Fehleranzahl',
|
|
'unit' => '',
|
|
],
|
|
'error-ratio' => [
|
|
'short' => 'Fehlerrate',
|
|
'long' => 'Bit/Packet Fehlerrate',
|
|
'unit' => '%',
|
|
],
|
|
'error-rate' => [
|
|
'short' => 'BER',
|
|
'long' => 'Bitfehlerrate',
|
|
'unit' => 'bps',
|
|
],
|
|
'frequency' => [
|
|
'short' => 'Frequenz',
|
|
'long' => 'Frequenz',
|
|
'unit' => 'MHz',
|
|
],
|
|
'distance' => [
|
|
'short' => 'Distanz',
|
|
'long' => 'Distanz',
|
|
'unit' => 'm',
|
|
],
|
|
'mse' => [
|
|
'short' => 'MSE',
|
|
'long' => 'mittlere quadratische Abweichung',
|
|
'unit' => 'dB',
|
|
],
|
|
'noise-floor' => [
|
|
'short' => 'Grundrauschen',
|
|
'long' => 'Grundrauschen',
|
|
'unit' => 'dBm',
|
|
],
|
|
'power' => [
|
|
'short' => 'Signalstärke',
|
|
'long' => 'TX/RX Signalstärke',
|
|
'unit' => 'dBm',
|
|
],
|
|
'quality' => [
|
|
'short' => 'Qualität',
|
|
'long' => 'Qualität',
|
|
'unit' => '%',
|
|
],
|
|
'rate' => [
|
|
'short' => 'Rate',
|
|
'long' => 'TX/RX Rate',
|
|
'unit' => 'bps',
|
|
],
|
|
'rssi' => [
|
|
'short' => 'RSSI',
|
|
'long' => 'Empfangsfeldstärke',
|
|
'unit' => 'dBm',
|
|
],
|
|
'snr' => [
|
|
'short' => 'SNR',
|
|
'long' => 'Signal-zu-Rausch Verhältnis',
|
|
'unit' => 'dB',
|
|
],
|
|
'ssr' => [
|
|
'short' => 'SSR',
|
|
'long' => 'Signalstärke Rate',
|
|
'unit' => 'dB',
|
|
],
|
|
'utilization' => [
|
|
'short' => 'Nutzrate',
|
|
'long' => 'Nutzungsrate',
|
|
'unit' => '%',
|
|
],
|
|
'xpi' => [
|
|
'short' => 'XPI',
|
|
'long' => 'Kreuzpolarisation Interferenz',
|
|
'unit' => 'dB',
|
|
],
|
|
'cell' => [
|
|
'short' => 'Zell',
|
|
'long' => 'Zell',
|
|
'unit' => '',
|
|
],
|
|
'channel' => [
|
|
'short' => 'Kanall',
|
|
'long' => 'Kanall',
|
|
'unit' => '',
|
|
],
|
|
];
|