mirror of
https://github.com/danieldemus/openhab-core.git
synced 2026-07-29 12:34:22 +02:00
Clarify the script profile config description (#3506)
Signed-off-by: Jimmy Tanagra <jcode@tanagra.id.au>
This commit is contained in:
+6
-4
@@ -10,12 +10,14 @@
|
|||||||
<description>MIME-type ("application/vnd.openhab.dsl.rule") of the scripting language</description>
|
<description>MIME-type ("application/vnd.openhab.dsl.rule") of the scripting language</description>
|
||||||
</parameter>
|
</parameter>
|
||||||
<parameter name="toItemScript" type="text">
|
<parameter name="toItemScript" type="text">
|
||||||
<label>To Item Script</label>
|
<label>Thing To Item Transformation</label>
|
||||||
<description>The Script for transforming states and commands from handler to item.</description>
|
<description>The Script for transforming state updates and commands from the Thing handler to the item. The script
|
||||||
|
may return null to discard the updates/commands and not pass them through.</description>
|
||||||
</parameter>
|
</parameter>
|
||||||
<parameter name="toHandlerScript" type="text">
|
<parameter name="toHandlerScript" type="text">
|
||||||
<label>To Handler Script</label>
|
<label>Item To Thing Transformation</label>
|
||||||
<description>The Script for transforming states and commands from item to handler.</description>
|
<description>The Script for transforming commands from the item to the Thing handler. The script may return null to
|
||||||
|
discard the commands and not pass them through.</description>
|
||||||
</parameter>
|
</parameter>
|
||||||
</config-description>
|
</config-description>
|
||||||
|
|
||||||
|
|||||||
+4
-4
@@ -1,6 +1,6 @@
|
|||||||
profile.system.script.scriptLanguage.label = Script Language
|
profile.system.script.scriptLanguage.label = Script Language
|
||||||
profile.system.script.scriptLanguage.description = MIME-type ("application/vnd.openhab.dsl.rule") of the scripting language
|
profile.system.script.scriptLanguage.description = MIME-type ("application/vnd.openhab.dsl.rule") of the scripting language
|
||||||
profile.system.script.toItemScript.label = To Item Script
|
profile.system.script.toItemScript.label = Thing To Item Transformation
|
||||||
profile.system.script.toItemScript.description = The Script for transforming states and commands from handler to item.
|
profile.system.script.toItemScript.description = The Script for transforming state updates and commands from the Thing handler to the item. The script may return null to discard the updates/commands and not pass them through.
|
||||||
profile.system.script.toHandlerScript.label = To Handler Script
|
profile.system.script.toHandlerScript.label = Item To Thing Transformation
|
||||||
profile.system.script.toHandlerScript.description = The Script for transforming states and commands from item to handler.
|
profile.system.script.toHandlerScript.description = The Script for transforming commands from the item to the Thing handler. The script may return null to discard the commands and not pass them through.
|
||||||
|
|||||||
Reference in New Issue
Block a user