diff --git a/bundles/org.openhab.core.automation.module.script/src/main/resources/OH-INF/config/script-profile.xml b/bundles/org.openhab.core.automation.module.script/src/main/resources/OH-INF/config/script-profile.xml
index 3fd037165e..cbbfad5bb0 100644
--- a/bundles/org.openhab.core.automation.module.script/src/main/resources/OH-INF/config/script-profile.xml
+++ b/bundles/org.openhab.core.automation.module.script/src/main/resources/OH-INF/config/script-profile.xml
@@ -10,12 +10,14 @@
MIME-type ("application/vnd.openhab.dsl.rule") of the scripting language
-
- The Script for transforming states and commands from handler to item.
+
+ 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.
-
- The Script for transforming states and commands from item to handler.
+
+ 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.
diff --git a/bundles/org.openhab.core.automation.module.script/src/main/resources/OH-INF/i18n/scriptprofile.properties b/bundles/org.openhab.core.automation.module.script/src/main/resources/OH-INF/i18n/scriptprofile.properties
index 021f533101..ba168b3802 100644
--- a/bundles/org.openhab.core.automation.module.script/src/main/resources/OH-INF/i18n/scriptprofile.properties
+++ b/bundles/org.openhab.core.automation.module.script/src/main/resources/OH-INF/i18n/scriptprofile.properties
@@ -1,6 +1,6 @@
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.toItemScript.label = To Item Script
-profile.system.script.toItemScript.description = The Script for transforming states and commands from handler to item.
-profile.system.script.toHandlerScript.label = To Handler Script
-profile.system.script.toHandlerScript.description = The Script for transforming states and commands from item to handler.
+profile.system.script.toItemScript.label = Thing To Item Transformation
+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 = Item To Thing Transformation
+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.