messages.js 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. /**
  2. * @license
  3. * Visual Blocks Language
  4. *
  5. * Copyright 2016 Google Inc.
  6. * https://developers.google.com/blockly/
  7. *
  8. * Licensed under the Apache License, Version 2.0 (the "License");
  9. * you may not use this file except in compliance with the License.
  10. * You may obtain a copy of the License at
  11. *
  12. * http://www.apache.org/licenses/LICENSE-2.0
  13. *
  14. * Unless required by applicable law or agreed to in writing, software
  15. * distributed under the License is distributed on an "AS IS" BASIS,
  16. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  17. * See the License for the specific language governing permissions and
  18. * limitations under the License.
  19. */
  20. /**
  21. * @fileoverview Translatable string constants for Accessible Blockly.
  22. * @author madeeha@google.com (Madeeha Ghori)
  23. */
  24. 'use strict';
  25. Blockly.Msg.TOOLBOX = 'Toolbox';
  26. Blockly.Msg.WORKSPACE = 'Workspace';
  27. Blockly.Msg.TOOLBOX_BLOCK = 'toolbox block. Move right to view submenu.';
  28. Blockly.Msg.WORKSPACE_BLOCK = 'workspace block. Move right to view submenu.';
  29. Blockly.Msg.CLEAR_WORKSPACE = 'Erase Workspace';
  30. Blockly.Msg.COPY_TO_CLIPBOARD = 'Copy to clipboard.';
  31. Blockly.Msg.COPY_TO_MARKED_SPOT = 'Attach to link.';
  32. Blockly.Msg.COPY_TO_WORKSPACE = 'Add to workspace.';
  33. Blockly.Msg.COPY_BLOCK = 'Copy block.';
  34. Blockly.Msg.DELETE = 'Delete block.';
  35. Blockly.Msg.MARK_SPOT_BEFORE = 'Add link before.';
  36. Blockly.Msg.MARK_SPOT_AFTER = 'Add link after.';
  37. Blockly.Msg.MARK_THIS_SPOT = 'Add link inside.';
  38. Blockly.Msg.MOVE_TO_MARKED_SPOT = 'Attach to link.';
  39. Blockly.Msg.PASTE_AFTER = 'Paste after.';
  40. Blockly.Msg.PASTE_BEFORE = 'Paste before.';
  41. Blockly.Msg.PASTE_INSIDE = 'Paste inside.';
  42. Blockly.Msg.ANY = 'any';
  43. Blockly.Msg.BLOCK = 'block';
  44. Blockly.Msg.BUTTON = 'Button.';
  45. Blockly.Msg.FOR = 'for';
  46. Blockly.Msg.VALUE = 'value';
  47. Blockly.Msg.BLOCK_OPTIONS = 'Block options: ';
  48. Blockly.Msg.BLOCK_MOVED_TO_MARKED_SPOT_MSB = 'Block moved to marked spot: ';
  49. Blockly.Msg.COPIED_BLOCK_MSG = 'copied. ';
  50. Blockly.Msg.MARKED_SPOT_MSG = 'Marked spot. ';
  51. Blockly.Msg.PASTED_BLOCK_FROM_CLIPBOARD_MSG = 'pasted. ';
  52. Blockly.Msg.PASTED_BLOCK_TO_MARKED_SPOT_MSG = 'moved to marked spot. ';