Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions packages/blockly/msg/json/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -638,6 +638,10 @@
"ARIA_TYPE_FIELD_GRID": "grid dropdown",
"FIELD_BITMAP_BUTTON_LABEL_RANDOMIZE": "Randomize",
"FIELD_BITMAP_BUTTON_LABEL_CLEAR": "Clear",
"FIELD_BITMAP_PIXEL_ON": "on",
"FIELD_BITMAP_PIXEL_OFF": "off",
"FIELD_BITMAP_PIXEL_LABEL": "%1, row %2, column %3",
"FIELD_BITMAP_ARIA_VALUE": "%1 by %2, %3 pixels on",
"OPEN_BACKPACK": "Open backpack",
"CLOSE_BACKPACK": "Close backpack",
"COPY_ALL_TO_BACKPACK": "Copy All Blocks to Backpack",
Expand Down
4 changes: 4 additions & 0 deletions packages/blockly/msg/json/qqq.json
Original file line number Diff line number Diff line change
Expand Up @@ -643,6 +643,10 @@
"ARIA_TYPE_FIELD_GRID": "ARIA type name for the grid field.",
"FIELD_BITMAP_BUTTON_LABEL_RANDOMIZE": "Label for the 'Randomize' button in the bitmap field editor.",
"FIELD_BITMAP_BUTTON_LABEL_CLEAR": "Label for the 'Clear' button in the bitmap field editor.",
"FIELD_BITMAP_PIXEL_ON": "Word used in bitmap pixel ARIA labels when a pixel is filled/on.",
"FIELD_BITMAP_PIXEL_OFF": "Word used in bitmap pixel ARIA labels when a pixel is empty/off.",
"FIELD_BITMAP_PIXEL_LABEL": "ARIA label for a single pixel in the bitmap field editor. \n\nParameters:\n* %1 - on/off state\n* %2 - 1-based row index\n* %3 - 1-based column index",
"FIELD_BITMAP_ARIA_VALUE": "ARIA value summarising the bitmap field contents. \n\nParameters:\n* %1 - width in pixels\n* %2 - height in pixels\n* %3 - number of filled pixels",
"OPEN_BACKPACK": "ARIA label for the button that opens the backpack flyout.",
"CLOSE_BACKPACK": "ARIA label for the button that closes the backpack flyout.",
"COPY_ALL_TO_BACKPACK": "Context menu item to copy all blocks on the workspace to the backpack.",
Expand Down
14 changes: 14 additions & 0 deletions packages/blockly/msg/messages.js
Original file line number Diff line number Diff line change
Expand Up @@ -2427,6 +2427,20 @@ Blockly.Msg.FIELD_BITMAP_BUTTON_LABEL_RANDOMIZE = 'Randomize';
/// Label for the 'Clear' button in the bitmap field editor.
Blockly.Msg.FIELD_BITMAP_BUTTON_LABEL_CLEAR = 'Clear';
/** @type {string} */
/// Word used in bitmap pixel ARIA labels when a pixel is filled/on.
Blockly.Msg.FIELD_BITMAP_PIXEL_ON = 'on';
/** @type {string} */
/// Word used in bitmap pixel ARIA labels when a pixel is empty/off.
Blockly.Msg.FIELD_BITMAP_PIXEL_OFF = 'off';
/** @type {string} */
/// ARIA label for a single pixel in the bitmap field editor.
/// \n\nParameters:\n* %1 - on/off state\n* %2 - 1-based row index\n* %3 - 1-based column index
Blockly.Msg.FIELD_BITMAP_PIXEL_LABEL = '%1, row %2, column %3';
/** @type {string} */
/// ARIA value summarising the bitmap field contents.
/// \n\nParameters:\n* %1 - width in pixels\n* %2 - height in pixels\n* %3 - number of filled pixels
Blockly.Msg.FIELD_BITMAP_ARIA_VALUE = '%1 by %2, %3 pixels on';
/** @type {string} */
/// ARIA label for the button that opens the backpack flyout.
Blockly.Msg.OPEN_BACKPACK = 'Open backpack';
/** @type {string} */
Expand Down
Loading