mirror of
https://github.com/danieldemus/openhab-addons
synced 2026-07-31 13:34:22 +02:00
[pythonscripting] typos “A(n) scope module”, plural form (#19467)
This commit is contained in:
+2
-2
@@ -20,14 +20,14 @@
|
|||||||
<label>Use scope and import wrapper</label>
|
<label>Use scope and import wrapper</label>
|
||||||
<description><![CDATA[
|
<description><![CDATA[
|
||||||
This enables a scope module and and import wrapper.<br>
|
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>
|
Additionally you can run an import like <code>from org.openhab.core import OpenHAB</code>
|
||||||
]]></description>
|
]]></description>
|
||||||
<default>true</default>
|
<default>true</default>
|
||||||
<advanced>true</advanced>
|
<advanced>true</advanced>
|
||||||
</parameter>
|
</parameter>
|
||||||
<parameter name="helperEnabled" type="boolean" required="true" groupName="environment">
|
<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[
|
<description><![CDATA[
|
||||||
Deploy and update openHAB Python helper modules like rule, logger, Registry, Timer etc...<br>
|
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"
|
If disabled, the openHAB Python helper module can be installed manually by copying it to /conf/automation/python/lib/openhab"
|
||||||
|
|||||||
+2
-2
@@ -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.environment.description = This group defines Python's environment.
|
||||||
automation.config.pythonscripting.group.system.label = System Behavior
|
automation.config.pythonscripting.group.system.label = System Behavior
|
||||||
automation.config.pythonscripting.group.system.description = This group defines Python's 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.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.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.
|
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.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.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.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>
|
||||||
|
|||||||
Reference in New Issue
Block a user