mirror of
https://github.com/scratchfoundation/scratch-blocks.git
synced 2025-08-11 13:38:50 -04:00
Remove ellipses and change language to "Make a List/Variable"
This commit is contained in:
parent
8c60bc56b8
commit
395c71224e
1 changed files with 5 additions and 5 deletions
|
@ -120,13 +120,13 @@ Blockly.Msg.SHOW_PROCEDURE_DEFINITION = 'Go to definition';
|
|||
/// prompt - This message is only seen in the Opera browser. With most browsers, users can edit numeric values in blocks by just clicking and typing. Opera does not allows this, so we have to open a new window and prompt users with this message to chanage a value.
|
||||
Blockly.Msg.CHANGE_VALUE_TITLE = 'Change value:';
|
||||
/// dropdown choice - When the user clicks on a variable block, this is one of the dropdown menu choices. It is used to rename the current variable. See [https://github.com/google/blockly/wiki/Variables#dropdown-menu https://github.com/google/blockly/wiki/Variables#dropdown-menu].
|
||||
Blockly.Msg.RENAME_VARIABLE = 'Rename variable...';
|
||||
Blockly.Msg.RENAME_VARIABLE = 'Rename variable';
|
||||
/// prompt - Prompts the user to enter the new name for the selected variable. See [https://github.com/google/blockly/wiki/Variables#dropdown-menu https://github.com/google/blockly/wiki/Variables#dropdown-menu].\n\nParameters:\n* %1 - the name of the variable to be renamed.
|
||||
Blockly.Msg.RENAME_VARIABLE_TITLE = 'Rename all "%1" variables to:';
|
||||
|
||||
// Variable creation
|
||||
/// button text - Text on the button used to launch the variable creation dialogue.
|
||||
Blockly.Msg.NEW_VARIABLE = 'Create variable...';
|
||||
Blockly.Msg.NEW_VARIABLE = 'Make a Variable';
|
||||
/// prompt - Prompts the user to enter the name for a new variable. See [https://github.com/google/blockly/wiki/Variables#dropdown-menu https://github.com/google/blockly/wiki/Variables#dropdown-menu].
|
||||
Blockly.Msg.NEW_VARIABLE_TITLE = 'New variable name:';
|
||||
/// alert - Tells the user that the name they entered is already in use.
|
||||
|
@ -138,17 +138,17 @@ Blockly.Msg.PROCEDURE_ALREADY_EXISTS = 'A procedure named "%1" already exists.';
|
|||
|
||||
// Custom procedure creation
|
||||
/// button text - Text on the button used to launch the procedure creation dialogue.
|
||||
Blockly.Msg.NEW_PROCEDURE = 'Make a Block...';
|
||||
Blockly.Msg.NEW_PROCEDURE = 'Make a Block';
|
||||
|
||||
// List creation
|
||||
/// button text - Text on the button used to launch the list creation dialogue.
|
||||
Blockly.Msg.NEW_LIST = 'Create list...';
|
||||
Blockly.Msg.NEW_LIST = 'Make a List';
|
||||
/// prompt - Prompts the user to enter the name for a new list
|
||||
Blockly.Msg.NEW_LIST_TITLE = 'New list name:';
|
||||
|
||||
// Broadcast Message creation
|
||||
/// dropdown choice - Create a new message.
|
||||
Blockly.Msg.NEW_BROADCAST_MESSAGE = 'New message...';
|
||||
Blockly.Msg.NEW_BROADCAST_MESSAGE = 'New message';
|
||||
/// prompt - Prompts the user to enter the name for a new broadcast message
|
||||
Blockly.Msg.NEW_BROADCAST_MESSAGE_TITLE = 'New message name:';
|
||||
/// default broadcast message name
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue