reorder language files

This commit is contained in:
Mario
2021-01-08 16:55:58 +01:00
parent 48e63fe898
commit 8f47ae4fc8
57 changed files with 2827 additions and 2352 deletions
+1 -1
View File
@@ -483,6 +483,7 @@ Blockly.Blocks['switch_case'] = {
init: function () {
this.setColour(getColour().logic);
this.setPreviousStatement(true);
this.setTooltip(Blockly.Msg.cases_tooltip);
this.setNextStatement(true);
this.appendValueInput('CONDITION')
.appendField(Blockly.Msg.cases_switch);
@@ -491,7 +492,6 @@ Blockly.Blocks['switch_case'] = {
this.appendStatementInput('CASE0')
.appendField(Blockly.Msg.cases_do);
this.setMutator(new Blockly.Mutator(['case_incaseof', 'case_default']));
this.setTooltip('Does something if the condition is true. If there isn\'t a matching case the default function will be executed.');
this.caseCount_ = 0;
this.defaultCount_ = 0;
},