Skip to content

Commit 04fa482

Browse files
authored
Merge pull request #182 from emansije/io-js
Fixes hardcoded english string
2 parents 5d681cc + 7a859a3 commit 04fa482

File tree

1 file changed

+1
-1
lines changed
  • blockly/blocks/arduino

1 file changed

+1
-1
lines changed

blockly/blocks/arduino/io.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ Blockly.Blocks['io_builtin_led'] = {
9090
.appendField(Blockly.Msg.ARD_BUILTIN_LED)
9191
.appendField(new Blockly.FieldDropdown(
9292
Blockly.Arduino.Boards.selected.builtinLed), 'BUILT_IN_LED')
93-
.appendField('to')
93+
.appendField(Blockly.Msg.ARD_WRITE_TO)
9494
.setCheck(Blockly.Types.BOOLEAN.checkList);
9595
this.setInputsInline(false);
9696
this.setPreviousStatement(true, null);

0 commit comments

Comments
 (0)