You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: packages/blockly/msg/json/qqq.json
+10-1Lines changed: 10 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -512,5 +512,14 @@
512
512
"FIELD_LABEL_VARIABLE": "Label for a variable field option, used by screen readers to identify the options in a variable dropdown field. \n\nParameters:\n* %1 - the name of the variable represented by the option \n\nExamples:\n* 'Variable 'item''\n* 'Variable 'x''",
513
513
"ARIA_LABEL_BUTTON": "Part of an aria label for an element that indicates it is a button, but for technical reasons cannot be give a role of button. Ideally, this would match the localized name for what screenreaders announce for <button> elements in your language.",
514
514
"ARIA_LABEL_HEADING": "Part of an aria label for an element that indicates it is a heading, but for technial reasons cannot be given a role of heading. Ideally, this would match the localized name for what screenreaders announce for <h1> elements in your language.",
515
-
"BUBBLE_LABEL_DEFAULT": "Default label for bubbles. This is only used if a bubble is created without a label provider."
515
+
"BUBBLE_LABEL_DEFAULT": "Default label for bubbles. This is only used if a bubble is created without a label provider.",
516
+
"BUBBLE_LABEL_COMMENT": "Label for a comment bubble. Placeholder corresponds to the content of the comment. \n\nParameters:\n* %1 - the content of the comment \n\nExamples:\n* 'Comment: This block does something important.'",
517
+
"BUBBLE_LABEL_WARNING": "Label for a warning bubble. Placeholder corresponds to the content of the warning. \n\nParameters:\n* %1 - the content of the warning \n\nExamples:\n* 'Warning: Something went wrong with this block.'",
518
+
"ICON_LABEL_DEFAULT": "Label for an icon, used by screen readers to identify it.",
519
+
"ICON_LABEL_COMMENT_CLOSED": "Label for an icon, used by screen readers to identify a closed comment. Clicking on the icon opens the comment's bubble, which allows the user to read the comment.",
520
+
"ICON_LABEL_COMMENT_OPEN": "Label for an icon, used by screen readers to identify an open comment. Clicking on the icon closes the comment's bubble.",
521
+
"ICON_LABEL_MUTATOR_CLOSED": "Label for an icon, used by screen readers to identify a closed mutator. Clicking on the icon opens the mutator's bubble, which allows the user to edit the block's structure.",
522
+
"ICON_LABEL_MUTATOR_OPEN": "Label for an icon, used by screen readers to identify an open mutator. Clicking on the icon closes the mutator's bubble.",
523
+
"ICON_LABEL_WARNING_CLOSED": "Label for an icon, used by screen readers to identify a closed warning. Clicking on the icon opens the warning's bubble, which allows the user read the warning.",
524
+
"ICON_LABEL_WARNING_OPEN": "Label for an icon, used by screen readers to identify an open warning. Clicking on the icon closes the warning's bubble."
/// Default label for bubbles. This is only used if a bubble is created without a label provider.
2009
2009
Blockly.Msg.BUBBLE_LABEL_DEFAULT='Bubble';
2010
+
/** @type {string} */
2011
+
/// Label for a comment bubble. Placeholder corresponds to the content of the comment.
2012
+
/// \n\nParameters:\n* %1 - the content of the comment
2013
+
/// \n\nExamples:\n* "Comment: This block does something important."
2014
+
Blockly.Msg.BUBBLE_LABEL_COMMENT='Comment: %1';
2015
+
/** @type {string} */
2016
+
/// Label for a warning bubble. Placeholder corresponds to the content of the warning.
2017
+
/// \n\nParameters:\n* %1 - the content of the warning
2018
+
/// \n\nExamples:\n* "Warning: Something went wrong with this block."
2019
+
Blockly.Msg.BUBBLE_LABEL_WARNING='Warning: %1';
2020
+
/** @type {string} */
2021
+
/// Label for an icon, used by screen readers to identify it.
2022
+
Blockly.Msg.ICON_LABEL_DEFAULT='Icon';
2023
+
/** @type {string} */
2024
+
/// Label for an icon, used by screen readers to identify a closed comment. Clicking on the icon opens the comment's bubble, which allows the user to read the comment.
/// Label for an icon, used by screen readers to identify a closed mutator. Clicking on the icon opens the mutator's bubble, which allows the user to edit the block's structure.
2031
+
Blockly.Msg.ICON_LABEL_MUTATOR_CLOSED='Edit this block';
2032
+
/** @type {string} */
2033
+
/// Label for an icon, used by screen readers to identify an open mutator. Clicking on the icon closes the mutator's bubble.
/// Label for an icon, used by screen readers to identify a closed warning. Clicking on the icon opens the warning's bubble, which allows the user read the warning.
0 commit comments