[pythonscripting] typos “A(n) scope module”, plural form (#19467)

This commit is contained in:
Дилян Палаузов
2025-10-11 13:12:13 +02:00
committed by GitHub
parent f63c36c783
commit 791e0cc05c
2 changed files with 4 additions and 4 deletions
@@ -20,14 +20,14 @@
<label>Use scope and import wrapper</label>
<description><![CDATA[
This enables a scope module and and import wrapper.<br>
An scope module is an encapsulated module containing all openHAB jsr223 objects and can be imported with <code>import scope</code><br>
A scope module is an encapsulated module containing all openHAB jsr223 objects and can be imported with <code>import scope</code><br>
Additionally you can run an import like <code>from org.openhab.core import OpenHAB</code>
]]></description>
<default>true</default>
<advanced>true</advanced>
</parameter>
<parameter name="helperEnabled" type="boolean" required="true" groupName="environment">
<label>Install openHAB Python helper modules and keep it updated (requires scope module)</label>
<label>Install openHAB Python helper modules and keep them updated (requires scope module)</label>
<description><![CDATA[
Deploy and update openHAB Python helper modules like rule, logger, Registry, Timer etc...<br>
If disabled, the openHAB Python helper module can be installed manually by copying it to /conf/automation/python/lib/openhab"
@@ -13,7 +13,7 @@ automation.config.pythonscripting.group.environment.label = Python Environment
automation.config.pythonscripting.group.environment.description = This group defines Python's environment.
automation.config.pythonscripting.group.system.label = System Behavior
automation.config.pythonscripting.group.system.description = This group defines Python's system behavior.
automation.config.pythonscripting.helperEnabled.label = Install openHAB Python helper modules and keep it updated (requires scope module)
automation.config.pythonscripting.helperEnabled.label = Install openHAB Python helper modules and keep them updated (requires scope module)
automation.config.pythonscripting.helperEnabled.description = Deploy and update openHAB Python helper modules like rule, logger, Registry, Timer etc...<br> If disabled, the openHAB Python helper module can be installed manually by copying it to /conf/automation/python/lib/openhab"
automation.config.pythonscripting.injectionEnabled.label = Inject scope and helper objects into UI based rules (requires helper modules)
automation.config.pythonscripting.injectionEnabled.description = This injects the scope module and core helper Registry and logger into UI based rules.
@@ -23,4 +23,4 @@ automation.config.pythonscripting.injectionEnabled.option.0 = Disable auto injec
automation.config.pythonscripting.jythonEmulation.label = Enable Jython emulation
automation.config.pythonscripting.jythonEmulation.description = This enables Jython emulation in GraalPy. It is strongly recommended to update code to GraalPy and Python 3 as the emulation can have performance degradation. For tips and instructions, please refer to <a href="https://www.graalvm.org/latest/reference-manual/python/Modern-Python-on-JVM">Jython Migration Guide</a>.
automation.config.pythonscripting.scopeEnabled.label = Use scope and import wrapper
automation.config.pythonscripting.scopeEnabled.description = This enables a scope module and and import wrapper.<br> An scope module is an encapsulated module containing all openHAB jsr223 objects and can be imported with <code>import scope</code><br> Additionally you can run an import like <code>from org.openhab.core import OpenHAB</code>
automation.config.pythonscripting.scopeEnabled.description = This enables a scope module and and import wrapper.<br> A scope module is an encapsulated module containing all openHAB jsr223 objects and can be imported with <code>import scope</code><br> Additionally you can run an import like <code>from org.openhab.core import OpenHAB</code>