mirror of
https://github.com/google/blockly.git
synced 2026-01-07 17:10:11 +01:00
58 lines
2.0 KiB
JavaScript
58 lines
2.0 KiB
JavaScript
/**
|
|
* @license
|
|
* Visual Blocks Language
|
|
*
|
|
* Copyright 2016 Google Inc.
|
|
* https://developers.google.com/blockly/
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
/**
|
|
* @fileoverview Translatable string constants for Accessible Blockly.
|
|
* @author madeeha@google.com (Madeeha Ghori)
|
|
*/
|
|
'use strict';
|
|
|
|
Blockly.Msg.TOOLBOX = 'Toolbox';
|
|
Blockly.Msg.WORKSPACE = 'Workspace';
|
|
Blockly.Msg.TOOLBOX_BLOCK = 'toolbox block. Move right to view submenu.';
|
|
Blockly.Msg.WORKSPACE_BLOCK = 'workspace block. Move right to view submenu.';
|
|
|
|
Blockly.Msg.CLEAR_WORKSPACE = 'Clear Workspace';
|
|
Blockly.Msg.RUN_CODE = 'Run Code';
|
|
|
|
Blockly.Msg.COPY_TO_MARKED_SPOT = 'Copy to marked spot.';
|
|
Blockly.Msg.COPY_TO_WORKSPACE = 'Create new group with this block.';
|
|
|
|
Blockly.Msg.DELETE = 'Delete.';
|
|
Blockly.Msg.MARK_SPOT_BEFORE = 'Mark spot before.';
|
|
Blockly.Msg.MARK_SPOT_AFTER = 'Mark spot after.';
|
|
Blockly.Msg.MARK_THIS_SPOT = 'Mark this spot.';
|
|
Blockly.Msg.MOVE_TO_MARKED_SPOT = 'Move to marked spot.';
|
|
Blockly.Msg.PASTE = 'Paste.';
|
|
|
|
Blockly.Msg.ANY = 'any';
|
|
Blockly.Msg.BUTTON = 'Button.';
|
|
Blockly.Msg.FOR = 'for';
|
|
Blockly.Msg.STATEMENT = 'statement';
|
|
Blockly.Msg.VALUE = 'value';
|
|
|
|
Blockly.Msg.BLOCK_OPTIONS = 'Block options: ';
|
|
|
|
Blockly.Msg.BLOCK_MOVED_TO_MARKED_SPOT_MSB = 'Block moved to marked spot: ';
|
|
Blockly.Msg.COPIED_BLOCK_MSG = 'copied. ';
|
|
Blockly.Msg.MARKED_SPOT_MSG = 'Marked spot. ';
|
|
Blockly.Msg.PASTED_BLOCK_FROM_CLIPBOARD_MSG = 'pasted. ';
|
|
Blockly.Msg.PASTED_BLOCK_TO_MARKED_SPOT_MSG = 'moved to marked spot. ';
|