Skip to content

Commit 386ae49

Browse files
committed
updates translations
1 parent 1097457 commit 386ae49

69 files changed

Lines changed: 10206 additions & 10006 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
-10 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.

doc/help_dialogs/Output_html/eventbuttons_help.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -510,7 +510,7 @@
510510
<tr>
511511
<td>&#160;</td>
512512
<td>publish(&lt;topic&gt;, &lt;value&gt;)</td>
513-
<td>converts the given data to JSON and publish it on the MQTT server to the given topic</td>
513+
<td>converts the given data to JSON and publishes it on the MQTT server to the given topic</td>
514514
</tr>
515515
<tr>
516516
<td>Hottop Heater</td>

doc/help_dialogs/Output_html/eventsliders_help.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -456,7 +456,7 @@
456456
<tr>
457457
<td>&#160;</td>
458458
<td>publish(&lt;topic&gt;, &lt;value&gt;)</td>
459-
<td>converts the given data to JSON and publish it on the MQTT server to the given topic</td>
459+
<td>converts the given data to JSON and publishes it on the MQTT server to the given topic</td>
460460
<td>&#160;</td>
461461
</tr>
462462
<tr>

src/artisanlib/main.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9397,7 +9397,7 @@ def eventaction_internal(self, action:int, cmd:str, eventtype:int|None) -> None:
93979397
## santoker(<target>,<value>) : the byte <target> indicates where <value> of type integer should be written to
93989398
## kaleido(<target>,<value>) : the <target> string indicates where <value> of type string should be written to
93999399
## shellyrelay(n,b) : switches Shelly plug number <n> ON if b is true or 1, and OFF otherwise
9400-
## publish(<topic>,<data>) : converts the given data to JSON and publishs it on the MQTT server to the given topic.
9400+
## publish(<topic>,<data>) : converts the given data to JSON and publishes it on the MQTT server to the given topic.
94019401
# Publish will connect to the specified broker if not yet connected and subscribe to the configured topics
94029402
#
94039403
if cmd_str:
@@ -9658,7 +9658,7 @@ def eventaction_internal(self, action:int, cmd:str, eventtype:int|None) -> None:
96589658
except Exception as e: # pylint: disable=broad-except
96599659
_log.error(e)
96609660

9661-
## publish(<topic>,<data>) : converts the given data to JSON and publishs it on the MQTT server to the given topic.
9661+
## publish(<topic>,<data>) : converts the given data to JSON and publishes it on the MQTT server to the given topic.
96629662
# Publish will connect to the specified broker if not yet connected and subscribe to the configured topics
96639663
elif c.startswith('publish'):
96649664
if self.mqtt is not None:

src/help/eventbuttons_help.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ def content() -> str:
146146
tbl_Commands.add_row(['&#160;','kaleido(<target>,<value>)',QApplication.translate('HelpDlg','sends <value> to <target> via the Kaleido Serial or Network protocol')])
147147
tbl_Commands.add_row(['&#160;','orbiter(<cmd>[,<value>[,<param>]])',QApplication.translate('HelpDlg','sends <cmd> (1byte in HEX) and optional <value> (0-65535) and <param> (0-255) to Orbiter')])
148148
tbl_Commands.add_row(['&#160;','shellyrelay(n,b)',QApplication.translate('HelpDlg','switches Shelly plug number <n> ON if b is true or 1, and OFF otherwise')])
149-
tbl_Commands.add_row(['&#160;','publish(<topic>, <value>)',QApplication.translate('HelpDlg','converts the given data to JSON and publish it on the MQTT server to the given topic')])
149+
tbl_Commands.add_row(['&#160;','publish(<topic>, <value>)',QApplication.translate('HelpDlg','converts the given data to JSON and publishes it on the MQTT server to the given topic')])
150150
tbl_Commands.add_row([QApplication.translate('HelpDlg','Hottop Heater'),'&#160;',QApplication.translate('HelpDlg','sets heater to value')])
151151
tbl_Commands.add_row([QApplication.translate('HelpDlg','Hottop Fan'),'&#160;',QApplication.translate('HelpDlg','sets fan to value')])
152152
tbl_Commands.add_row([QApplication.translate('HelpDlg','Hottop Command'),'motor(n),solenoid(n),stirrer(n),heater(h),fan(f) ',QApplication.translate('HelpDlg','with n={0 ,1},h={0,..100},f={0,..10}')])

src/help/eventsliders_help.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ def content() -> str:
100100
tbl_Commands.add_row(['&#160;','kaleido(<target>,<value>)',QApplication.translate('HelpDlg','sends <value> to <target> via the Kaleido Serial or Network protocol'),'&#160;'])
101101
tbl_Commands.add_row(['&#160;','orbiter(<cmd>[,<value>[,<param>]])',QApplication.translate('HelpDlg','sends <cmd> (1byte in HEX) and optional <value> (0-65535) and <param> (0-255) to Orbiter'),'&#160;'])
102102
tbl_Commands.add_row(['&#160;','shellyrelay(n,b)',QApplication.translate('HelpDlg','switches Shelly plug number <n> ON if b is true or 1, and OFF otherwise'),'&#160;'])
103-
tbl_Commands.add_row(['&#160;','publish(<topic>, <value>)',QApplication.translate('HelpDlg','converts the given data to JSON and publish it on the MQTT server to the given topic'),'&#160;'])
103+
tbl_Commands.add_row(['&#160;','publish(<topic>, <value>)',QApplication.translate('HelpDlg','converts the given data to JSON and publishes it on the MQTT server to the given topic'),'&#160;'])
104104
tbl_Commands.add_row([QApplication.translate('HelpDlg','S7 Command'),'_',QApplication.translate('HelpDlg','variable holding the last value read via S7'),'&#160;'])
105105
tbl_Commands.add_row(['&#160;','sleep(<float>)',QApplication.translate('HelpDlg','sleep: add a delay of <float> seconds'),'&#160;'])
106106
tbl_Commands.add_row(['&#160;','button(<bool>)',QApplication.translate('HelpDlg','sets calling button to “pressed” if argument evaluates to 1 or True'),'&#160;'])

src/translations/artisan_ar.qm

6.8 KB
Binary file not shown.

0 commit comments

Comments
 (0)