Files
librenms-librenms/resources/lang/en/sensors.php
Hayden 397a10e73f new sensors for siteboss OS + new sensor type: percentage (%) (#11958)
* split siteboss 530 and 550 into multiple OS

* add more sensors to siteboss550 and new Percent sensor

* fix contact closure event state values

* split os polling for siteboss to siteboss530 and siteboss550

* add test unit for siteboss550, rename test unit for siteboss to siteboss530

* refactor siteboss os polling to \Librenms\OS

* implement OSPolling to Sitebos550

* force save in pollOS() to keep custom sysName during polling

* updated unit test

* update device graphs

* remove pollOS and extra save()

* siteboss550 no longer extends OSPolling

* update siteboss550 test data

* update discoverOS() to match recent os discovery changes

* styleCI changes

* fix siteboss hardware discovery; add check to OS polling if os_group .inc file exists

* collapse siteboss to single OS, implement siteboss sensors in advanced discovery

* add siteboss unit tests

* removed unneeded OS disco defs

* styleCI changes

* more styleCI changes

* split siteboss os to siteboss530 and siteboss550

* split siteboss os to siteboss530 and siteboss550

* move php polling back into yaml

* keep original siteboss OS name

* resave snmp data for siteboss OS

* resave snmp data for siteboss550 OS
2020-10-20 19:11:12 -05:00

183 lines
4.4 KiB
PHP

<?php
return [
/*
|--------------------------------------------------------------------------
| Sensors Language Lines
|--------------------------------------------------------------------------
|
| The following language lines are used to translate names and units of sensors
|
*/
'title' => 'Sensors',
'airflow' => [
'short' => 'Airflow',
'long' => 'Airflow',
'unit' => 'cfm',
'unit_long' => 'Cubic Feet per Minute',
],
'ber' => [
'short' => 'BER',
'long' => 'Bit Error Rate',
'unit' => '',
'unit_long' => '',
],
'charge' => [
'short' => 'Charge',
'long' => 'Charge Percent',
'unit' => '%',
'unit_long' => 'Percent',
],
'chromatic_dispersion' => [
'short' => 'Chromatic Dispersion',
'long' => 'Chromatic Dispersion',
'unit' => 'ps/nm/km',
'unit_long' => 'Picoseconds per Nanometer per Kilometer',
],
'cooling' => [
'short' => 'Cooling',
'long' => '',
'unit' => 'W',
'unit_long' => 'Watts',
],
'count' => [
'short' => 'Count',
'long' => 'Count',
'unit' => '',
'unit_long' => '',
],
'current' => [
'short' => 'Current',
'long' => 'Current',
'unit' => 'A',
'unit_long' => 'Amperes',
],
'dbm' => [
'short' => 'dBm',
'long' => 'dBm',
'unit' => 'dBm',
'unit_long' => 'Decibel-Milliwatts',
],
'delay' => [
'short' => 'Delay',
'long' => 'Delay',
'unit' => 's',
'unit_long' => 'Seconds',
],
'eer' => [
'short' => 'EER',
'long' => 'Energy Efficient Ratio',
'unit' => '',
'unit_long' => '',
],
'fanspeed' => [
'short' => 'Fanspeed',
'long' => 'Fan Speed',
'unit' => 'RPM',
'unit_long' => 'Rotations per Minute',
],
'frequency' => [
'short' => 'Frequency',
'long' => 'Frequency',
'unit' => 'Hz',
'unit_long' => 'Hertz',
],
'humidity' => [
'short' => 'Humidity',
'long' => 'Humidity Percent',
'unit' => '%',
'unit_long' => 'Percent',
],
'load' => [
'short' => 'Load',
'long' => 'Load Percent',
'unit' => '%',
'unit_long' => 'Percent',
],
'loss' => [
'short' => 'Percent',
'long' => 'Loss Percentage',
'unit' => '%',
'unit_long' => 'percentage',
],
'power' => [
'short' => 'Power',
'long' => 'Power',
'unit' => 'W',
'unit_long' => 'Watts',
],
'power_consumed' => [
'short' => 'Power Consumed',
'long' => 'Power Consumed',
'unit' => 'kWh',
'unit_long' => 'Killowatt-Hours',
],
'power_factor' => [
'short' => 'Power Factor',
'long' => 'Power Factor',
'unit' => '',
'unit_long' => '',
],
'pressure' => [
'short' => 'Pressure',
'long' => 'Pressure',
'unit' => 'kPa',
'unit_long' => 'Kilopascals',
],
'quality_factor' => [
'short' => 'Quality Factor',
'long' => 'Quality Factor',
'unit' => '',
'unit_long' => '',
],
'runtime' => [
'short' => 'Runtime',
'long' => 'Runtime',
'unit' => 'Min',
'unit_long' => 'Minutes',
],
'signal' => [
'short' => 'Signal',
'long' => 'Signal',
'unit' => 'dBm',
'unit_long' => 'Decibal-Milliwatts',
],
'snr' => [
'short' => 'SNR',
'long' => 'Signal to Noise Ratio',
'unit' => 'dB',
'unit_long' => 'Decibels',
],
'state' => [
'short' => 'State',
'long' => 'State',
'unit' => '',
],
'temperature' => [
'short' => 'Temperature',
'long' => 'Temperature',
'unit' => '°C',
'unit_long' => '° Celsius',
],
'voltage' => [
'short' => 'Voltage',
'long' => 'voltage',
'unit' => 'V',
'unit_long' => 'Volts',
],
'waterflow' => [
'short' => 'Waterflow',
'long' => 'Water Flow',
'unit' => 'l/m',
'unit_long' => 'Liters Per Minute',
],
'percent' => [
'short' => 'Percent',
'long' => 'Percent',
'unit' => '%',
'unit_long' => 'Percent',
],
];