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.8 KiB
PHP
120 lines
2.8 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' => "Nombre de points d'accès",
|
|
'unit' => '',
|
|
],
|
|
'clients' => [
|
|
'short' => 'Clients',
|
|
'long' => 'Nombre de clients',
|
|
'unit' => '',
|
|
],
|
|
'capacity' => [
|
|
'short' => 'Capacité',
|
|
'long' => 'Capacité',
|
|
'unit' => '%',
|
|
],
|
|
'ccq' => [
|
|
'short' => 'CCQ',
|
|
'long' => 'Qualité de la connexion client',
|
|
'unit' => '%',
|
|
],
|
|
'errors' => [
|
|
'short' => 'Erreurs',
|
|
'long' => "Nombre d'erreurs",
|
|
'unit' => '',
|
|
],
|
|
'error-ratio' => [
|
|
'short' => "Ratio d'erreur",
|
|
'long' => "Bit/Paquets ratio d'erreur",
|
|
'unit' => '%',
|
|
],
|
|
'error-rate' => [
|
|
'short' => 'BER',
|
|
'long' => "Taux d'erreur",
|
|
'unit' => 'bps',
|
|
],
|
|
'frequency' => [
|
|
'short' => 'Fréquence',
|
|
'long' => 'Fréquence',
|
|
'unit' => 'MHz',
|
|
],
|
|
'distance' => [
|
|
'short' => 'Distance',
|
|
'long' => 'Distance',
|
|
'unit' => 'm',
|
|
],
|
|
'mse' => [
|
|
'short' => 'MSE',
|
|
'long' => 'Erreur quadratique moyenne',
|
|
'unit' => 'dB',
|
|
],
|
|
'noise-floor' => [
|
|
'short' => 'Bruit de fond',
|
|
'long' => 'Bruit de fond',
|
|
'unit' => 'dBm',
|
|
],
|
|
'power' => [
|
|
'short' => 'Puissance/Signal',
|
|
'long' => 'TX/RX Puissance ou Signal',
|
|
'unit' => 'dBm',
|
|
],
|
|
'quality' => [
|
|
'short' => 'Qualité',
|
|
'long' => 'Qualité',
|
|
'unit' => '%',
|
|
],
|
|
'rate' => [
|
|
'short' => 'Taux',
|
|
'long' => 'TX/RX Taux',
|
|
'unit' => 'bps',
|
|
],
|
|
'rssi' => [
|
|
'short' => 'RSSI',
|
|
'long' => "Indicateur d'intensité du signal reçu",
|
|
'unit' => 'dBm',
|
|
],
|
|
'snr' => [
|
|
'short' => 'SNR',
|
|
'long' => 'Rapport signal sur bruit',
|
|
'unit' => 'dB',
|
|
],
|
|
'ssr' => [
|
|
'short' => 'SSR',
|
|
'long' => 'Rapport de force du signal',
|
|
'unit' => 'dB',
|
|
],
|
|
'utilization' => [
|
|
'short' => 'Utilisation',
|
|
'long' => 'utilisation',
|
|
'unit' => '%',
|
|
],
|
|
'xpi' => [
|
|
'short' => 'XPI',
|
|
'long' => 'Interférence polaire croisée',
|
|
'unit' => 'dB',
|
|
],
|
|
'cell' => [
|
|
'short' => 'Cellule',
|
|
'long' => 'Cellule',
|
|
'unit' => '',
|
|
],
|
|
'channel' => [
|
|
'short' => 'Canal',
|
|
'long' => 'Canal',
|
|
'unit' => '',
|
|
],
|
|
];
|