Source Context Failing checks
else
.Blockly.Msg.LANG_CONTROLS_IF_ELSE_TITLE_ELSE
Add a final, catch-all condition to the if block.
.Blockly.Msg.LANG_CONTROLS_IF_ELSE_TOOLTIP
repeat
.Blockly.Msg.LANG_CONTROLS_WHILEUNTIL_TITLE_REPEAT
do
.Blockly.Msg.LANG_CONTROLS_WHILEUNTIL_INPUT_DO
while
.Blockly.Msg.LANG_CONTROLS_WHILEUNTIL_OPERATOR_WHILE
until
.Blockly.Msg.LANG_CONTROLS_WHILEUNTIL_OPERATOR_UNTIL
While a value is true, then do some statements.
.Blockly.Msg.LANG_CONTROLS_WHILEUNTIL_TOOLTIP_WHILE
While a value is false, then do some statements.
.Blockly.Msg.LANG_CONTROLS_WHILEUNTIL_TOOLTIP_UNTIL
Runs the blocks in the 'do' section while the test is true.
.Blockly.Msg.LANG_CONTROLS_WHILEUNTIL_TOOLTIP_1
count with
.Blockly.Msg.LANG_CONTROLS_FOR_INPUT_WITH
x
.Blockly.Msg.LANG_CONTROLS_FOR_INPUT_VAR
from
.Blockly.Msg.LANG_CONTROLS_FOR_INPUT_FROM
to
.Blockly.Msg.LANG_CONTROLS_FOR_INPUT_TO
do
.Blockly.Msg.LANG_CONTROLS_FOR_INPUT_DO
Count from a start number to an end number.
For each count, set the current count number to
variable '%1', and then do some statements.
.Blockly.Msg.LANG_CONTROLS_FOR_TOOLTIP
for each
.Blockly.Msg.LANG_CONTROLS_FORRANGE_INPUT_ITEM
number
.Blockly.Msg.LANG_CONTROLS_FORRANGE_INPUT_VAR
from
.Blockly.Msg.LANG_CONTROLS_FORRANGE_INPUT_START
to
.Blockly.Msg.LANG_CONTROLS_FORRANGE_INPUT_END
by
.Blockly.Msg.LANG_CONTROLS_FORRANGE_INPUT_STEP
do
.Blockly.Msg.LANG_CONTROLS_FORRANGE_INPUT_DO
for number in range
.Blockly.Msg.LANG_CONTROLS_FORRANGE_INPUT_COLLAPSED_TEXT
for
.Blockly.Msg.LANG_CONTROLS_FORRANGE_INPUT_COLLAPSED_PREFIX
in range
.Blockly.Msg.LANG_CONTROLS_FORRANGE_INPUT_COLLAPSED_SUFFIX
Runs the blocks in the 'do' section for each numeric value in the range from start to end, stepping the value each time. Use the given variable name to refer to the current value.
.Blockly.Msg.LANG_CONTROLS_FORRANGE_TOOLTIP
for each
.Blockly.Msg.LANG_CONTROLS_FOREACH_INPUT_ITEM
item
.Blockly.Msg.LANG_CONTROLS_FOREACH_INPUT_VAR
in list
.Blockly.Msg.LANG_CONTROLS_FOREACH_INPUT_INLIST
do
.Blockly.Msg.LANG_CONTROLS_FOREACH_INPUT_DO
for item in list
.Blockly.Msg.LANG_CONTROLS_FOREACH_INPUT_COLLAPSED_TEXT
for
.Blockly.Msg.LANG_CONTROLS_FOREACH_INPUT_COLLAPSED_PREFIX
in list
.Blockly.Msg.LANG_CONTROLS_FOREACH_INPUT_COLLAPSED_SUFFIX
Runs the blocks in the 'do' section for each item in the list. Use the given variable name to refer to the current list item.
.Blockly.Msg.LANG_CONTROLS_FOREACH_TOOLTIP
for each %1 with %2 in dictionary %3
.Blockly.Msg.LANG_CONTROLS_FOREACH_DICT_INPUT
do
.Blockly.Msg.LANG_CONTROLS_FOREACH_DICT_INPUT_DO
key
.Blockly.Msg.LANG_CONTROLS_FOREACH_DICT_INPUT_KEY
value
.Blockly.Msg.LANG_CONTROLS_FOREACH_DICT_INPUT_VALUE
for each in dictionary
.Blockly.Msg.LANG_CONTROLS_FOREACH_DICT_TITLE
Runs the blocks in the 'do' section for each key-value entry in the dictionary. Use the given variable names to refer to the key/value of the current dictionary item.
.Blockly.Msg.LANG_CONTROLS_FOREACH_DICT_TOOLTIP
of loop
.Blockly.Msg.LANG_CONTROLS_FLOW_STATEMENTS_INPUT_OFLOOP
break out
.Blockly.Msg.LANG_CONTROLS_FLOW_STATEMENTS_OPERATOR_BREAK
continue with next iteration
.Blockly.Msg.LANG_CONTROLS_FLOW_STATEMENTS_OPERATOR_CONTINUE
Break out of the containing loop.
.Blockly.Msg.LANG_CONTROLS_FLOW_STATEMENTS_TOOLTIP_BREAK
Skip the rest of this loop, and
continue with the next iteration.
.Blockly.Msg.LANG_CONTROLS_FLOW_STATEMENTS_TOOLTIP_CONTINUE
Warning:
This block may only
be used within a loop.
.Blockly.Msg.LANG_CONTROLS_FLOW_STATEMENTS_WARNING
while
.Blockly.Msg.LANG_CONTROLS_WHILE_TITLE
test
.Blockly.Msg.LANG_CONTROLS_WHILE_INPUT_TEST
do
.Blockly.Msg.LANG_CONTROLS_WHILE_INPUT_DO
while
.Blockly.Msg.LANG_CONTROLS_WHILE_COLLAPSED_TEXT
Runs the blocks in the 'do' section while the test is true.
.Blockly.Msg.LANG_CONTROLS_WHILE_TOOLTIP