Files
arrmo ba1302805f Change Units on Noise Floor (#11790)
* Change Units on Noise Floor

I may be wrong, but I think this should just be dBm (i.e. integrated over the carrier bandwidth). The numbers look much too high to me to be on a per Hz basis.

If I am correct here, this should also be updated in the web interface.

Thanks!

* Update php, correct units for Wireless noise-floor

* Wireless Frequency, don't format_si, to avoid kMHz units

* Update Wireless noise-floor units, in RRD plots
2020-06-10 10:41:36 +02:00

111 lines
2.5 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' => 'km',
],
'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',
],
];