Files
librenms-librenms/resources/lang/fr/wireless.php
Janno Schouwenburg 0a8f24c5b1 Cisco enhanced cellular (#12463)
* 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>
2021-03-02 06:37:30 -06: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' => 'km',
],
'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' => '',
],
];