2017-09-25 09:37:41 +00:00
// This file was automatically generated. Do not modify.
'use strict' ;
goog . provide ( 'Blockly.Msg.en' ) ;
goog . require ( 'Blockly.Msg' ) ;
2018-01-16 21:13:23 +00:00
/** @export */ Blockly . Msg . ADD _COMMENT = "Add Comment" ;
/** @export */ Blockly . Msg . CANNOT _DELETE _VARIABLE _PROCEDURE = "Can't delete the variable '%1' because it's part of the definition of the function '%2'" ;
/** @export */ Blockly . Msg . CHANGE _VALUE _TITLE = "Change value:" ;
/** @export */ Blockly . Msg . CLEAN _UP = "Clean up Blocks" ;
/** @export */ Blockly . Msg . COLLAPSE _ALL = "Collapse Blocks" ;
/** @export */ Blockly . Msg . COLLAPSE _BLOCK = "Collapse Block" ;
/** @export */ Blockly . Msg . COLOUR _BLEND _COLOUR1 = "colour 1" ;
/** @export */ Blockly . Msg . COLOUR _BLEND _COLOUR2 = "colour 2" ;
/** @export */ Blockly . Msg . COLOUR _BLEND _HELPURL = "http://meyerweb.com/eric/tools/color-blend/" ;
/** @export */ Blockly . Msg . COLOUR _BLEND _RATIO = "ratio" ;
/** @export */ Blockly . Msg . COLOUR _BLEND _TITLE = "blend" ;
/** @export */ Blockly . Msg . COLOUR _BLEND _TOOLTIP = "Blends two colours together with a given ratio (0.0 - 1.0)." ;
/** @export */ Blockly . Msg . COLOUR _PICKER _HELPURL = "https://en.wikipedia.org/wiki/Color" ;
/** @export */ Blockly . Msg . COLOUR _PICKER _TOOLTIP = "Choose a colour from the palette." ;
/** @export */ Blockly . Msg . COLOUR _RANDOM _HELPURL = "http://randomcolour.com" ;
/** @export */ Blockly . Msg . COLOUR _RANDOM _TITLE = "random colour" ;
/** @export */ Blockly . Msg . COLOUR _RANDOM _TOOLTIP = "Choose a colour at random." ;
/** @export */ Blockly . Msg . COLOUR _RGB _BLUE = "blue" ;
/** @export */ Blockly . Msg . COLOUR _RGB _GREEN = "green" ;
/** @export */ Blockly . Msg . COLOUR _RGB _HELPURL = "http://www.december.com/html/spec/colorper.html" ;
/** @export */ Blockly . Msg . COLOUR _RGB _RED = "red" ;
/** @export */ Blockly . Msg . COLOUR _RGB _TITLE = "colour with" ;
/** @export */ Blockly . Msg . COLOUR _RGB _TOOLTIP = "Create a colour with the specified amount of red, green, and blue. All values must be between 0 and 100." ;
/** @export */ Blockly . Msg . CONTROLS _FLOW _STATEMENTS _HELPURL = "https://github.com/google/blockly/wiki/Loops#loop-termination-blocks" ;
/** @export */ Blockly . Msg . CONTROLS _FLOW _STATEMENTS _OPERATOR _BREAK = "break out of loop" ;
/** @export */ Blockly . Msg . CONTROLS _FLOW _STATEMENTS _OPERATOR _CONTINUE = "continue with next iteration of loop" ;
/** @export */ Blockly . Msg . CONTROLS _FLOW _STATEMENTS _TOOLTIP _BREAK = "Break out of the containing loop." ;
/** @export */ Blockly . Msg . CONTROLS _FLOW _STATEMENTS _TOOLTIP _CONTINUE = "Skip the rest of this loop, and continue with the next iteration." ;
/** @export */ Blockly . Msg . CONTROLS _FLOW _STATEMENTS _WARNING = "Warning: This block may only be used within a loop." ;
/** @export */ Blockly . Msg . CONTROLS _FOREACH _HELPURL = "https://github.com/google/blockly/wiki/Loops#for-each" ;
/** @export */ Blockly . Msg . CONTROLS _FOREACH _TITLE = "for each item %1 in list %2" ;
/** @export */ Blockly . Msg . CONTROLS _FOREACH _TOOLTIP = "For each item in a list, set the variable '%1' to the item, and then do some statements." ;
/** @export */ Blockly . Msg . CONTROLS _FOR _HELPURL = "https://github.com/google/blockly/wiki/Loops#count-with" ;
/** @export */ Blockly . Msg . CONTROLS _FOR _TITLE = "count with %1 from %2 to %3 by %4" ;
/** @export */ Blockly . Msg . CONTROLS _FOR _TOOLTIP = "Have the variable '%1' take on the values from the start number to the end number, counting by the specified interval, and do the specified blocks." ;
/** @export */ Blockly . Msg . CONTROLS _IF _ELSEIF _TOOLTIP = "Add a condition to the if block." ;
/** @export */ Blockly . Msg . CONTROLS _IF _ELSE _TOOLTIP = "Add a final, catch-all condition to the if block." ;
/** @export */ Blockly . Msg . CONTROLS _IF _HELPURL = "https://github.com/google/blockly/wiki/IfElse" ;
/** @export */ Blockly . Msg . CONTROLS _IF _IF _TOOLTIP = "Add, remove, or reorder sections to reconfigure this if block." ;
/** @export */ Blockly . Msg . CONTROLS _IF _MSG _ELSE = "else" ;
/** @export */ Blockly . Msg . CONTROLS _IF _MSG _ELSEIF = "else if" ;
/** @export */ Blockly . Msg . CONTROLS _IF _MSG _IF = "if" ;
/** @export */ Blockly . Msg . CONTROLS _IF _TOOLTIP _1 = "If a value is true, then do some statements." ;
/** @export */ Blockly . Msg . CONTROLS _IF _TOOLTIP _2 = "If a value is true, then do the first block of statements. Otherwise, do the second block of statements." ;
/** @export */ Blockly . Msg . CONTROLS _IF _TOOLTIP _3 = "If the first value is true, then do the first block of statements. Otherwise, if the second value is true, do the second block of statements." ;
/** @export */ Blockly . Msg . CONTROLS _IF _TOOLTIP _4 = "If the first value is true, then do the first block of statements. Otherwise, if the second value is true, do the second block of statements. If none of the values are true, do the last block of statements." ;
/** @export */ Blockly . Msg . CONTROLS _REPEAT _HELPURL = "https://en.wikipedia.org/wiki/For_loop" ;
/** @export */ Blockly . Msg . CONTROLS _REPEAT _INPUT _DO = "do" ;
/** @export */ Blockly . Msg . CONTROLS _REPEAT _TITLE = "repeat %1 times" ;
/** @export */ Blockly . Msg . CONTROLS _REPEAT _TOOLTIP = "Do some statements several times." ;
/** @export */ Blockly . Msg . CONTROLS _WHILEUNTIL _HELPURL = "https://github.com/google/blockly/wiki/Loops#repeat" ;
/** @export */ Blockly . Msg . CONTROLS _WHILEUNTIL _OPERATOR _UNTIL = "repeat until" ;
/** @export */ Blockly . Msg . CONTROLS _WHILEUNTIL _OPERATOR _WHILE = "repeat while" ;
/** @export */ Blockly . Msg . CONTROLS _WHILEUNTIL _TOOLTIP _UNTIL = "While a value is false, then do some statements." ;
/** @export */ Blockly . Msg . CONTROLS _WHILEUNTIL _TOOLTIP _WHILE = "While a value is true, then do some statements." ;
/** @export */ Blockly . Msg . DELETE _ALL _BLOCKS = "Delete all %1 blocks?" ;
/** @export */ Blockly . Msg . DELETE _BLOCK = "Delete Block" ;
/** @export */ Blockly . Msg . DELETE _VARIABLE = "Delete the '%1' variable" ;
/** @export */ Blockly . Msg . DELETE _VARIABLE _CONFIRMATION = "Delete %1 uses of the '%2' variable?" ;
/** @export */ Blockly . Msg . DELETE _X _BLOCKS = "Delete %1 Blocks" ;
/** @export */ Blockly . Msg . DISABLE _BLOCK = "Disable Block" ;
/** @export */ Blockly . Msg . DUPLICATE _BLOCK = "Duplicate" ;
/** @export */ Blockly . Msg . ENABLE _BLOCK = "Enable Block" ;
/** @export */ Blockly . Msg . EXPAND _ALL = "Expand Blocks" ;
/** @export */ Blockly . Msg . EXPAND _BLOCK = "Expand Block" ;
/** @export */ Blockly . Msg . EXTERNAL _INPUTS = "External Inputs" ;
/** @export */ Blockly . Msg . HELP = "Help" ;
/** @export */ Blockly . Msg . INLINE _INPUTS = "Inline Inputs" ;
/** @export */ Blockly . Msg . IOS _CANCEL = "Cancel" ;
/** @export */ Blockly . Msg . IOS _ERROR = "Error" ;
/** @export */ Blockly . Msg . IOS _OK = "OK" ;
/** @export */ Blockly . Msg . IOS _PROCEDURES _ADD _INPUT = "+ Add Input" ;
/** @export */ Blockly . Msg . IOS _PROCEDURES _ALLOW _STATEMENTS = "Allow statements" ;
/** @export */ Blockly . Msg . IOS _PROCEDURES _DUPLICATE _INPUTS _ERROR = "This function has duplicate inputs." ;
/** @export */ Blockly . Msg . IOS _PROCEDURES _INPUTS = "INPUTS" ;
/** @export */ Blockly . Msg . IOS _VARIABLES _ADD _BUTTON = "Add" ;
/** @export */ Blockly . Msg . IOS _VARIABLES _ADD _VARIABLE = "+ Add Variable" ;
/** @export */ Blockly . Msg . IOS _VARIABLES _DELETE _BUTTON = "Delete" ;
/** @export */ Blockly . Msg . IOS _VARIABLES _EMPTY _NAME _ERROR = "You can't use an empty variable name." ;
/** @export */ Blockly . Msg . IOS _VARIABLES _RENAME _BUTTON = "Rename" ;
/** @export */ Blockly . Msg . IOS _VARIABLES _VARIABLE _NAME = "Variable name" ;
/** @export */ Blockly . Msg . LISTS _CREATE _EMPTY _HELPURL = "https://github.com/google/blockly/wiki/Lists#create-empty-list" ;
/** @export */ Blockly . Msg . LISTS _CREATE _EMPTY _TITLE = "create empty list" ;
/** @export */ Blockly . Msg . LISTS _CREATE _EMPTY _TOOLTIP = "Returns a list, of length 0, containing no data records" ;
/** @export */ Blockly . Msg . LISTS _CREATE _WITH _CONTAINER _TITLE _ADD = "list" ;
/** @export */ Blockly . Msg . LISTS _CREATE _WITH _CONTAINER _TOOLTIP = "Add, remove, or reorder sections to reconfigure this list block." ;
/** @export */ Blockly . Msg . LISTS _CREATE _WITH _HELPURL = "https://github.com/google/blockly/wiki/Lists#create-list-with" ;
/** @export */ Blockly . Msg . LISTS _CREATE _WITH _INPUT _WITH = "create list with" ;
/** @export */ Blockly . Msg . LISTS _CREATE _WITH _ITEM _TOOLTIP = "Add an item to the list." ;
/** @export */ Blockly . Msg . LISTS _CREATE _WITH _TOOLTIP = "Create a list with any number of items." ;
/** @export */ Blockly . Msg . LISTS _GET _INDEX _FIRST = "first" ;
/** @export */ Blockly . Msg . LISTS _GET _INDEX _FROM _END = "# from end" ;
/** @export */ Blockly . Msg . LISTS _GET _INDEX _FROM _START = "#" ;
/** @export */ Blockly . Msg . LISTS _GET _INDEX _GET = "get" ;
/** @export */ Blockly . Msg . LISTS _GET _INDEX _GET _REMOVE = "get and remove" ;
/** @export */ Blockly . Msg . LISTS _GET _INDEX _LAST = "last" ;
/** @export */ Blockly . Msg . LISTS _GET _INDEX _RANDOM = "random" ;
/** @export */ Blockly . Msg . LISTS _GET _INDEX _REMOVE = "remove" ;
/** @export */ Blockly . Msg . LISTS _GET _INDEX _TAIL = "" ;
/** @export */ Blockly . Msg . LISTS _GET _INDEX _TOOLTIP _GET _FIRST = "Returns the first item in a list." ;
/** @export */ Blockly . Msg . LISTS _GET _INDEX _TOOLTIP _GET _FROM = "Returns the item at the specified position in a list." ;
/** @export */ Blockly . Msg . LISTS _GET _INDEX _TOOLTIP _GET _LAST = "Returns the last item in a list." ;
/** @export */ Blockly . Msg . LISTS _GET _INDEX _TOOLTIP _GET _RANDOM = "Returns a random item in a list." ;
/** @export */ Blockly . Msg . LISTS _GET _INDEX _TOOLTIP _GET _REMOVE _FIRST = "Removes and returns the first item in a list." ;
/** @export */ Blockly . Msg . LISTS _GET _INDEX _TOOLTIP _GET _REMOVE _FROM = "Removes and returns the item at the specified position in a list." ;
/** @export */ Blockly . Msg . LISTS _GET _INDEX _TOOLTIP _GET _REMOVE _LAST = "Removes and returns the last item in a list." ;
/** @export */ Blockly . Msg . LISTS _GET _INDEX _TOOLTIP _GET _REMOVE _RANDOM = "Removes and returns a random item in a list." ;
/** @export */ Blockly . Msg . LISTS _GET _INDEX _TOOLTIP _REMOVE _FIRST = "Removes the first item in a list." ;
/** @export */ Blockly . Msg . LISTS _GET _INDEX _TOOLTIP _REMOVE _FROM = "Removes the item at the specified position in a list." ;
/** @export */ Blockly . Msg . LISTS _GET _INDEX _TOOLTIP _REMOVE _LAST = "Removes the last item in a list." ;
/** @export */ Blockly . Msg . LISTS _GET _INDEX _TOOLTIP _REMOVE _RANDOM = "Removes a random item in a list." ;
/** @export */ Blockly . Msg . LISTS _GET _SUBLIST _END _FROM _END = "to # from end" ;
/** @export */ Blockly . Msg . LISTS _GET _SUBLIST _END _FROM _START = "to #" ;
/** @export */ Blockly . Msg . LISTS _GET _SUBLIST _END _LAST = "to last" ;
/** @export */ Blockly . Msg . LISTS _GET _SUBLIST _HELPURL = "https://github.com/google/blockly/wiki/Lists#getting-a-sublist" ;
/** @export */ Blockly . Msg . LISTS _GET _SUBLIST _START _FIRST = "get sub-list from first" ;
/** @export */ Blockly . Msg . LISTS _GET _SUBLIST _START _FROM _END = "get sub-list from # from end" ;
/** @export */ Blockly . Msg . LISTS _GET _SUBLIST _START _FROM _START = "get sub-list from #" ;
/** @export */ Blockly . Msg . LISTS _GET _SUBLIST _TAIL = "" ;
/** @export */ Blockly . Msg . LISTS _GET _SUBLIST _TOOLTIP = "Creates a copy of the specified portion of a list." ;
/** @export */ Blockly . Msg . LISTS _INDEX _FROM _END _TOOLTIP = "%1 is the last item." ;
/** @export */ Blockly . Msg . LISTS _INDEX _FROM _START _TOOLTIP = "%1 is the first item." ;
/** @export */ Blockly . Msg . LISTS _INDEX _OF _FIRST = "find first occurrence of item" ;
/** @export */ Blockly . Msg . LISTS _INDEX _OF _HELPURL = "https://github.com/google/blockly/wiki/Lists#getting-items-from-a-list" ;
/** @export */ Blockly . Msg . LISTS _INDEX _OF _LAST = "find last occurrence of item" ;
/** @export */ Blockly . Msg . LISTS _INDEX _OF _TOOLTIP = "Returns the index of the first/last occurrence of the item in the list. Returns %1 if item is not found." ;
/** @export */ Blockly . Msg . LISTS _INLIST = "in list" ;
/** @export */ Blockly . Msg . LISTS _ISEMPTY _HELPURL = "https://github.com/google/blockly/wiki/Lists#is-empty" ;
/** @export */ Blockly . Msg . LISTS _ISEMPTY _TITLE = "%1 is empty" ;
/** @export */ Blockly . Msg . LISTS _ISEMPTY _TOOLTIP = "Returns true if the list is empty." ;
/** @export */ Blockly . Msg . LISTS _LENGTH _HELPURL = "https://github.com/google/blockly/wiki/Lists#length-of" ;
/** @export */ Blockly . Msg . LISTS _LENGTH _TITLE = "length of %1" ;
/** @export */ Blockly . Msg . LISTS _LENGTH _TOOLTIP = "Returns the length of a list." ;
/** @export */ Blockly . Msg . LISTS _REPEAT _HELPURL = "https://github.com/google/blockly/wiki/Lists#create-list-with" ;
/** @export */ Blockly . Msg . LISTS _REPEAT _TITLE = "create list with item %1 repeated %2 times" ;
/** @export */ Blockly . Msg . LISTS _REPEAT _TOOLTIP = "Creates a list consisting of the given value repeated the specified number of times." ;
/** @export */ Blockly . Msg . LISTS _REVERSE _HELPURL = "https://github.com/google/blockly/wiki/Lists#reversing-a-list" ;
/** @export */ Blockly . Msg . LISTS _REVERSE _MESSAGE0 = "reverse %1" ;
/** @export */ Blockly . Msg . LISTS _REVERSE _TOOLTIP = "Reverse a copy of a list." ;
/** @export */ Blockly . Msg . LISTS _SET _INDEX _HELPURL = "https://github.com/google/blockly/wiki/Lists#in-list--set" ;
/** @export */ Blockly . Msg . LISTS _SET _INDEX _INPUT _TO = "as" ;
/** @export */ Blockly . Msg . LISTS _SET _INDEX _INSERT = "insert at" ;
/** @export */ Blockly . Msg . LISTS _SET _INDEX _SET = "set" ;
/** @export */ Blockly . Msg . LISTS _SET _INDEX _TOOLTIP _INSERT _FIRST = "Inserts the item at the start of a list." ;
/** @export */ Blockly . Msg . LISTS _SET _INDEX _TOOLTIP _INSERT _FROM = "Inserts the item at the specified position in a list." ;
/** @export */ Blockly . Msg . LISTS _SET _INDEX _TOOLTIP _INSERT _LAST = "Append the item to the end of a list." ;
/** @export */ Blockly . Msg . LISTS _SET _INDEX _TOOLTIP _INSERT _RANDOM = "Inserts the item randomly in a list." ;
/** @export */ Blockly . Msg . LISTS _SET _INDEX _TOOLTIP _SET _FIRST = "Sets the first item in a list." ;
/** @export */ Blockly . Msg . LISTS _SET _INDEX _TOOLTIP _SET _FROM = "Sets the item at the specified position in a list." ;
/** @export */ Blockly . Msg . LISTS _SET _INDEX _TOOLTIP _SET _LAST = "Sets the last item in a list." ;
/** @export */ Blockly . Msg . LISTS _SET _INDEX _TOOLTIP _SET _RANDOM = "Sets a random item in a list." ;
/** @export */ Blockly . Msg . LISTS _SORT _HELPURL = "https://github.com/google/blockly/wiki/Lists#sorting-a-list" ;
/** @export */ Blockly . Msg . LISTS _SORT _ORDER _ASCENDING = "ascending" ;
/** @export */ Blockly . Msg . LISTS _SORT _ORDER _DESCENDING = "descending" ;
/** @export */ Blockly . Msg . LISTS _SORT _TITLE = "sort %1 %2 %3" ;
/** @export */ Blockly . Msg . LISTS _SORT _TOOLTIP = "Sort a copy of a list." ;
/** @export */ Blockly . Msg . LISTS _SORT _TYPE _IGNORECASE = "alphabetic, ignore case" ;
/** @export */ Blockly . Msg . LISTS _SORT _TYPE _NUMERIC = "numeric" ;
/** @export */ Blockly . Msg . LISTS _SORT _TYPE _TEXT = "alphabetic" ;
/** @export */ Blockly . Msg . LISTS _SPLIT _HELPURL = "https://github.com/google/blockly/wiki/Lists#splitting-strings-and-joining-lists" ;
/** @export */ Blockly . Msg . LISTS _SPLIT _LIST _FROM _TEXT = "make list from text" ;
/** @export */ Blockly . Msg . LISTS _SPLIT _TEXT _FROM _LIST = "make text from list" ;
/** @export */ Blockly . Msg . LISTS _SPLIT _TOOLTIP _JOIN = "Join a list of texts into one text, separated by a delimiter." ;
/** @export */ Blockly . Msg . LISTS _SPLIT _TOOLTIP _SPLIT = "Split text into a list of texts, breaking at each delimiter." ;
/** @export */ Blockly . Msg . LISTS _SPLIT _WITH _DELIMITER = "with delimiter" ;
/** @export */ Blockly . Msg . LOGIC _BOOLEAN _FALSE = "false" ;
/** @export */ Blockly . Msg . LOGIC _BOOLEAN _HELPURL = "https://github.com/google/blockly/wiki/Logic#values" ;
/** @export */ Blockly . Msg . LOGIC _BOOLEAN _TOOLTIP = "Returns either true or false." ;
/** @export */ Blockly . Msg . LOGIC _BOOLEAN _TRUE = "true" ;
/** @export */ Blockly . Msg . LOGIC _COMPARE _HELPURL = "https://en.wikipedia.org/wiki/Inequality_(mathematics)" ;
/** @export */ Blockly . Msg . LOGIC _COMPARE _TOOLTIP _EQ = "Return true if both inputs equal each other." ;
/** @export */ Blockly . Msg . LOGIC _COMPARE _TOOLTIP _GT = "Return true if the first input is greater than the second input." ;
/** @export */ Blockly . Msg . LOGIC _COMPARE _TOOLTIP _GTE = "Return true if the first input is greater than or equal to the second input." ;
/** @export */ Blockly . Msg . LOGIC _COMPARE _TOOLTIP _LT = "Return true if the first input is smaller than the second input." ;
/** @export */ Blockly . Msg . LOGIC _COMPARE _TOOLTIP _LTE = "Return true if the first input is smaller than or equal to the second input." ;
/** @export */ Blockly . Msg . LOGIC _COMPARE _TOOLTIP _NEQ = "Return true if both inputs are not equal to each other." ;
/** @export */ Blockly . Msg . LOGIC _NEGATE _HELPURL = "https://github.com/google/blockly/wiki/Logic#not" ;
/** @export */ Blockly . Msg . LOGIC _NEGATE _TITLE = "not %1" ;
/** @export */ Blockly . Msg . LOGIC _NEGATE _TOOLTIP = "Returns true if the input is false. Returns false if the input is true." ;
/** @export */ Blockly . Msg . LOGIC _NULL = "null" ;
/** @export */ Blockly . Msg . LOGIC _NULL _HELPURL = "https://en.wikipedia.org/wiki/Nullable_type" ;
/** @export */ Blockly . Msg . LOGIC _NULL _TOOLTIP = "Returns null." ;
/** @export */ Blockly . Msg . LOGIC _OPERATION _AND = "and" ;
/** @export */ Blockly . Msg . LOGIC _OPERATION _HELPURL = "https://github.com/google/blockly/wiki/Logic#logical-operations" ;
/** @export */ Blockly . Msg . LOGIC _OPERATION _OR = "or" ;
/** @export */ Blockly . Msg . LOGIC _OPERATION _TOOLTIP _AND = "Return true if both inputs are true." ;
/** @export */ Blockly . Msg . LOGIC _OPERATION _TOOLTIP _OR = "Return true if at least one of the inputs is true." ;
/** @export */ Blockly . Msg . LOGIC _TERNARY _CONDITION = "test" ;
/** @export */ Blockly . Msg . LOGIC _TERNARY _HELPURL = "https://en.wikipedia.org/wiki/%3F:" ;
/** @export */ Blockly . Msg . LOGIC _TERNARY _IF _FALSE = "if false" ;
/** @export */ Blockly . Msg . LOGIC _TERNARY _IF _TRUE = "if true" ;
/** @export */ Blockly . Msg . LOGIC _TERNARY _TOOLTIP = "Check the condition in 'test'. If the condition is true, returns the 'if true' value; otherwise returns the 'if false' value." ;
/** @export */ Blockly . Msg . MATH _ADDITION _SYMBOL = "+" ;
/** @export */ Blockly . Msg . MATH _ARITHMETIC _HELPURL = "https://en.wikipedia.org/wiki/Arithmetic" ;
/** @export */ Blockly . Msg . MATH _ARITHMETIC _TOOLTIP _ADD = "Return the sum of the two numbers." ;
/** @export */ Blockly . Msg . MATH _ARITHMETIC _TOOLTIP _DIVIDE = "Return the quotient of the two numbers." ;
/** @export */ Blockly . Msg . MATH _ARITHMETIC _TOOLTIP _MINUS = "Return the difference of the two numbers." ;
/** @export */ Blockly . Msg . MATH _ARITHMETIC _TOOLTIP _MULTIPLY = "Return the product of the two numbers." ;
/** @export */ Blockly . Msg . MATH _ARITHMETIC _TOOLTIP _POWER = "Return the first number raised to the power of the second number." ;
/** @export */ Blockly . Msg . MATH _CHANGE _HELPURL = "https://en.wikipedia.org/wiki/Programming_idiom#Incrementing_a_counter" ;
/** @export */ Blockly . Msg . MATH _CHANGE _TITLE = "change %1 by %2" ;
/** @export */ Blockly . Msg . MATH _CHANGE _TOOLTIP = "Add a number to variable '%1'." ;
/** @export */ Blockly . Msg . MATH _CONSTANT _HELPURL = "https://en.wikipedia.org/wiki/Mathematical_constant" ;
/** @export */ Blockly . Msg . MATH _CONSTANT _TOOLTIP = "Return one of the common constants: π (3.141…), e (2.718…), φ (1.618…), sqrt(2) (1.414…), sqrt(½) (0.707…), or ∞ (infinity)." ;
/** @export */ Blockly . Msg . MATH _CONSTRAIN _HELPURL = "https://en.wikipedia.org/wiki/Clamping_(graphics)" ;
/** @export */ Blockly . Msg . MATH _CONSTRAIN _TITLE = "constrain %1 low %2 high %3" ;
/** @export */ Blockly . Msg . MATH _CONSTRAIN _TOOLTIP = "Constrain a number to be between the specified limits (inclusive)." ;
/** @export */ Blockly . Msg . MATH _DIVISION _SYMBOL = "÷" ;
/** @export */ Blockly . Msg . MATH _IS _DIVISIBLE _BY = "is divisible by" ;
/** @export */ Blockly . Msg . MATH _IS _EVEN = "is even" ;
/** @export */ Blockly . Msg . MATH _IS _NEGATIVE = "is negative" ;
/** @export */ Blockly . Msg . MATH _IS _ODD = "is odd" ;
/** @export */ Blockly . Msg . MATH _IS _POSITIVE = "is positive" ;
/** @export */ Blockly . Msg . MATH _IS _PRIME = "is prime" ;
/** @export */ Blockly . Msg . MATH _IS _TOOLTIP = "Check if a number is an even, odd, prime, whole, positive, negative, or if it is divisible by certain number. Returns true or false." ;
/** @export */ Blockly . Msg . MATH _IS _WHOLE = "is whole" ;
/** @export */ Blockly . Msg . MATH _MODULO _HELPURL = "https://en.wikipedia.org/wiki/Modulo_operation" ;
/** @export */ Blockly . Msg . MATH _MODULO _TITLE = "remainder of %1 ÷ %2" ;
/** @export */ Blockly . Msg . MATH _MODULO _TOOLTIP = "Return the remainder from dividing the two numbers." ;
/** @export */ Blockly . Msg . MATH _MULTIPLICATION _SYMBOL = "× " ;
/** @export */ Blockly . Msg . MATH _NUMBER _HELPURL = "https://en.wikipedia.org/wiki/Number" ;
/** @export */ Blockly . Msg . MATH _NUMBER _TOOLTIP = "A number." ;
/** @export */ Blockly . Msg . MATH _ONLIST _HELPURL = "" ;
/** @export */ Blockly . Msg . MATH _ONLIST _OPERATOR _AVERAGE = "average of list" ;
/** @export */ Blockly . Msg . MATH _ONLIST _OPERATOR _MAX = "max of list" ;
/** @export */ Blockly . Msg . MATH _ONLIST _OPERATOR _MEDIAN = "median of list" ;
/** @export */ Blockly . Msg . MATH _ONLIST _OPERATOR _MIN = "min of list" ;
/** @export */ Blockly . Msg . MATH _ONLIST _OPERATOR _MODE = "modes of list" ;
/** @export */ Blockly . Msg . MATH _ONLIST _OPERATOR _RANDOM = "random item of list" ;
/** @export */ Blockly . Msg . MATH _ONLIST _OPERATOR _STD _DEV = "standard deviation of list" ;
/** @export */ Blockly . Msg . MATH _ONLIST _OPERATOR _SUM = "sum of list" ;
/** @export */ Blockly . Msg . MATH _ONLIST _TOOLTIP _AVERAGE = "Return the average (arithmetic mean) of the numeric values in the list." ;
/** @export */ Blockly . Msg . MATH _ONLIST _TOOLTIP _MAX = "Return the largest number in the list." ;
/** @export */ Blockly . Msg . MATH _ONLIST _TOOLTIP _MEDIAN = "Return the median number in the list." ;
/** @export */ Blockly . Msg . MATH _ONLIST _TOOLTIP _MIN = "Return the smallest number in the list." ;
/** @export */ Blockly . Msg . MATH _ONLIST _TOOLTIP _MODE = "Return a list of the most common item(s) in the list." ;
/** @export */ Blockly . Msg . MATH _ONLIST _TOOLTIP _RANDOM = "Return a random element from the list." ;
/** @export */ Blockly . Msg . MATH _ONLIST _TOOLTIP _STD _DEV = "Return the standard deviation of the list." ;
/** @export */ Blockly . Msg . MATH _ONLIST _TOOLTIP _SUM = "Return the sum of all the numbers in the list." ;
/** @export */ Blockly . Msg . MATH _POWER _SYMBOL = "^" ;
/** @export */ Blockly . Msg . MATH _RANDOM _FLOAT _HELPURL = "https://en.wikipedia.org/wiki/Random_number_generation" ;
/** @export */ Blockly . Msg . MATH _RANDOM _FLOAT _TITLE _RANDOM = "random fraction" ;
/** @export */ Blockly . Msg . MATH _RANDOM _FLOAT _TOOLTIP = "Return a random fraction between 0.0 (inclusive) and 1.0 (exclusive)." ;
/** @export */ Blockly . Msg . MATH _RANDOM _INT _HELPURL = "https://en.wikipedia.org/wiki/Random_number_generation" ;
/** @export */ Blockly . Msg . MATH _RANDOM _INT _TITLE = "random integer from %1 to %2" ;
/** @export */ Blockly . Msg . MATH _RANDOM _INT _TOOLTIP = "Return a random integer between the two specified limits, inclusive." ;
/** @export */ Blockly . Msg . MATH _ROUND _HELPURL = "https://en.wikipedia.org/wiki/Rounding" ;
/** @export */ Blockly . Msg . MATH _ROUND _OPERATOR _ROUND = "round" ;
/** @export */ Blockly . Msg . MATH _ROUND _OPERATOR _ROUNDDOWN = "round down" ;
/** @export */ Blockly . Msg . MATH _ROUND _OPERATOR _ROUNDUP = "round up" ;
/** @export */ Blockly . Msg . MATH _ROUND _TOOLTIP = "Round a number up or down." ;
/** @export */ Blockly . Msg . MATH _SINGLE _HELPURL = "https://en.wikipedia.org/wiki/Square_root" ;
/** @export */ Blockly . Msg . MATH _SINGLE _OP _ABSOLUTE = "absolute" ;
/** @export */ Blockly . Msg . MATH _SINGLE _OP _ROOT = "square root" ;
/** @export */ Blockly . Msg . MATH _SINGLE _TOOLTIP _ABS = "Return the absolute value of a number." ;
/** @export */ Blockly . Msg . MATH _SINGLE _TOOLTIP _EXP = "Return e to the power of a number." ;
/** @export */ Blockly . Msg . MATH _SINGLE _TOOLTIP _LN = "Return the natural logarithm of a number." ;
/** @export */ Blockly . Msg . MATH _SINGLE _TOOLTIP _LOG10 = "Return the base 10 logarithm of a number." ;
/** @export */ Blockly . Msg . MATH _SINGLE _TOOLTIP _NEG = "Return the negation of a number." ;
/** @export */ Blockly . Msg . MATH _SINGLE _TOOLTIP _POW10 = "Return 10 to the power of a number." ;
/** @export */ Blockly . Msg . MATH _SINGLE _TOOLTIP _ROOT = "Return the square root of a number." ;
/** @export */ Blockly . Msg . MATH _SUBTRACTION _SYMBOL = "-" ;
/** @export */ Blockly . Msg . MATH _TRIG _ACOS = "acos" ;
/** @export */ Blockly . Msg . MATH _TRIG _ASIN = "asin" ;
/** @export */ Blockly . Msg . MATH _TRIG _ATAN = "atan" ;
/** @export */ Blockly . Msg . MATH _TRIG _COS = "cos" ;
/** @export */ Blockly . Msg . MATH _TRIG _HELPURL = "https://en.wikipedia.org/wiki/Trigonometric_functions" ;
/** @export */ Blockly . Msg . MATH _TRIG _SIN = "sin" ;
/** @export */ Blockly . Msg . MATH _TRIG _TAN = "tan" ;
/** @export */ Blockly . Msg . MATH _TRIG _TOOLTIP _ACOS = "Return the arccosine of a number." ;
/** @export */ Blockly . Msg . MATH _TRIG _TOOLTIP _ASIN = "Return the arcsine of a number." ;
/** @export */ Blockly . Msg . MATH _TRIG _TOOLTIP _ATAN = "Return the arctangent of a number." ;
/** @export */ Blockly . Msg . MATH _TRIG _TOOLTIP _COS = "Return the cosine of a degree (not radian)." ;
/** @export */ Blockly . Msg . MATH _TRIG _TOOLTIP _SIN = "Return the sine of a degree (not radian)." ;
/** @export */ Blockly . Msg . MATH _TRIG _TOOLTIP _TAN = "Return the tangent of a degree (not radian)." ;
/** @export */ Blockly . Msg . NEW _VARIABLE = "Create variable..." ;
/** @export */ Blockly . Msg . NEW _VARIABLE _TITLE = "New variable name:" ;
/** @export */ Blockly . Msg . ORDINAL _NUMBER _SUFFIX = "" ;
/** @export */ Blockly . Msg . PROCEDURES _ALLOW _STATEMENTS = "allow statements" ;
/** @export */ Blockly . Msg . PROCEDURES _BEFORE _PARAMS = "with:" ;
/** @export */ Blockly . Msg . PROCEDURES _CALLNORETURN _HELPURL = "https://en.wikipedia.org/wiki/Subroutine" ;
/** @export */ Blockly . Msg . PROCEDURES _CALLNORETURN _TOOLTIP = "Run the user-defined function '%1'." ;
/** @export */ Blockly . Msg . PROCEDURES _CALLRETURN _HELPURL = "https://en.wikipedia.org/wiki/Subroutine" ;
/** @export */ Blockly . Msg . PROCEDURES _CALLRETURN _TOOLTIP = "Run the user-defined function '%1' and use its output." ;
/** @export */ Blockly . Msg . PROCEDURES _CALL _BEFORE _PARAMS = "with:" ;
/** @export */ Blockly . Msg . PROCEDURES _CREATE _DO = "Create '%1'" ;
/** @export */ Blockly . Msg . PROCEDURES _DEFNORETURN _COMMENT = "Describe this function..." ;
/** @export */ Blockly . Msg . PROCEDURES _DEFNORETURN _DO = "" ;
/** @export */ Blockly . Msg . PROCEDURES _DEFNORETURN _HELPURL = "https://en.wikipedia.org/wiki/Subroutine" ;
/** @export */ Blockly . Msg . PROCEDURES _DEFNORETURN _PROCEDURE = "do something" ;
/** @export */ Blockly . Msg . PROCEDURES _DEFNORETURN _TITLE = "to" ;
/** @export */ Blockly . Msg . PROCEDURES _DEFNORETURN _TOOLTIP = "Creates a function with no output." ;
/** @export */ Blockly . Msg . PROCEDURES _DEFRETURN _HELPURL = "https://en.wikipedia.org/wiki/Subroutine" ;
/** @export */ Blockly . Msg . PROCEDURES _DEFRETURN _RETURN = "return" ;
/** @export */ Blockly . Msg . PROCEDURES _DEFRETURN _TOOLTIP = "Creates a function with an output." ;
/** @export */ Blockly . Msg . PROCEDURES _DEF _DUPLICATE _WARNING = "Warning: This function has duplicate parameters." ;
/** @export */ Blockly . Msg . PROCEDURES _HIGHLIGHT _DEF = "Highlight function definition" ;
/** @export */ Blockly . Msg . PROCEDURES _IFRETURN _HELPURL = "http://c2.com/cgi/wiki?GuardClause" ;
/** @export */ Blockly . Msg . PROCEDURES _IFRETURN _TOOLTIP = "If a value is true, then return a second value." ;
/** @export */ Blockly . Msg . PROCEDURES _IFRETURN _WARNING = "Warning: This block may be used only within a function definition." ;
/** @export */ Blockly . Msg . PROCEDURES _MUTATORARG _TITLE = "input name:" ;
/** @export */ Blockly . Msg . PROCEDURES _MUTATORARG _TOOLTIP = "Add an input to the function." ;
/** @export */ Blockly . Msg . PROCEDURES _MUTATORCONTAINER _TITLE = "inputs" ;
/** @export */ Blockly . Msg . PROCEDURES _MUTATORCONTAINER _TOOLTIP = "Add, remove, or reorder inputs to this function." ;
/** @export */ Blockly . Msg . REDO = "Redo" ;
/** @export */ Blockly . Msg . REMOVE _COMMENT = "Remove Comment" ;
/** @export */ Blockly . Msg . RENAME _VARIABLE = "Rename variable..." ;
/** @export */ Blockly . Msg . RENAME _VARIABLE _TITLE = "Rename all '%1' variables to:" ;
/** @export */ Blockly . Msg . TEXT _APPEND _HELPURL = "https://github.com/google/blockly/wiki/Text#text-modification" ;
/** @export */ Blockly . Msg . TEXT _APPEND _TITLE = "to %1 append text %2" ;
/** @export */ Blockly . Msg . TEXT _APPEND _TOOLTIP = "Append some text to variable '%1'." ;
/** @export */ Blockly . Msg . TEXT _CHANGECASE _HELPURL = "https://github.com/google/blockly/wiki/Text#adjusting-text-case" ;
/** @export */ Blockly . Msg . TEXT _CHANGECASE _OPERATOR _LOWERCASE = "to lower case" ;
/** @export */ Blockly . Msg . TEXT _CHANGECASE _OPERATOR _TITLECASE = "to Title Case" ;
/** @export */ Blockly . Msg . TEXT _CHANGECASE _OPERATOR _UPPERCASE = "to UPPER CASE" ;
/** @export */ Blockly . Msg . TEXT _CHANGECASE _TOOLTIP = "Return a copy of the text in a different case." ;
/** @export */ Blockly . Msg . TEXT _CHARAT _FIRST = "get first letter" ;
/** @export */ Blockly . Msg . TEXT _CHARAT _FROM _END = "get letter # from end" ;
/** @export */ Blockly . Msg . TEXT _CHARAT _FROM _START = "get letter #" ;
/** @export */ Blockly . Msg . TEXT _CHARAT _HELPURL = "https://github.com/google/blockly/wiki/Text#extracting-text" ;
/** @export */ Blockly . Msg . TEXT _CHARAT _LAST = "get last letter" ;
/** @export */ Blockly . Msg . TEXT _CHARAT _RANDOM = "get random letter" ;
/** @export */ Blockly . Msg . TEXT _CHARAT _TAIL = "" ;
/** @export */ Blockly . Msg . TEXT _CHARAT _TITLE = "in text %1 %2" ;
/** @export */ Blockly . Msg . TEXT _CHARAT _TOOLTIP = "Returns the letter at the specified position." ;
/** @export */ Blockly . Msg . TEXT _COUNT _HELPURL = "https://github.com/google/blockly/wiki/Text#counting-substrings" ;
/** @export */ Blockly . Msg . TEXT _COUNT _MESSAGE0 = "count %1 in %2" ;
/** @export */ Blockly . Msg . TEXT _COUNT _TOOLTIP = "Count how many times some text occurs within some other text." ;
/** @export */ Blockly . Msg . TEXT _CREATE _JOIN _ITEM _TOOLTIP = "Add an item to the text." ;
/** @export */ Blockly . Msg . TEXT _CREATE _JOIN _TITLE _JOIN = "join" ;
/** @export */ Blockly . Msg . TEXT _CREATE _JOIN _TOOLTIP = "Add, remove, or reorder sections to reconfigure this text block." ;
/** @export */ Blockly . Msg . TEXT _GET _SUBSTRING _END _FROM _END = "to letter # from end" ;
/** @export */ Blockly . Msg . TEXT _GET _SUBSTRING _END _FROM _START = "to letter #" ;
/** @export */ Blockly . Msg . TEXT _GET _SUBSTRING _END _LAST = "to last letter" ;
/** @export */ Blockly . Msg . TEXT _GET _SUBSTRING _HELPURL = "https://github.com/google/blockly/wiki/Text#extracting-a-region-of-text" ;
/** @export */ Blockly . Msg . TEXT _GET _SUBSTRING _INPUT _IN _TEXT = "in text" ;
/** @export */ Blockly . Msg . TEXT _GET _SUBSTRING _START _FIRST = "get substring from first letter" ;
/** @export */ Blockly . Msg . TEXT _GET _SUBSTRING _START _FROM _END = "get substring from letter # from end" ;
/** @export */ Blockly . Msg . TEXT _GET _SUBSTRING _START _FROM _START = "get substring from letter #" ;
/** @export */ Blockly . Msg . TEXT _GET _SUBSTRING _TAIL = "" ;
/** @export */ Blockly . Msg . TEXT _GET _SUBSTRING _TOOLTIP = "Returns a specified portion of the text." ;
/** @export */ Blockly . Msg . TEXT _INDEXOF _HELPURL = "https://github.com/google/blockly/wiki/Text#finding-text" ;
/** @export */ Blockly . Msg . TEXT _INDEXOF _OPERATOR _FIRST = "find first occurrence of text" ;
/** @export */ Blockly . Msg . TEXT _INDEXOF _OPERATOR _LAST = "find last occurrence of text" ;
/** @export */ Blockly . Msg . TEXT _INDEXOF _TITLE = "in text %1 %2 %3" ;
/** @export */ Blockly . Msg . TEXT _INDEXOF _TOOLTIP = "Returns the index of the first/last occurrence of the first text in the second text. Returns %1 if text is not found." ;
/** @export */ Blockly . Msg . TEXT _ISEMPTY _HELPURL = "https://github.com/google/blockly/wiki/Text#checking-for-empty-text" ;
/** @export */ Blockly . Msg . TEXT _ISEMPTY _TITLE = "%1 is empty" ;
/** @export */ Blockly . Msg . TEXT _ISEMPTY _TOOLTIP = "Returns true if the provided text is empty." ;
/** @export */ Blockly . Msg . TEXT _JOIN _HELPURL = "https://github.com/google/blockly/wiki/Text#text-creation" ;
/** @export */ Blockly . Msg . TEXT _JOIN _TITLE _CREATEWITH = "create text with" ;
/** @export */ Blockly . Msg . TEXT _JOIN _TOOLTIP = "Create a piece of text by joining together any number of items." ;
/** @export */ Blockly . Msg . TEXT _LENGTH _HELPURL = "https://github.com/google/blockly/wiki/Text#text-modification" ;
/** @export */ Blockly . Msg . TEXT _LENGTH _TITLE = "length of %1" ;
/** @export */ Blockly . Msg . TEXT _LENGTH _TOOLTIP = "Returns the number of letters (including spaces) in the provided text." ;
/** @export */ Blockly . Msg . TEXT _PRINT _HELPURL = "https://github.com/google/blockly/wiki/Text#printing-text" ;
/** @export */ Blockly . Msg . TEXT _PRINT _TITLE = "print %1" ;
/** @export */ Blockly . Msg . TEXT _PRINT _TOOLTIP = "Print the specified text, number or other value." ;
/** @export */ Blockly . Msg . TEXT _PROMPT _HELPURL = "https://github.com/google/blockly/wiki/Text#getting-input-from-the-user" ;
/** @export */ Blockly . Msg . TEXT _PROMPT _TOOLTIP _NUMBER = "Prompt for user for a number." ;
/** @export */ Blockly . Msg . TEXT _PROMPT _TOOLTIP _TEXT = "Prompt for user for some text." ;
/** @export */ Blockly . Msg . TEXT _PROMPT _TYPE _NUMBER = "prompt for number with message" ;
/** @export */ Blockly . Msg . TEXT _PROMPT _TYPE _TEXT = "prompt for text with message" ;
/** @export */ Blockly . Msg . TEXT _REPLACE _HELPURL = "https://github.com/google/blockly/wiki/Text#replacing-substrings" ;
/** @export */ Blockly . Msg . TEXT _REPLACE _MESSAGE0 = "replace %1 with %2 in %3" ;
/** @export */ Blockly . Msg . TEXT _REPLACE _TOOLTIP = "Replace all occurances of some text within some other text." ;
/** @export */ Blockly . Msg . TEXT _REVERSE _HELPURL = "https://github.com/google/blockly/wiki/Text#reversing-text" ;
/** @export */ Blockly . Msg . TEXT _REVERSE _MESSAGE0 = "reverse %1" ;
/** @export */ Blockly . Msg . TEXT _REVERSE _TOOLTIP = "Reverses the order of the characters in the text." ;
/** @export */ Blockly . Msg . TEXT _TEXT _HELPURL = "https://en.wikipedia.org/wiki/String_(computer_science)" ;
/** @export */ Blockly . Msg . TEXT _TEXT _TOOLTIP = "A letter, word, or line of text." ;
/** @export */ Blockly . Msg . TEXT _TRIM _HELPURL = "https://github.com/google/blockly/wiki/Text#trimming-removing-spaces" ;
/** @export */ Blockly . Msg . TEXT _TRIM _OPERATOR _BOTH = "trim spaces from both sides of" ;
/** @export */ Blockly . Msg . TEXT _TRIM _OPERATOR _LEFT = "trim spaces from left side of" ;
/** @export */ Blockly . Msg . TEXT _TRIM _OPERATOR _RIGHT = "trim spaces from right side of" ;
/** @export */ Blockly . Msg . TEXT _TRIM _TOOLTIP = "Return a copy of the text with spaces removed from one or both ends." ;
/** @export */ Blockly . Msg . TODAY = "Today" ;
/** @export */ Blockly . Msg . UNDO = "Undo" ;
/** @export */ Blockly . Msg . VARIABLES _DEFAULT _NAME = "item" ;
/** @export */ Blockly . Msg . VARIABLES _GET _CREATE _SET = "Create 'set %1'" ;
/** @export */ Blockly . Msg . VARIABLES _GET _HELPURL = "https://github.com/google/blockly/wiki/Variables#get" ;
/** @export */ Blockly . Msg . VARIABLES _GET _TOOLTIP = "Returns the value of this variable." ;
/** @export */ Blockly . Msg . VARIABLES _SET = "set %1 to %2" ;
/** @export */ Blockly . Msg . VARIABLES _SET _CREATE _GET = "Create 'get %1'" ;
/** @export */ Blockly . Msg . VARIABLES _SET _HELPURL = "https://github.com/google/blockly/wiki/Variables#set" ;
/** @export */ Blockly . Msg . VARIABLES _SET _TOOLTIP = "Sets this variable to be equal to the input." ;
/** @export */ Blockly . Msg . VARIABLE _ALREADY _EXISTS = "A variable named '%1' already exists." ;
/** @export */ Blockly . Msg . VARIABLE _ALREADY _EXISTS _FOR _ANOTHER _TYPE = "A variable named '%1' already exists for another variable of type '%2'." ;
/** @export */ Blockly . Msg . PROCEDURES _DEFRETURN _TITLE = Blockly . Msg . PROCEDURES _DEFNORETURN _TITLE ;
/** @export */ Blockly . Msg . CONTROLS _IF _IF _TITLE _IF = Blockly . Msg . CONTROLS _IF _MSG _IF ;
/** @export */ Blockly . Msg . CONTROLS _WHILEUNTIL _INPUT _DO = Blockly . Msg . CONTROLS _REPEAT _INPUT _DO ;
/** @export */ Blockly . Msg . CONTROLS _IF _MSG _THEN = Blockly . Msg . CONTROLS _REPEAT _INPUT _DO ;
/** @export */ Blockly . Msg . CONTROLS _IF _ELSE _TITLE _ELSE = Blockly . Msg . CONTROLS _IF _MSG _ELSE ;
/** @export */ Blockly . Msg . PROCEDURES _DEFRETURN _PROCEDURE = Blockly . Msg . PROCEDURES _DEFNORETURN _PROCEDURE ;
/** @export */ Blockly . Msg . LISTS _GET _SUBLIST _INPUT _IN _LIST = Blockly . Msg . LISTS _INLIST ;
/** @export */ Blockly . Msg . LISTS _GET _INDEX _INPUT _IN _LIST = Blockly . Msg . LISTS _INLIST ;
/** @export */ Blockly . Msg . MATH _CHANGE _TITLE _ITEM = Blockly . Msg . VARIABLES _DEFAULT _NAME ;
/** @export */ Blockly . Msg . PROCEDURES _DEFRETURN _DO = Blockly . Msg . PROCEDURES _DEFNORETURN _DO ;
/** @export */ Blockly . Msg . CONTROLS _IF _ELSEIF _TITLE _ELSEIF = Blockly . Msg . CONTROLS _IF _MSG _ELSEIF ;
/** @export */ Blockly . Msg . LISTS _GET _INDEX _HELPURL = Blockly . Msg . LISTS _INDEX _OF _HELPURL ;
/** @export */ Blockly . Msg . CONTROLS _FOREACH _INPUT _DO = Blockly . Msg . CONTROLS _REPEAT _INPUT _DO ;
/** @export */ Blockly . Msg . LISTS _SET _INDEX _INPUT _IN _LIST = Blockly . Msg . LISTS _INLIST ;
/** @export */ Blockly . Msg . CONTROLS _FOR _INPUT _DO = Blockly . Msg . CONTROLS _REPEAT _INPUT _DO ;
/** @export */ Blockly . Msg . LISTS _CREATE _WITH _ITEM _TITLE = Blockly . Msg . VARIABLES _DEFAULT _NAME ;
/** @export */ Blockly . Msg . TEXT _APPEND _VARIABLE = Blockly . Msg . VARIABLES _DEFAULT _NAME ;
/** @export */ Blockly . Msg . TEXT _CREATE _JOIN _ITEM _TITLE _ITEM = Blockly . Msg . VARIABLES _DEFAULT _NAME ;
/** @export */ Blockly . Msg . LISTS _INDEX _OF _INPUT _IN _LIST = Blockly . Msg . LISTS _INLIST ;
/** @export */ Blockly . Msg . PROCEDURES _DEFRETURN _COMMENT = Blockly . Msg . PROCEDURES _DEFNORETURN _COMMENT ;
/** @export */ Blockly . Msg . MATH _HUE = "230" ;
/** @export */ Blockly . Msg . LOOPS _HUE = "120" ;
/** @export */ Blockly . Msg . LISTS _HUE = "260" ;
/** @export */ Blockly . Msg . LOGIC _HUE = "210" ;
/** @export */ Blockly . Msg . VARIABLES _HUE = "330" ;
/** @export */ Blockly . Msg . TEXTS _HUE = "160" ;
/** @export */ Blockly . Msg . PROCEDURES _HUE = "290" ;
/** @export */ Blockly . Msg . COLOUR _HUE = "20" ;