Skip to content

Commit 7a859a3

Browse files
committed
Fixes hardcoded english string
1 parent fe1a2a6 commit 7a859a3

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)