Files
librenms-librenms/resources/lang/uk/wireless.php
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
3.0 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<?php
return [
/*
|--------------------------------------------------------------------------
| Wireless Sensors Language Lines
|--------------------------------------------------------------------------
|
| The following language lines are used to translate names and units of wireless sensors
|
*/
'ap-count' => [
'short' => 'AP',
'long' => 'Кількість точок доступу',
'unit' => '',
],
'clients' => [
'short' => 'Споживачі',
'long' => 'Кількість споживачів',
'unit' => '',
],
'capacity' => [
'short' => 'Ємність',
'long' => 'Ємність',
'unit' => '%',
],
'ccq' => [
'short' => 'CCQ',
'long' => "Якість з'єднання споживача",
'unit' => '%',
],
'errors' => [
'short' => 'Помилки',
'long' => 'Кількість помилок',
'unit' => '',
],
'error-ratio' => [
'short' => 'Відсоток помилок',
'long' => 'Відсоток помилкових бітів/пакетів',
'unit' => '%',
],
'error-rate' => [
'short' => 'BER',
'long' => 'Частота бітових помилок',
'unit' => 'bps',
],
'frequency' => [
'short' => 'Частота',
'long' => 'Частота',
'unit' => 'MHz',
],
'distance' => [
'short' => 'Відстань',
'long' => 'Відстань',
'unit' => 'km',
],
'mse' => [
'short' => 'MSE',
'long' => 'Середньоквадратична помилка',
'unit' => 'dB',
],
'noise-floor' => [
'short' => 'Рівень шуму',
'long' => 'Рівень шуму',
'unit' => 'dBm',
],
'power' => [
'short' => 'Сила сигналу',
'long' => 'TX/RX Сила сигналу',
'unit' => 'dBm',
],
'quality' => [
'short' => 'Якість',
'long' => 'Якість',
'unit' => '%',
],
'rate' => [
'short' => 'Швидкість передачі даних',
'long' => 'Швидкість передачі даних TX/RX',
'unit' => 'bps',
],
'rssi' => [
'short' => 'RSSI',
'long' => 'Індикатор потужності отриманого сигналу',
'unit' => 'dBm',
],
'snr' => [
'short' => 'SNR',
'long' => 'Співвідношення сигнал/шум',
'unit' => 'dB',
],
'ssr' => [
'short' => 'SSR',
'long' => 'Коефіцієнт потужності сигналу',
'unit' => 'dB',
],
'utilization' => [
'short' => 'Використання',
'long' => 'Використання',
'unit' => '%',
],
'xpi' => [
'short' => 'XPI',
'long' => 'Крос-поляризаційні завади',
'unit' => 'dB',
],
];