mirror of
https://github.com/node-red/node-red-nodes.git
synced 2023-10-10 13:36:58 +02:00
fixes/updates to be i18n version
This commit is contained in:
parent
1ff66443fb
commit
463ad75357
@ -4,6 +4,10 @@ node-red-node-rbe
|
||||
A <a href="http://nodered.org" target="_new">Node-RED</a> node that provides
|
||||
provides report-by-exception (RBE) and deadband capability.
|
||||
|
||||
The node blocks unless the incoming value changes - RBE mode, or
|
||||
changes by more than a certain amount (absolute value or percentage) - deadband
|
||||
mode.
|
||||
|
||||
Install
|
||||
-------
|
||||
|
||||
|
BIN
function/rbe/icons/rbe.png
Normal file
BIN
function/rbe/icons/rbe.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 311 B |
@ -2,15 +2,14 @@
|
||||
"rbe": {
|
||||
"label": {
|
||||
"func": "Mode",
|
||||
"bandgap": "Band gap",
|
||||
"name": "Name"
|
||||
},
|
||||
"eg":{
|
||||
"placeholder":{
|
||||
"bandgap": "e.g. 10 or 5%"
|
||||
},
|
||||
"opts": {
|
||||
"rbe": "RBE - report if value changed",
|
||||
"deadband": "Deadband - report if changed more than",
|
||||
"rbe": "block unless value changes",
|
||||
"deadband": "block unless changes by more than"
|
||||
},
|
||||
"warn": {
|
||||
"nonumber": "no number found in payload"
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name" : "node-red-node-rbe",
|
||||
"version" : "0.0.7",
|
||||
"version" : "0.1.0",
|
||||
"description" : "A Node-RED node that provides report-by-exception (RBE) and deadband capability.",
|
||||
"dependencies" : {
|
||||
},
|
||||
|
@ -19,12 +19,12 @@
|
||||
<label for="node-input-func"><i class="fa fa-wrench"></i> <span data-i18n="rbe.label.func"></span></label>
|
||||
<select type="text" id="node-input-func" style="width:74%;">
|
||||
<option value="rbe" data-i18n="rbe.opts.rbe"></option>
|
||||
<option value="deadband" data-i18n="rbe.opts.deadband></option>
|
||||
<option value="deadband" data-i18n="rbe.opts.deadband"></option>
|
||||
</select>
|
||||
</div>
|
||||
<div class="form-row" id="node-bandgap">
|
||||
<label for="node-input-gap"><i class="fa fa-random"></i> <span data-i18n="rbe.label.bandgap"></span></label>
|
||||
<input type="text" id="node-input-gap" data-i18n="[placeholder]rbe.eg.bandgap" style="width:71%;">
|
||||
<label for="node-input-gap"> </label>
|
||||
<input type="text" id="node-input-gap" data-i18n="[placeholder]rbe.placeholder.bandgap" style="width:71%;">
|
||||
</div>
|
||||
<div class="form-row">
|
||||
<label for="node-input-name"><i class="fa fa-tag"/> <span data-i18n="rbe.label.name"></span></label>
|
||||
|
Loading…
Reference in New Issue
Block a user