Files
librenms-librenms/resources/lang/fr/wireless.php
Stuart Henderson 48a12be4be Don't hardcode index for Mikrotik LTE wireless statistics (#12976)
* 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>
2021-10-20 20:50:59 -05:00

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' => '',
],
];