blockly 12.5.1 → 13.0.0-beta.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/blockly.min.js +645 -533
- package/blockly.mjs +13 -5
- package/blockly_compressed.js +610 -507
- package/blockly_compressed.js.map +1 -1
- package/blocks_compressed.js +16 -16
- package/blocks_compressed.js.map +1 -1
- package/core/block.d.ts +1 -1
- package/core/block_svg.d.ts +39 -16
- package/core/blockly.d.ts +21 -16
- package/core/bubbles/bubble.d.ts +17 -2
- package/core/bubbles/mini_workspace_bubble.d.ts +5 -0
- package/core/bubbles/textinput_bubble.d.ts +5 -0
- package/core/comments/comment_editor.d.ts +2 -2
- package/core/comments/rendered_workspace_comment.d.ts +6 -1
- package/core/common.d.ts +1 -1
- package/core/css.d.ts +2 -1
- package/core/dragging/block_drag_strategy.d.ts +84 -14
- package/core/dragging/bubble_drag_strategy.d.ts +5 -4
- package/core/dragging/comment_drag_strategy.d.ts +4 -4
- package/core/dragging/dragger.d.ts +13 -14
- package/core/events/events_block_create.d.ts +0 -3
- package/core/events/events_block_delete.d.ts +0 -3
- package/core/events/events_comment_create.d.ts +0 -3
- package/core/events/events_comment_delete.d.ts +0 -3
- package/core/field.d.ts +69 -0
- package/core/flyout_base.d.ts +1 -125
- package/core/flyout_button.d.ts +9 -0
- package/core/flyout_horizontal.d.ts +0 -11
- package/core/flyout_vertical.d.ts +0 -11
- package/core/gesture.d.ts +0 -12
- package/core/hints.d.ts +44 -0
- package/core/icons/icon.d.ts +6 -0
- package/core/inputs/input.d.ts +7 -1
- package/core/interfaces/i_bounded_element.d.ts +7 -0
- package/core/interfaces/i_bubble.d.ts +3 -2
- package/core/interfaces/i_collapsible_toolbox_item.d.ts +5 -1
- package/core/interfaces/i_draggable.d.ts +22 -17
- package/core/interfaces/i_dragger.d.ts +19 -10
- package/core/interfaces/i_flyout.d.ts +1 -31
- package/core/interfaces/i_focusable_node.d.ts +6 -0
- package/core/interfaces/i_focusable_tree.d.ts +8 -0
- package/core/interfaces/i_json_block_definition.d.ts +102 -0
- package/core/interfaces/i_navigation_policy.d.ts +12 -0
- package/core/interfaces/i_selectable.d.ts +2 -2
- package/core/interfaces/i_selectable_toolbox_item.d.ts +3 -3
- package/core/interfaces/i_toolbox.d.ts +4 -0
- package/core/interfaces/i_toolbox_item.d.ts +6 -0
- package/core/keyboard_nav/keyboard_mover.d.ts +138 -0
- package/core/keyboard_nav/move_indicator.d.ts +35 -0
- package/core/keyboard_nav/{block_comment_navigation_policy.d.ts → navigation_policies/block_comment_navigation_policy.d.ts} +10 -3
- package/core/keyboard_nav/{block_navigation_policy.d.ts → navigation_policies/block_navigation_policy.d.ts} +17 -25
- package/core/keyboard_nav/{comment_bar_button_navigation_policy.d.ts → navigation_policies/comment_bar_button_navigation_policy.d.ts} +10 -3
- package/core/keyboard_nav/{comment_editor_navigation_policy.d.ts → navigation_policies/comment_editor_navigation_policy.d.ts} +10 -3
- package/core/keyboard_nav/{connection_navigation_policy.d.ts → navigation_policies/connection_navigation_policy.d.ts} +11 -16
- package/core/keyboard_nav/{field_navigation_policy.d.ts → navigation_policies/field_navigation_policy.d.ts} +10 -3
- package/core/keyboard_nav/{flyout_button_navigation_policy.d.ts → navigation_policies/flyout_button_navigation_policy.d.ts} +10 -3
- package/core/keyboard_nav/{flyout_separator_navigation_policy.d.ts → navigation_policies/flyout_separator_navigation_policy.d.ts} +9 -3
- package/core/keyboard_nav/{icon_navigation_policy.d.ts → navigation_policies/icon_navigation_policy.d.ts} +10 -3
- package/core/keyboard_nav/navigation_policies/toolbox_item_navigation_policy.d.ts +64 -0
- package/core/keyboard_nav/{workspace_comment_navigation_policy.d.ts → navigation_policies/workspace_comment_navigation_policy.d.ts} +14 -9
- package/core/keyboard_nav/{workspace_navigation_policy.d.ts → navigation_policies/workspace_navigation_policy.d.ts} +10 -3
- package/core/keyboard_nav/navigators/flyout_navigator.d.ts +63 -0
- package/core/keyboard_nav/navigators/navigator.d.ts +225 -0
- package/core/keyboard_nav/navigators/toolbox_navigator.d.ts +70 -0
- package/core/registry.d.ts +0 -2
- package/core/renderers/common/constants.d.ts +4 -7
- package/core/renderers/common/i_path_object.d.ts +8 -0
- package/core/renderers/common/path_object.d.ts +5 -14
- package/core/renderers/common/renderer.d.ts +3 -3
- package/core/renderers/zelos/constants.d.ts +1 -14
- package/core/renderers/zelos/measurables/bottom_row.d.ts +1 -1
- package/core/renderers/zelos/measurables/top_row.d.ts +1 -1
- package/core/renderers/zelos/path_object.d.ts +0 -3
- package/core/renderers/zelos/renderer.d.ts +8 -0
- package/core/shortcut_items.d.ts +63 -1
- package/core/theme.d.ts +0 -2
- package/core/toast.d.ts +2 -11
- package/core/toolbox/category.d.ts +5 -0
- package/core/toolbox/separator.d.ts +4 -0
- package/core/toolbox/toolbox.d.ts +12 -22
- package/core/toolbox/toolbox_item.d.ts +4 -0
- package/core/utils/aria.d.ts +292 -23
- package/core/utils/shortcut_formatting.d.ts +24 -0
- package/core/utils/useragent.d.ts +1 -0
- package/core/workspace_audio.d.ts +23 -0
- package/core/workspace_svg.d.ts +8 -50
- package/dart_compressed.js +9 -9
- package/dart_compressed.js.map +1 -1
- package/index.mjs +13 -5
- package/javascript_compressed.js +11 -10
- package/javascript_compressed.js.map +1 -1
- package/lua_compressed.js +7 -7
- package/lua_compressed.js.map +1 -1
- package/msg/ab.js +8 -0
- package/msg/ab.mjs +8 -0
- package/msg/ace.js +8 -0
- package/msg/ace.mjs +8 -0
- package/msg/af.js +8 -0
- package/msg/af.mjs +8 -0
- package/msg/am.js +8 -0
- package/msg/am.mjs +8 -0
- package/msg/ar.js +8 -0
- package/msg/ar.mjs +8 -0
- package/msg/ast.js +8 -0
- package/msg/ast.mjs +8 -0
- package/msg/az.js +8 -0
- package/msg/az.mjs +8 -0
- package/msg/ba.js +8 -0
- package/msg/ba.mjs +8 -0
- package/msg/bcc.js +8 -0
- package/msg/bcc.mjs +8 -0
- package/msg/be-tarask.js +8 -0
- package/msg/be-tarask.mjs +8 -0
- package/msg/be.js +8 -0
- package/msg/be.mjs +8 -0
- package/msg/bg.js +8 -0
- package/msg/bg.mjs +8 -0
- package/msg/bn.js +8 -0
- package/msg/bn.mjs +8 -0
- package/msg/br.js +8 -0
- package/msg/br.mjs +8 -0
- package/msg/bs.js +8 -0
- package/msg/bs.mjs +8 -0
- package/msg/ca.js +8 -0
- package/msg/ca.mjs +8 -0
- package/msg/cdo.js +8 -0
- package/msg/cdo.mjs +8 -0
- package/msg/ce.js +8 -0
- package/msg/ce.mjs +8 -0
- package/msg/cs.js +8 -0
- package/msg/cs.mjs +8 -0
- package/msg/da.js +8 -0
- package/msg/da.mjs +8 -0
- package/msg/de.js +8 -0
- package/msg/de.mjs +8 -0
- package/msg/diq.js +8 -0
- package/msg/diq.mjs +8 -0
- package/msg/dtp.js +8 -0
- package/msg/dtp.mjs +8 -0
- package/msg/dty.js +8 -0
- package/msg/dty.mjs +8 -0
- package/msg/ee.js +8 -0
- package/msg/ee.mjs +8 -0
- package/msg/el.js +8 -0
- package/msg/el.mjs +8 -0
- package/msg/en-gb.js +8 -0
- package/msg/en-gb.mjs +8 -0
- package/msg/en.js +8 -0
- package/msg/en.mjs +8 -0
- package/msg/eo.js +8 -0
- package/msg/eo.mjs +8 -0
- package/msg/es.js +8 -0
- package/msg/es.mjs +8 -0
- package/msg/et.js +8 -0
- package/msg/et.mjs +8 -0
- package/msg/eu.js +8 -0
- package/msg/eu.mjs +8 -0
- package/msg/fa.js +8 -0
- package/msg/fa.mjs +8 -0
- package/msg/fi.js +8 -0
- package/msg/fi.mjs +8 -0
- package/msg/fo.js +8 -0
- package/msg/fo.mjs +8 -0
- package/msg/fr.js +8 -0
- package/msg/fr.mjs +8 -0
- package/msg/frr.js +8 -0
- package/msg/frr.mjs +8 -0
- package/msg/gl.js +8 -0
- package/msg/gl.mjs +8 -0
- package/msg/gn.js +8 -0
- package/msg/gn.mjs +8 -0
- package/msg/gor.js +8 -0
- package/msg/gor.mjs +8 -0
- package/msg/ha.js +8 -0
- package/msg/ha.mjs +8 -0
- package/msg/hak.js +8 -0
- package/msg/hak.mjs +8 -0
- package/msg/he.js +8 -0
- package/msg/he.mjs +8 -0
- package/msg/hi.js +8 -0
- package/msg/hi.mjs +8 -0
- package/msg/hr.js +8 -0
- package/msg/hr.mjs +8 -0
- package/msg/hrx.js +8 -0
- package/msg/hrx.mjs +8 -0
- package/msg/hsb.js +8 -0
- package/msg/hsb.mjs +8 -0
- package/msg/hu.js +8 -0
- package/msg/hu.mjs +8 -0
- package/msg/hy.js +8 -0
- package/msg/hy.mjs +8 -0
- package/msg/ia.js +8 -0
- package/msg/ia.mjs +8 -0
- package/msg/id.js +8 -0
- package/msg/id.mjs +8 -0
- package/msg/ig.js +8 -0
- package/msg/ig.mjs +8 -0
- package/msg/inh.js +8 -0
- package/msg/inh.mjs +8 -0
- package/msg/is.js +8 -0
- package/msg/is.mjs +8 -0
- package/msg/it.js +8 -0
- package/msg/it.mjs +8 -0
- package/msg/ja.js +8 -0
- package/msg/ja.mjs +8 -0
- package/msg/ka.js +8 -0
- package/msg/ka.mjs +8 -0
- package/msg/kab.js +8 -0
- package/msg/kab.mjs +8 -0
- package/msg/kbd-cyrl.js +8 -0
- package/msg/kbd-cyrl.mjs +8 -0
- package/msg/km.js +8 -0
- package/msg/km.mjs +8 -0
- package/msg/kn.js +8 -0
- package/msg/kn.mjs +8 -0
- package/msg/ko.js +8 -0
- package/msg/ko.mjs +8 -0
- package/msg/ksh.js +8 -0
- package/msg/ksh.mjs +8 -0
- package/msg/ku-latn.js +8 -0
- package/msg/ku-latn.mjs +8 -0
- package/msg/ky.js +8 -0
- package/msg/ky.mjs +8 -0
- package/msg/la.js +8 -0
- package/msg/la.mjs +8 -0
- package/msg/lb.js +8 -0
- package/msg/lb.mjs +8 -0
- package/msg/lki.js +8 -0
- package/msg/lki.mjs +8 -0
- package/msg/lo.js +8 -0
- package/msg/lo.mjs +8 -0
- package/msg/lrc.js +8 -0
- package/msg/lrc.mjs +8 -0
- package/msg/lt.js +8 -0
- package/msg/lt.mjs +8 -0
- package/msg/lv.js +8 -0
- package/msg/lv.mjs +8 -0
- package/msg/mg.js +8 -0
- package/msg/mg.mjs +8 -0
- package/msg/mk.js +8 -0
- package/msg/mk.mjs +8 -0
- package/msg/ml.js +8 -0
- package/msg/ml.mjs +8 -0
- package/msg/mnw.js +8 -0
- package/msg/mnw.mjs +8 -0
- package/msg/ms.js +8 -0
- package/msg/ms.mjs +8 -0
- package/msg/my.js +8 -0
- package/msg/my.mjs +8 -0
- package/msg/mzn.js +8 -0
- package/msg/mzn.mjs +8 -0
- package/msg/nb.js +8 -0
- package/msg/nb.mjs +8 -0
- package/msg/ne.js +8 -0
- package/msg/ne.mjs +8 -0
- package/msg/nl.js +8 -0
- package/msg/nl.mjs +8 -0
- package/msg/oc.js +8 -0
- package/msg/oc.mjs +8 -0
- package/msg/olo.js +8 -0
- package/msg/olo.mjs +8 -0
- package/msg/pa.js +8 -0
- package/msg/pa.mjs +8 -0
- package/msg/pl.js +8 -0
- package/msg/pl.mjs +8 -0
- package/msg/pms.js +8 -0
- package/msg/pms.mjs +8 -0
- package/msg/ps.js +8 -0
- package/msg/ps.mjs +8 -0
- package/msg/pt-br.js +8 -0
- package/msg/pt-br.mjs +8 -0
- package/msg/pt.js +8 -0
- package/msg/pt.mjs +8 -0
- package/msg/ro.js +8 -0
- package/msg/ro.mjs +8 -0
- package/msg/ru.js +8 -0
- package/msg/ru.mjs +8 -0
- package/msg/sc.js +8 -0
- package/msg/sc.mjs +8 -0
- package/msg/sco.js +8 -0
- package/msg/sco.mjs +8 -0
- package/msg/sd.js +8 -0
- package/msg/sd.mjs +8 -0
- package/msg/shn.js +8 -0
- package/msg/shn.mjs +8 -0
- package/msg/si.js +8 -0
- package/msg/si.mjs +8 -0
- package/msg/sk.js +8 -0
- package/msg/sk.mjs +8 -0
- package/msg/skr-arab.js +8 -0
- package/msg/skr-arab.mjs +8 -0
- package/msg/sl.js +8 -0
- package/msg/sl.mjs +8 -0
- package/msg/smn.js +8 -0
- package/msg/smn.mjs +8 -0
- package/msg/sq.js +8 -0
- package/msg/sq.mjs +8 -0
- package/msg/sr-latn.js +8 -0
- package/msg/sr-latn.mjs +8 -0
- package/msg/sr.js +8 -0
- package/msg/sr.mjs +8 -0
- package/msg/sv.js +8 -0
- package/msg/sv.mjs +8 -0
- package/msg/sw.js +8 -0
- package/msg/sw.mjs +8 -0
- package/msg/ta.js +8 -0
- package/msg/ta.mjs +8 -0
- package/msg/tcy.js +8 -0
- package/msg/tcy.mjs +8 -0
- package/msg/tdd.js +8 -0
- package/msg/tdd.mjs +8 -0
- package/msg/te.js +8 -0
- package/msg/te.mjs +8 -0
- package/msg/th.js +8 -0
- package/msg/th.mjs +8 -0
- package/msg/ti.js +8 -0
- package/msg/ti.mjs +8 -0
- package/msg/tl.js +8 -0
- package/msg/tl.mjs +8 -0
- package/msg/tlh.js +8 -0
- package/msg/tlh.mjs +8 -0
- package/msg/tr.js +8 -0
- package/msg/tr.mjs +8 -0
- package/msg/ug-arab.js +8 -0
- package/msg/ug-arab.mjs +8 -0
- package/msg/uk.js +8 -0
- package/msg/uk.mjs +8 -0
- package/msg/ur.js +8 -0
- package/msg/ur.mjs +8 -0
- package/msg/uz.js +8 -0
- package/msg/uz.mjs +8 -0
- package/msg/vi.js +8 -0
- package/msg/vi.mjs +8 -0
- package/msg/xmf.js +8 -0
- package/msg/xmf.mjs +8 -0
- package/msg/yo.js +8 -0
- package/msg/yo.mjs +8 -0
- package/msg/zgh.js +8 -0
- package/msg/zgh.mjs +8 -0
- package/msg/zh-hans.js +8 -0
- package/msg/zh-hans.mjs +8 -0
- package/msg/zh-hant.js +8 -0
- package/msg/zh-hant.mjs +8 -0
- package/package.json +11 -11
- package/php_compressed.js +2 -2
- package/php_compressed.js.map +1 -1
- package/python_compressed.js +2 -2
- package/python_compressed.js.map +1 -1
- package/core/flyout_navigator.d.ts +0 -11
- package/core/keyboard_nav/flyout_navigation_policy.d.ts +0 -65
- package/core/keyboard_nav/line_cursor.d.ts +0 -187
- package/core/keyboard_nav/marker.d.ts +0 -53
- package/core/marker_manager.d.ts +0 -72
- package/core/navigator.d.ts +0 -65
- package/media/sprites.png +0 -0
package/msg/pt-br.js
CHANGED
|
@@ -92,16 +92,19 @@ Blockly.Msg["DUPLICATE_BLOCK"] = "Duplicar";
|
|
|
92
92
|
Blockly.Msg["DUPLICATE_COMMENT"] = "Duplicar comentário";
|
|
93
93
|
Blockly.Msg["EDIT_BLOCK_CONTENTS"] = "Edit Block contents"; // untranslated
|
|
94
94
|
Blockly.Msg["ENABLE_BLOCK"] = "Habilitar bloco";
|
|
95
|
+
Blockly.Msg["ENTER_KEY"] = "Enter"; // untranslated
|
|
95
96
|
Blockly.Msg["EXPAND_ALL"] = "Expandir blocos";
|
|
96
97
|
Blockly.Msg["EXPAND_BLOCK"] = "Expandir bloco";
|
|
97
98
|
Blockly.Msg["EXTERNAL_INPUTS"] = "Entradas externas";
|
|
98
99
|
Blockly.Msg["HELP"] = "Ajuda";
|
|
99
100
|
Blockly.Msg["HELP_PROMPT"] = "Press %1 for help on keyboard controls"; // untranslated
|
|
100
101
|
Blockly.Msg["INLINE_INPUTS"] = "Entradas incorporadas";
|
|
102
|
+
Blockly.Msg["KEYBOARD_NAV_BLOCK_NAVIGATION_HINT"] = "Use the right arrow key to navigate inside of blocks"; // untranslated
|
|
101
103
|
Blockly.Msg["KEYBOARD_NAV_CONSTRAINED_MOVE_HINT"] = "Use the arrow keys to move, then %1 to accept the position"; // untranslated
|
|
102
104
|
Blockly.Msg["KEYBOARD_NAV_COPIED_HINT"] = "Copied. Press %1 to paste."; // untranslated
|
|
103
105
|
Blockly.Msg["KEYBOARD_NAV_CUT_HINT"] = "Cut. Press %1 to paste."; // untranslated
|
|
104
106
|
Blockly.Msg["KEYBOARD_NAV_UNCONSTRAINED_MOVE_HINT"] = "Hold %1 and use arrow keys to move freely, then %2 to accept the position"; // untranslated
|
|
107
|
+
Blockly.Msg["KEYBOARD_NAV_WORKSPACE_NAVIGATION_HINT"] = "Use the arrow keys to navigate"; // untranslated
|
|
105
108
|
Blockly.Msg["LINUX"] = "Linux"; // untranslated
|
|
106
109
|
Blockly.Msg["LISTS_CREATE_EMPTY_HELPURL"] = "https://github.com/RaspberryPiFoundation/blockly/wiki/Lists#create-empty-list"; // untranslated
|
|
107
110
|
Blockly.Msg["LISTS_CREATE_EMPTY_TITLE"] = "criar lista vazia";
|
|
@@ -432,6 +435,11 @@ Blockly.Msg["VARIABLE_ALREADY_EXISTS_FOR_A_PARAMETER"] = "Já existe uma variáv
|
|
|
432
435
|
Blockly.Msg["WINDOWS"] = "Windows"; // untranslated
|
|
433
436
|
Blockly.Msg["WORKSPACE_ARIA_LABEL"] = "Espaço de trabalho do Blockly";
|
|
434
437
|
Blockly.Msg["WORKSPACE_COMMENT_DEFAULT_TEXT"] = "Diz algo...";
|
|
438
|
+
Blockly.Msg["WORKSPACE_CONTENTS_BLOCKS_MANY"] = "%1 stacks of blocks%2 in workspace."; // untranslated
|
|
439
|
+
Blockly.Msg["WORKSPACE_CONTENTS_BLOCKS_ONE"] = "One stack of blocks%2 in workspace."; // untranslated
|
|
440
|
+
Blockly.Msg["WORKSPACE_CONTENTS_BLOCKS_ZERO"] = "No blocks%2 in workspace."; // untranslated
|
|
441
|
+
Blockly.Msg["WORKSPACE_CONTENTS_COMMENTS_MANY"] = " and %1 comments"; // untranslated
|
|
442
|
+
Blockly.Msg["WORKSPACE_CONTENTS_COMMENTS_ONE"] = " and one comment"; // untranslated
|
|
435
443
|
Blockly.Msg["CONTROLS_FOREACH_INPUT_DO"] = Blockly.Msg["CONTROLS_REPEAT_INPUT_DO"];
|
|
436
444
|
Blockly.Msg["CONTROLS_FOR_INPUT_DO"] = Blockly.Msg["CONTROLS_REPEAT_INPUT_DO"];
|
|
437
445
|
Blockly.Msg["CONTROLS_IF_ELSEIF_TITLE_ELSEIF"] = Blockly.Msg["CONTROLS_IF_MSG_ELSEIF"];
|
package/msg/pt-br.mjs
CHANGED
|
@@ -432,6 +432,7 @@ export const {
|
|
|
432
432
|
COMMAND_KEY,
|
|
433
433
|
OPTION_KEY,
|
|
434
434
|
ALT_KEY,
|
|
435
|
+
ENTER_KEY,
|
|
435
436
|
CUT_SHORTCUT,
|
|
436
437
|
COPY_SHORTCUT,
|
|
437
438
|
PASTE_SHORTCUT,
|
|
@@ -443,4 +444,11 @@ export const {
|
|
|
443
444
|
KEYBOARD_NAV_CONSTRAINED_MOVE_HINT,
|
|
444
445
|
KEYBOARD_NAV_COPIED_HINT,
|
|
445
446
|
KEYBOARD_NAV_CUT_HINT,
|
|
447
|
+
WORKSPACE_CONTENTS_BLOCKS_MANY,
|
|
448
|
+
WORKSPACE_CONTENTS_BLOCKS_ONE,
|
|
449
|
+
WORKSPACE_CONTENTS_BLOCKS_ZERO,
|
|
450
|
+
WORKSPACE_CONTENTS_COMMENTS_MANY,
|
|
451
|
+
WORKSPACE_CONTENTS_COMMENTS_ONE,
|
|
452
|
+
KEYBOARD_NAV_BLOCK_NAVIGATION_HINT,
|
|
453
|
+
KEYBOARD_NAV_WORKSPACE_NAVIGATION_HINT,
|
|
446
454
|
} = pt_br;
|
package/msg/pt.js
CHANGED
|
@@ -92,16 +92,19 @@ Blockly.Msg["DUPLICATE_BLOCK"] = "Duplicar";
|
|
|
92
92
|
Blockly.Msg["DUPLICATE_COMMENT"] = "Duplicar comentário";
|
|
93
93
|
Blockly.Msg["EDIT_BLOCK_CONTENTS"] = "Edit Block contents"; // untranslated
|
|
94
94
|
Blockly.Msg["ENABLE_BLOCK"] = "Ativar Bloco";
|
|
95
|
+
Blockly.Msg["ENTER_KEY"] = "Enter"; // untranslated
|
|
95
96
|
Blockly.Msg["EXPAND_ALL"] = "Expandir Blocos";
|
|
96
97
|
Blockly.Msg["EXPAND_BLOCK"] = "Expandir Bloco";
|
|
97
98
|
Blockly.Msg["EXTERNAL_INPUTS"] = "Entradas Externas";
|
|
98
99
|
Blockly.Msg["HELP"] = "Ajuda";
|
|
99
100
|
Blockly.Msg["HELP_PROMPT"] = "Press %1 for help on keyboard controls"; // untranslated
|
|
100
101
|
Blockly.Msg["INLINE_INPUTS"] = "Entradas Em Linhas";
|
|
102
|
+
Blockly.Msg["KEYBOARD_NAV_BLOCK_NAVIGATION_HINT"] = "Use the right arrow key to navigate inside of blocks"; // untranslated
|
|
101
103
|
Blockly.Msg["KEYBOARD_NAV_CONSTRAINED_MOVE_HINT"] = "Use the arrow keys to move, then %1 to accept the position"; // untranslated
|
|
102
104
|
Blockly.Msg["KEYBOARD_NAV_COPIED_HINT"] = "Copied. Press %1 to paste."; // untranslated
|
|
103
105
|
Blockly.Msg["KEYBOARD_NAV_CUT_HINT"] = "Cut. Press %1 to paste."; // untranslated
|
|
104
106
|
Blockly.Msg["KEYBOARD_NAV_UNCONSTRAINED_MOVE_HINT"] = "Hold %1 and use arrow keys to move freely, then %2 to accept the position"; // untranslated
|
|
107
|
+
Blockly.Msg["KEYBOARD_NAV_WORKSPACE_NAVIGATION_HINT"] = "Use the arrow keys to navigate"; // untranslated
|
|
105
108
|
Blockly.Msg["LINUX"] = "Linux"; // untranslated
|
|
106
109
|
Blockly.Msg["LISTS_CREATE_EMPTY_HELPURL"] = "https://github.com/RaspberryPiFoundation/blockly/wiki/Lists#create-empty-list"; // untranslated
|
|
107
110
|
Blockly.Msg["LISTS_CREATE_EMPTY_TITLE"] = "criar lista vazia";
|
|
@@ -432,6 +435,11 @@ Blockly.Msg["VARIABLE_ALREADY_EXISTS_FOR_A_PARAMETER"] = "Já existe uma variáv
|
|
|
432
435
|
Blockly.Msg["WINDOWS"] = "Windows"; // untranslated
|
|
433
436
|
Blockly.Msg["WORKSPACE_ARIA_LABEL"] = "Espaço de trabalho de Blockly";
|
|
434
437
|
Blockly.Msg["WORKSPACE_COMMENT_DEFAULT_TEXT"] = "Diz algo...";
|
|
438
|
+
Blockly.Msg["WORKSPACE_CONTENTS_BLOCKS_MANY"] = "%1 stacks of blocks%2 in workspace."; // untranslated
|
|
439
|
+
Blockly.Msg["WORKSPACE_CONTENTS_BLOCKS_ONE"] = "One stack of blocks%2 in workspace."; // untranslated
|
|
440
|
+
Blockly.Msg["WORKSPACE_CONTENTS_BLOCKS_ZERO"] = "No blocks%2 in workspace."; // untranslated
|
|
441
|
+
Blockly.Msg["WORKSPACE_CONTENTS_COMMENTS_MANY"] = " and %1 comments"; // untranslated
|
|
442
|
+
Blockly.Msg["WORKSPACE_CONTENTS_COMMENTS_ONE"] = " and one comment"; // untranslated
|
|
435
443
|
Blockly.Msg["CONTROLS_FOREACH_INPUT_DO"] = Blockly.Msg["CONTROLS_REPEAT_INPUT_DO"];
|
|
436
444
|
Blockly.Msg["CONTROLS_FOR_INPUT_DO"] = Blockly.Msg["CONTROLS_REPEAT_INPUT_DO"];
|
|
437
445
|
Blockly.Msg["CONTROLS_IF_ELSEIF_TITLE_ELSEIF"] = Blockly.Msg["CONTROLS_IF_MSG_ELSEIF"];
|
package/msg/pt.mjs
CHANGED
|
@@ -432,6 +432,7 @@ export const {
|
|
|
432
432
|
COMMAND_KEY,
|
|
433
433
|
OPTION_KEY,
|
|
434
434
|
ALT_KEY,
|
|
435
|
+
ENTER_KEY,
|
|
435
436
|
CUT_SHORTCUT,
|
|
436
437
|
COPY_SHORTCUT,
|
|
437
438
|
PASTE_SHORTCUT,
|
|
@@ -443,4 +444,11 @@ export const {
|
|
|
443
444
|
KEYBOARD_NAV_CONSTRAINED_MOVE_HINT,
|
|
444
445
|
KEYBOARD_NAV_COPIED_HINT,
|
|
445
446
|
KEYBOARD_NAV_CUT_HINT,
|
|
447
|
+
WORKSPACE_CONTENTS_BLOCKS_MANY,
|
|
448
|
+
WORKSPACE_CONTENTS_BLOCKS_ONE,
|
|
449
|
+
WORKSPACE_CONTENTS_BLOCKS_ZERO,
|
|
450
|
+
WORKSPACE_CONTENTS_COMMENTS_MANY,
|
|
451
|
+
WORKSPACE_CONTENTS_COMMENTS_ONE,
|
|
452
|
+
KEYBOARD_NAV_BLOCK_NAVIGATION_HINT,
|
|
453
|
+
KEYBOARD_NAV_WORKSPACE_NAVIGATION_HINT,
|
|
446
454
|
} = pt;
|
package/msg/ro.js
CHANGED
|
@@ -92,16 +92,19 @@ Blockly.Msg["DUPLICATE_BLOCK"] = "Duplicate";
|
|
|
92
92
|
Blockly.Msg["DUPLICATE_COMMENT"] = "Coment duplicat";
|
|
93
93
|
Blockly.Msg["EDIT_BLOCK_CONTENTS"] = "Edit Block contents"; // untranslated
|
|
94
94
|
Blockly.Msg["ENABLE_BLOCK"] = "Permite bloc";
|
|
95
|
+
Blockly.Msg["ENTER_KEY"] = "Enter"; // untranslated
|
|
95
96
|
Blockly.Msg["EXPAND_ALL"] = "Extinde blocuri";
|
|
96
97
|
Blockly.Msg["EXPAND_BLOCK"] = "Extinde bloc";
|
|
97
98
|
Blockly.Msg["EXTERNAL_INPUTS"] = "Intrări externe";
|
|
98
99
|
Blockly.Msg["HELP"] = "Ajutor";
|
|
99
100
|
Blockly.Msg["HELP_PROMPT"] = "Press %1 for help on keyboard controls"; // untranslated
|
|
100
101
|
Blockly.Msg["INLINE_INPUTS"] = "Intrări în linie";
|
|
102
|
+
Blockly.Msg["KEYBOARD_NAV_BLOCK_NAVIGATION_HINT"] = "Use the right arrow key to navigate inside of blocks"; // untranslated
|
|
101
103
|
Blockly.Msg["KEYBOARD_NAV_CONSTRAINED_MOVE_HINT"] = "Use the arrow keys to move, then %1 to accept the position"; // untranslated
|
|
102
104
|
Blockly.Msg["KEYBOARD_NAV_COPIED_HINT"] = "Copied. Press %1 to paste."; // untranslated
|
|
103
105
|
Blockly.Msg["KEYBOARD_NAV_CUT_HINT"] = "Cut. Press %1 to paste."; // untranslated
|
|
104
106
|
Blockly.Msg["KEYBOARD_NAV_UNCONSTRAINED_MOVE_HINT"] = "Hold %1 and use arrow keys to move freely, then %2 to accept the position"; // untranslated
|
|
107
|
+
Blockly.Msg["KEYBOARD_NAV_WORKSPACE_NAVIGATION_HINT"] = "Use the arrow keys to navigate"; // untranslated
|
|
105
108
|
Blockly.Msg["LINUX"] = "Linux"; // untranslated
|
|
106
109
|
Blockly.Msg["LISTS_CREATE_EMPTY_HELPURL"] = "https://github.com/RaspberryPiFoundation/blockly/wiki/Lists#create-empty-list"; // untranslated
|
|
107
110
|
Blockly.Msg["LISTS_CREATE_EMPTY_TITLE"] = "creează listă goală";
|
|
@@ -432,6 +435,11 @@ Blockly.Msg["VARIABLE_ALREADY_EXISTS_FOR_A_PARAMETER"] = "A variable named '%1'
|
|
|
432
435
|
Blockly.Msg["WINDOWS"] = "Windows"; // untranslated
|
|
433
436
|
Blockly.Msg["WORKSPACE_ARIA_LABEL"] = "Blockly Workspace"; // untranslated
|
|
434
437
|
Blockly.Msg["WORKSPACE_COMMENT_DEFAULT_TEXT"] = "Spune ceva...";
|
|
438
|
+
Blockly.Msg["WORKSPACE_CONTENTS_BLOCKS_MANY"] = "%1 stacks of blocks%2 in workspace."; // untranslated
|
|
439
|
+
Blockly.Msg["WORKSPACE_CONTENTS_BLOCKS_ONE"] = "One stack of blocks%2 in workspace."; // untranslated
|
|
440
|
+
Blockly.Msg["WORKSPACE_CONTENTS_BLOCKS_ZERO"] = "No blocks%2 in workspace."; // untranslated
|
|
441
|
+
Blockly.Msg["WORKSPACE_CONTENTS_COMMENTS_MANY"] = " and %1 comments"; // untranslated
|
|
442
|
+
Blockly.Msg["WORKSPACE_CONTENTS_COMMENTS_ONE"] = " and one comment"; // untranslated
|
|
435
443
|
Blockly.Msg["CONTROLS_FOREACH_INPUT_DO"] = Blockly.Msg["CONTROLS_REPEAT_INPUT_DO"];
|
|
436
444
|
Blockly.Msg["CONTROLS_FOR_INPUT_DO"] = Blockly.Msg["CONTROLS_REPEAT_INPUT_DO"];
|
|
437
445
|
Blockly.Msg["CONTROLS_IF_ELSEIF_TITLE_ELSEIF"] = Blockly.Msg["CONTROLS_IF_MSG_ELSEIF"];
|
package/msg/ro.mjs
CHANGED
|
@@ -432,6 +432,7 @@ export const {
|
|
|
432
432
|
COMMAND_KEY,
|
|
433
433
|
OPTION_KEY,
|
|
434
434
|
ALT_KEY,
|
|
435
|
+
ENTER_KEY,
|
|
435
436
|
CUT_SHORTCUT,
|
|
436
437
|
COPY_SHORTCUT,
|
|
437
438
|
PASTE_SHORTCUT,
|
|
@@ -443,4 +444,11 @@ export const {
|
|
|
443
444
|
KEYBOARD_NAV_CONSTRAINED_MOVE_HINT,
|
|
444
445
|
KEYBOARD_NAV_COPIED_HINT,
|
|
445
446
|
KEYBOARD_NAV_CUT_HINT,
|
|
447
|
+
WORKSPACE_CONTENTS_BLOCKS_MANY,
|
|
448
|
+
WORKSPACE_CONTENTS_BLOCKS_ONE,
|
|
449
|
+
WORKSPACE_CONTENTS_BLOCKS_ZERO,
|
|
450
|
+
WORKSPACE_CONTENTS_COMMENTS_MANY,
|
|
451
|
+
WORKSPACE_CONTENTS_COMMENTS_ONE,
|
|
452
|
+
KEYBOARD_NAV_BLOCK_NAVIGATION_HINT,
|
|
453
|
+
KEYBOARD_NAV_WORKSPACE_NAVIGATION_HINT,
|
|
446
454
|
} = ro;
|
package/msg/ru.js
CHANGED
|
@@ -92,16 +92,19 @@ Blockly.Msg["DUPLICATE_BLOCK"] = "Дублировать";
|
|
|
92
92
|
Blockly.Msg["DUPLICATE_COMMENT"] = "Дублировать комментарий";
|
|
93
93
|
Blockly.Msg["EDIT_BLOCK_CONTENTS"] = "Edit Block contents"; // untranslated
|
|
94
94
|
Blockly.Msg["ENABLE_BLOCK"] = "Включить блок";
|
|
95
|
+
Blockly.Msg["ENTER_KEY"] = "Enter"; // untranslated
|
|
95
96
|
Blockly.Msg["EXPAND_ALL"] = "Развернуть блоки";
|
|
96
97
|
Blockly.Msg["EXPAND_BLOCK"] = "Развернуть блок";
|
|
97
98
|
Blockly.Msg["EXTERNAL_INPUTS"] = "Вставки снаружи";
|
|
98
99
|
Blockly.Msg["HELP"] = "Справка";
|
|
99
100
|
Blockly.Msg["HELP_PROMPT"] = "Press %1 for help on keyboard controls"; // untranslated
|
|
100
101
|
Blockly.Msg["INLINE_INPUTS"] = "Вставки внутри";
|
|
102
|
+
Blockly.Msg["KEYBOARD_NAV_BLOCK_NAVIGATION_HINT"] = "Use the right arrow key to navigate inside of blocks"; // untranslated
|
|
101
103
|
Blockly.Msg["KEYBOARD_NAV_CONSTRAINED_MOVE_HINT"] = "Use the arrow keys to move, then %1 to accept the position"; // untranslated
|
|
102
104
|
Blockly.Msg["KEYBOARD_NAV_COPIED_HINT"] = "Copied. Press %1 to paste."; // untranslated
|
|
103
105
|
Blockly.Msg["KEYBOARD_NAV_CUT_HINT"] = "Cut. Press %1 to paste."; // untranslated
|
|
104
106
|
Blockly.Msg["KEYBOARD_NAV_UNCONSTRAINED_MOVE_HINT"] = "Hold %1 and use arrow keys to move freely, then %2 to accept the position"; // untranslated
|
|
107
|
+
Blockly.Msg["KEYBOARD_NAV_WORKSPACE_NAVIGATION_HINT"] = "Use the arrow keys to navigate"; // untranslated
|
|
105
108
|
Blockly.Msg["LINUX"] = "Linux"; // untranslated
|
|
106
109
|
Blockly.Msg["LISTS_CREATE_EMPTY_HELPURL"] = "https://github.com/RaspberryPiFoundation/blockly/wiki/Lists#create-empty-list"; // untranslated
|
|
107
110
|
Blockly.Msg["LISTS_CREATE_EMPTY_TITLE"] = "создать пустой список";
|
|
@@ -432,6 +435,11 @@ Blockly.Msg["VARIABLE_ALREADY_EXISTS_FOR_A_PARAMETER"] = "Переменная
|
|
|
432
435
|
Blockly.Msg["WINDOWS"] = "Windows"; // untranslated
|
|
433
436
|
Blockly.Msg["WORKSPACE_ARIA_LABEL"] = "Рабочая область Blockly";
|
|
434
437
|
Blockly.Msg["WORKSPACE_COMMENT_DEFAULT_TEXT"] = "Напишите здесь что-нибудь...";
|
|
438
|
+
Blockly.Msg["WORKSPACE_CONTENTS_BLOCKS_MANY"] = "%1 stacks of blocks%2 in workspace."; // untranslated
|
|
439
|
+
Blockly.Msg["WORKSPACE_CONTENTS_BLOCKS_ONE"] = "One stack of blocks%2 in workspace."; // untranslated
|
|
440
|
+
Blockly.Msg["WORKSPACE_CONTENTS_BLOCKS_ZERO"] = "No blocks%2 in workspace."; // untranslated
|
|
441
|
+
Blockly.Msg["WORKSPACE_CONTENTS_COMMENTS_MANY"] = " and %1 comments"; // untranslated
|
|
442
|
+
Blockly.Msg["WORKSPACE_CONTENTS_COMMENTS_ONE"] = " and one comment"; // untranslated
|
|
435
443
|
Blockly.Msg["CONTROLS_FOREACH_INPUT_DO"] = Blockly.Msg["CONTROLS_REPEAT_INPUT_DO"];
|
|
436
444
|
Blockly.Msg["CONTROLS_FOR_INPUT_DO"] = Blockly.Msg["CONTROLS_REPEAT_INPUT_DO"];
|
|
437
445
|
Blockly.Msg["CONTROLS_IF_ELSEIF_TITLE_ELSEIF"] = Blockly.Msg["CONTROLS_IF_MSG_ELSEIF"];
|
package/msg/ru.mjs
CHANGED
|
@@ -432,6 +432,7 @@ export const {
|
|
|
432
432
|
COMMAND_KEY,
|
|
433
433
|
OPTION_KEY,
|
|
434
434
|
ALT_KEY,
|
|
435
|
+
ENTER_KEY,
|
|
435
436
|
CUT_SHORTCUT,
|
|
436
437
|
COPY_SHORTCUT,
|
|
437
438
|
PASTE_SHORTCUT,
|
|
@@ -443,4 +444,11 @@ export const {
|
|
|
443
444
|
KEYBOARD_NAV_CONSTRAINED_MOVE_HINT,
|
|
444
445
|
KEYBOARD_NAV_COPIED_HINT,
|
|
445
446
|
KEYBOARD_NAV_CUT_HINT,
|
|
447
|
+
WORKSPACE_CONTENTS_BLOCKS_MANY,
|
|
448
|
+
WORKSPACE_CONTENTS_BLOCKS_ONE,
|
|
449
|
+
WORKSPACE_CONTENTS_BLOCKS_ZERO,
|
|
450
|
+
WORKSPACE_CONTENTS_COMMENTS_MANY,
|
|
451
|
+
WORKSPACE_CONTENTS_COMMENTS_ONE,
|
|
452
|
+
KEYBOARD_NAV_BLOCK_NAVIGATION_HINT,
|
|
453
|
+
KEYBOARD_NAV_WORKSPACE_NAVIGATION_HINT,
|
|
446
454
|
} = ru;
|
package/msg/sc.js
CHANGED
|
@@ -92,16 +92,19 @@ Blockly.Msg["DUPLICATE_BLOCK"] = "Dùplica";
|
|
|
92
92
|
Blockly.Msg["DUPLICATE_COMMENT"] = "Duplicate Comment"; // untranslated
|
|
93
93
|
Blockly.Msg["EDIT_BLOCK_CONTENTS"] = "Edit Block contents"; // untranslated
|
|
94
94
|
Blockly.Msg["ENABLE_BLOCK"] = "Abìlita Blocu";
|
|
95
|
+
Blockly.Msg["ENTER_KEY"] = "Enter"; // untranslated
|
|
95
96
|
Blockly.Msg["EXPAND_ALL"] = "Aberi Brocus";
|
|
96
97
|
Blockly.Msg["EXPAND_BLOCK"] = "Aberi Brocu";
|
|
97
98
|
Blockly.Msg["EXTERNAL_INPUTS"] = "Intradas esternas";
|
|
98
99
|
Blockly.Msg["HELP"] = "Agiudu";
|
|
99
100
|
Blockly.Msg["HELP_PROMPT"] = "Press %1 for help on keyboard controls"; // untranslated
|
|
100
101
|
Blockly.Msg["INLINE_INPUTS"] = "Intradas in lìnia";
|
|
102
|
+
Blockly.Msg["KEYBOARD_NAV_BLOCK_NAVIGATION_HINT"] = "Use the right arrow key to navigate inside of blocks"; // untranslated
|
|
101
103
|
Blockly.Msg["KEYBOARD_NAV_CONSTRAINED_MOVE_HINT"] = "Use the arrow keys to move, then %1 to accept the position"; // untranslated
|
|
102
104
|
Blockly.Msg["KEYBOARD_NAV_COPIED_HINT"] = "Copied. Press %1 to paste."; // untranslated
|
|
103
105
|
Blockly.Msg["KEYBOARD_NAV_CUT_HINT"] = "Cut. Press %1 to paste."; // untranslated
|
|
104
106
|
Blockly.Msg["KEYBOARD_NAV_UNCONSTRAINED_MOVE_HINT"] = "Hold %1 and use arrow keys to move freely, then %2 to accept the position"; // untranslated
|
|
107
|
+
Blockly.Msg["KEYBOARD_NAV_WORKSPACE_NAVIGATION_HINT"] = "Use the arrow keys to navigate"; // untranslated
|
|
105
108
|
Blockly.Msg["LINUX"] = "Linux"; // untranslated
|
|
106
109
|
Blockly.Msg["LISTS_CREATE_EMPTY_HELPURL"] = "https://github.com/RaspberryPiFoundation/blockly/wiki/Lists#create-empty-list"; // untranslated
|
|
107
110
|
Blockly.Msg["LISTS_CREATE_EMPTY_TITLE"] = "fait una lista buida";
|
|
@@ -432,6 +435,11 @@ Blockly.Msg["VARIABLE_ALREADY_EXISTS_FOR_A_PARAMETER"] = "A variable named '%1'
|
|
|
432
435
|
Blockly.Msg["WINDOWS"] = "Windows"; // untranslated
|
|
433
436
|
Blockly.Msg["WORKSPACE_ARIA_LABEL"] = "Blockly Workspace"; // untranslated
|
|
434
437
|
Blockly.Msg["WORKSPACE_COMMENT_DEFAULT_TEXT"] = "Say something..."; // untranslated
|
|
438
|
+
Blockly.Msg["WORKSPACE_CONTENTS_BLOCKS_MANY"] = "%1 stacks of blocks%2 in workspace."; // untranslated
|
|
439
|
+
Blockly.Msg["WORKSPACE_CONTENTS_BLOCKS_ONE"] = "One stack of blocks%2 in workspace."; // untranslated
|
|
440
|
+
Blockly.Msg["WORKSPACE_CONTENTS_BLOCKS_ZERO"] = "No blocks%2 in workspace."; // untranslated
|
|
441
|
+
Blockly.Msg["WORKSPACE_CONTENTS_COMMENTS_MANY"] = " and %1 comments"; // untranslated
|
|
442
|
+
Blockly.Msg["WORKSPACE_CONTENTS_COMMENTS_ONE"] = " and one comment"; // untranslated
|
|
435
443
|
Blockly.Msg["CONTROLS_FOREACH_INPUT_DO"] = Blockly.Msg["CONTROLS_REPEAT_INPUT_DO"];
|
|
436
444
|
Blockly.Msg["CONTROLS_FOR_INPUT_DO"] = Blockly.Msg["CONTROLS_REPEAT_INPUT_DO"];
|
|
437
445
|
Blockly.Msg["CONTROLS_IF_ELSEIF_TITLE_ELSEIF"] = Blockly.Msg["CONTROLS_IF_MSG_ELSEIF"];
|
package/msg/sc.mjs
CHANGED
|
@@ -432,6 +432,7 @@ export const {
|
|
|
432
432
|
COMMAND_KEY,
|
|
433
433
|
OPTION_KEY,
|
|
434
434
|
ALT_KEY,
|
|
435
|
+
ENTER_KEY,
|
|
435
436
|
CUT_SHORTCUT,
|
|
436
437
|
COPY_SHORTCUT,
|
|
437
438
|
PASTE_SHORTCUT,
|
|
@@ -443,4 +444,11 @@ export const {
|
|
|
443
444
|
KEYBOARD_NAV_CONSTRAINED_MOVE_HINT,
|
|
444
445
|
KEYBOARD_NAV_COPIED_HINT,
|
|
445
446
|
KEYBOARD_NAV_CUT_HINT,
|
|
447
|
+
WORKSPACE_CONTENTS_BLOCKS_MANY,
|
|
448
|
+
WORKSPACE_CONTENTS_BLOCKS_ONE,
|
|
449
|
+
WORKSPACE_CONTENTS_BLOCKS_ZERO,
|
|
450
|
+
WORKSPACE_CONTENTS_COMMENTS_MANY,
|
|
451
|
+
WORKSPACE_CONTENTS_COMMENTS_ONE,
|
|
452
|
+
KEYBOARD_NAV_BLOCK_NAVIGATION_HINT,
|
|
453
|
+
KEYBOARD_NAV_WORKSPACE_NAVIGATION_HINT,
|
|
446
454
|
} = sc;
|
package/msg/sco.js
CHANGED
|
@@ -92,16 +92,19 @@ Blockly.Msg["DUPLICATE_BLOCK"] = "Duplicate"; // untranslated
|
|
|
92
92
|
Blockly.Msg["DUPLICATE_COMMENT"] = "Duplicate Comment"; // untranslated
|
|
93
93
|
Blockly.Msg["EDIT_BLOCK_CONTENTS"] = "Edit Block contents"; // untranslated
|
|
94
94
|
Blockly.Msg["ENABLE_BLOCK"] = "Enable Block"; // untranslated
|
|
95
|
+
Blockly.Msg["ENTER_KEY"] = "Enter"; // untranslated
|
|
95
96
|
Blockly.Msg["EXPAND_ALL"] = "Expand Blocks"; // untranslated
|
|
96
97
|
Blockly.Msg["EXPAND_BLOCK"] = "Expand Block"; // untranslated
|
|
97
98
|
Blockly.Msg["EXTERNAL_INPUTS"] = "External Inputs"; // untranslated
|
|
98
99
|
Blockly.Msg["HELP"] = "Help"; // untranslated
|
|
99
100
|
Blockly.Msg["HELP_PROMPT"] = "Press %1 for help on keyboard controls"; // untranslated
|
|
100
101
|
Blockly.Msg["INLINE_INPUTS"] = "Inline Inputs"; // untranslated
|
|
102
|
+
Blockly.Msg["KEYBOARD_NAV_BLOCK_NAVIGATION_HINT"] = "Use the right arrow key to navigate inside of blocks"; // untranslated
|
|
101
103
|
Blockly.Msg["KEYBOARD_NAV_CONSTRAINED_MOVE_HINT"] = "Use the arrow keys to move, then %1 to accept the position"; // untranslated
|
|
102
104
|
Blockly.Msg["KEYBOARD_NAV_COPIED_HINT"] = "Copied. Press %1 to paste."; // untranslated
|
|
103
105
|
Blockly.Msg["KEYBOARD_NAV_CUT_HINT"] = "Cut. Press %1 to paste."; // untranslated
|
|
104
106
|
Blockly.Msg["KEYBOARD_NAV_UNCONSTRAINED_MOVE_HINT"] = "Hold %1 and use arrow keys to move freely, then %2 to accept the position"; // untranslated
|
|
107
|
+
Blockly.Msg["KEYBOARD_NAV_WORKSPACE_NAVIGATION_HINT"] = "Use the arrow keys to navigate"; // untranslated
|
|
105
108
|
Blockly.Msg["LINUX"] = "Linux"; // untranslated
|
|
106
109
|
Blockly.Msg["LISTS_CREATE_EMPTY_HELPURL"] = "https://github.com/RaspberryPiFoundation/blockly/wiki/Lists#create-empty-list"; // untranslated
|
|
107
110
|
Blockly.Msg["LISTS_CREATE_EMPTY_TITLE"] = "create empty list"; // untranslated
|
|
@@ -432,6 +435,11 @@ Blockly.Msg["VARIABLE_ALREADY_EXISTS_FOR_A_PARAMETER"] = "A variable named '%1'
|
|
|
432
435
|
Blockly.Msg["WINDOWS"] = "Windows"; // untranslated
|
|
433
436
|
Blockly.Msg["WORKSPACE_ARIA_LABEL"] = "Blockly Workspace"; // untranslated
|
|
434
437
|
Blockly.Msg["WORKSPACE_COMMENT_DEFAULT_TEXT"] = "Say something..."; // untranslated
|
|
438
|
+
Blockly.Msg["WORKSPACE_CONTENTS_BLOCKS_MANY"] = "%1 stacks of blocks%2 in workspace."; // untranslated
|
|
439
|
+
Blockly.Msg["WORKSPACE_CONTENTS_BLOCKS_ONE"] = "One stack of blocks%2 in workspace."; // untranslated
|
|
440
|
+
Blockly.Msg["WORKSPACE_CONTENTS_BLOCKS_ZERO"] = "No blocks%2 in workspace."; // untranslated
|
|
441
|
+
Blockly.Msg["WORKSPACE_CONTENTS_COMMENTS_MANY"] = " and %1 comments"; // untranslated
|
|
442
|
+
Blockly.Msg["WORKSPACE_CONTENTS_COMMENTS_ONE"] = " and one comment"; // untranslated
|
|
435
443
|
Blockly.Msg["CONTROLS_FOREACH_INPUT_DO"] = Blockly.Msg["CONTROLS_REPEAT_INPUT_DO"];
|
|
436
444
|
Blockly.Msg["CONTROLS_FOR_INPUT_DO"] = Blockly.Msg["CONTROLS_REPEAT_INPUT_DO"];
|
|
437
445
|
Blockly.Msg["CONTROLS_IF_ELSEIF_TITLE_ELSEIF"] = Blockly.Msg["CONTROLS_IF_MSG_ELSEIF"];
|
package/msg/sco.mjs
CHANGED
|
@@ -432,6 +432,7 @@ export const {
|
|
|
432
432
|
COMMAND_KEY,
|
|
433
433
|
OPTION_KEY,
|
|
434
434
|
ALT_KEY,
|
|
435
|
+
ENTER_KEY,
|
|
435
436
|
CUT_SHORTCUT,
|
|
436
437
|
COPY_SHORTCUT,
|
|
437
438
|
PASTE_SHORTCUT,
|
|
@@ -443,4 +444,11 @@ export const {
|
|
|
443
444
|
KEYBOARD_NAV_CONSTRAINED_MOVE_HINT,
|
|
444
445
|
KEYBOARD_NAV_COPIED_HINT,
|
|
445
446
|
KEYBOARD_NAV_CUT_HINT,
|
|
447
|
+
WORKSPACE_CONTENTS_BLOCKS_MANY,
|
|
448
|
+
WORKSPACE_CONTENTS_BLOCKS_ONE,
|
|
449
|
+
WORKSPACE_CONTENTS_BLOCKS_ZERO,
|
|
450
|
+
WORKSPACE_CONTENTS_COMMENTS_MANY,
|
|
451
|
+
WORKSPACE_CONTENTS_COMMENTS_ONE,
|
|
452
|
+
KEYBOARD_NAV_BLOCK_NAVIGATION_HINT,
|
|
453
|
+
KEYBOARD_NAV_WORKSPACE_NAVIGATION_HINT,
|
|
446
454
|
} = sco;
|
package/msg/sd.js
CHANGED
|
@@ -92,16 +92,19 @@ Blockly.Msg["DUPLICATE_BLOCK"] = "نقل";
|
|
|
92
92
|
Blockly.Msg["DUPLICATE_COMMENT"] = "نقل رايو";
|
|
93
93
|
Blockly.Msg["EDIT_BLOCK_CONTENTS"] = "Edit Block contents"; // untranslated
|
|
94
94
|
Blockly.Msg["ENABLE_BLOCK"] = "بلاڪ کي فعال بڻايو";
|
|
95
|
+
Blockly.Msg["ENTER_KEY"] = "Enter"; // untranslated
|
|
95
96
|
Blockly.Msg["EXPAND_ALL"] = "بلاڪَ نمايو";
|
|
96
97
|
Blockly.Msg["EXPAND_BLOCK"] = "بلاڪ نمايو";
|
|
97
98
|
Blockly.Msg["EXTERNAL_INPUTS"] = "ٻاهريون داخلائون";
|
|
98
99
|
Blockly.Msg["HELP"] = "مدد";
|
|
99
100
|
Blockly.Msg["HELP_PROMPT"] = "Press %1 for help on keyboard controls"; // untranslated
|
|
100
101
|
Blockly.Msg["INLINE_INPUTS"] = "اِنلائين اِن پٽس";
|
|
102
|
+
Blockly.Msg["KEYBOARD_NAV_BLOCK_NAVIGATION_HINT"] = "Use the right arrow key to navigate inside of blocks"; // untranslated
|
|
101
103
|
Blockly.Msg["KEYBOARD_NAV_CONSTRAINED_MOVE_HINT"] = "Use the arrow keys to move, then %1 to accept the position"; // untranslated
|
|
102
104
|
Blockly.Msg["KEYBOARD_NAV_COPIED_HINT"] = "Copied. Press %1 to paste."; // untranslated
|
|
103
105
|
Blockly.Msg["KEYBOARD_NAV_CUT_HINT"] = "Cut. Press %1 to paste."; // untranslated
|
|
104
106
|
Blockly.Msg["KEYBOARD_NAV_UNCONSTRAINED_MOVE_HINT"] = "Hold %1 and use arrow keys to move freely, then %2 to accept the position"; // untranslated
|
|
107
|
+
Blockly.Msg["KEYBOARD_NAV_WORKSPACE_NAVIGATION_HINT"] = "Use the arrow keys to navigate"; // untranslated
|
|
105
108
|
Blockly.Msg["LINUX"] = "Linux"; // untranslated
|
|
106
109
|
Blockly.Msg["LISTS_CREATE_EMPTY_HELPURL"] = "https://github.com/RaspberryPiFoundation/blockly/wiki/Lists#create-empty-list"; // untranslated
|
|
107
110
|
Blockly.Msg["LISTS_CREATE_EMPTY_TITLE"] = "خالي فهرست تخليق ڪريو";
|
|
@@ -432,6 +435,11 @@ Blockly.Msg["VARIABLE_ALREADY_EXISTS_FOR_A_PARAMETER"] = "A variable named '%1'
|
|
|
432
435
|
Blockly.Msg["WINDOWS"] = "Windows"; // untranslated
|
|
433
436
|
Blockly.Msg["WORKSPACE_ARIA_LABEL"] = "Blockly Workspace"; // untranslated
|
|
434
437
|
Blockly.Msg["WORKSPACE_COMMENT_DEFAULT_TEXT"] = "Say something..."; // untranslated
|
|
438
|
+
Blockly.Msg["WORKSPACE_CONTENTS_BLOCKS_MANY"] = "%1 stacks of blocks%2 in workspace."; // untranslated
|
|
439
|
+
Blockly.Msg["WORKSPACE_CONTENTS_BLOCKS_ONE"] = "One stack of blocks%2 in workspace."; // untranslated
|
|
440
|
+
Blockly.Msg["WORKSPACE_CONTENTS_BLOCKS_ZERO"] = "No blocks%2 in workspace."; // untranslated
|
|
441
|
+
Blockly.Msg["WORKSPACE_CONTENTS_COMMENTS_MANY"] = " and %1 comments"; // untranslated
|
|
442
|
+
Blockly.Msg["WORKSPACE_CONTENTS_COMMENTS_ONE"] = " and one comment"; // untranslated
|
|
435
443
|
Blockly.Msg["CONTROLS_FOREACH_INPUT_DO"] = Blockly.Msg["CONTROLS_REPEAT_INPUT_DO"];
|
|
436
444
|
Blockly.Msg["CONTROLS_FOR_INPUT_DO"] = Blockly.Msg["CONTROLS_REPEAT_INPUT_DO"];
|
|
437
445
|
Blockly.Msg["CONTROLS_IF_ELSEIF_TITLE_ELSEIF"] = Blockly.Msg["CONTROLS_IF_MSG_ELSEIF"];
|
package/msg/sd.mjs
CHANGED
|
@@ -432,6 +432,7 @@ export const {
|
|
|
432
432
|
COMMAND_KEY,
|
|
433
433
|
OPTION_KEY,
|
|
434
434
|
ALT_KEY,
|
|
435
|
+
ENTER_KEY,
|
|
435
436
|
CUT_SHORTCUT,
|
|
436
437
|
COPY_SHORTCUT,
|
|
437
438
|
PASTE_SHORTCUT,
|
|
@@ -443,4 +444,11 @@ export const {
|
|
|
443
444
|
KEYBOARD_NAV_CONSTRAINED_MOVE_HINT,
|
|
444
445
|
KEYBOARD_NAV_COPIED_HINT,
|
|
445
446
|
KEYBOARD_NAV_CUT_HINT,
|
|
447
|
+
WORKSPACE_CONTENTS_BLOCKS_MANY,
|
|
448
|
+
WORKSPACE_CONTENTS_BLOCKS_ONE,
|
|
449
|
+
WORKSPACE_CONTENTS_BLOCKS_ZERO,
|
|
450
|
+
WORKSPACE_CONTENTS_COMMENTS_MANY,
|
|
451
|
+
WORKSPACE_CONTENTS_COMMENTS_ONE,
|
|
452
|
+
KEYBOARD_NAV_BLOCK_NAVIGATION_HINT,
|
|
453
|
+
KEYBOARD_NAV_WORKSPACE_NAVIGATION_HINT,
|
|
446
454
|
} = sd;
|
package/msg/shn.js
CHANGED
|
@@ -92,16 +92,19 @@ Blockly.Msg["DUPLICATE_BLOCK"] = "ထုတ်ႇ";
|
|
|
92
92
|
Blockly.Msg["DUPLICATE_COMMENT"] = "Duplicate Comment"; // untranslated
|
|
93
93
|
Blockly.Msg["EDIT_BLOCK_CONTENTS"] = "Edit Block contents"; // untranslated
|
|
94
94
|
Blockly.Msg["ENABLE_BLOCK"] = "ပိုတ်ႇၸႂ်ႉ လွင်ႈႁႄႉတတ်း";
|
|
95
|
+
Blockly.Msg["ENTER_KEY"] = "Enter"; // untranslated
|
|
95
96
|
Blockly.Msg["EXPAND_ALL"] = "ၶႂၢၵ်ႈၸိူဝ်းႁႄႉတတ်း";
|
|
96
97
|
Blockly.Msg["EXPAND_BLOCK"] = "ၶႂၢၵ်ႈလွင်ႈႁႄႉတတ်း";
|
|
97
98
|
Blockly.Msg["EXTERNAL_INPUTS"] = "ၶိူင်ႈဢၼ်လုၵ်ႉတၢင်းၼွၵ်ႈၶဝ်ႈမႃး";
|
|
98
99
|
Blockly.Msg["HELP"] = "ၸွႆႈထႅမ်";
|
|
99
100
|
Blockly.Msg["HELP_PROMPT"] = "Press %1 for help on keyboard controls"; // untranslated
|
|
100
101
|
Blockly.Msg["INLINE_INPUTS"] = "ၶိူင်ႈဢၼ်ၶဝ်ႈမႃးၸွမ်းလႅင်း";
|
|
102
|
+
Blockly.Msg["KEYBOARD_NAV_BLOCK_NAVIGATION_HINT"] = "Use the right arrow key to navigate inside of blocks"; // untranslated
|
|
101
103
|
Blockly.Msg["KEYBOARD_NAV_CONSTRAINED_MOVE_HINT"] = "Use the arrow keys to move, then %1 to accept the position"; // untranslated
|
|
102
104
|
Blockly.Msg["KEYBOARD_NAV_COPIED_HINT"] = "Copied. Press %1 to paste."; // untranslated
|
|
103
105
|
Blockly.Msg["KEYBOARD_NAV_CUT_HINT"] = "Cut. Press %1 to paste."; // untranslated
|
|
104
106
|
Blockly.Msg["KEYBOARD_NAV_UNCONSTRAINED_MOVE_HINT"] = "Hold %1 and use arrow keys to move freely, then %2 to accept the position"; // untranslated
|
|
107
|
+
Blockly.Msg["KEYBOARD_NAV_WORKSPACE_NAVIGATION_HINT"] = "Use the arrow keys to navigate"; // untranslated
|
|
105
108
|
Blockly.Msg["LINUX"] = "Linux"; // untranslated
|
|
106
109
|
Blockly.Msg["LISTS_CREATE_EMPTY_HELPURL"] = "https://github.com/RaspberryPiFoundation/blockly/wiki/Lists#create-empty-list"; // untranslated
|
|
107
110
|
Blockly.Msg["LISTS_CREATE_EMPTY_TITLE"] = "create empty list"; // untranslated
|
|
@@ -432,6 +435,11 @@ Blockly.Msg["VARIABLE_ALREADY_EXISTS_FOR_A_PARAMETER"] = "A variable named '%1'
|
|
|
432
435
|
Blockly.Msg["WINDOWS"] = "Windows"; // untranslated
|
|
433
436
|
Blockly.Msg["WORKSPACE_ARIA_LABEL"] = "Blockly Workspace"; // untranslated
|
|
434
437
|
Blockly.Msg["WORKSPACE_COMMENT_DEFAULT_TEXT"] = "Say something..."; // untranslated
|
|
438
|
+
Blockly.Msg["WORKSPACE_CONTENTS_BLOCKS_MANY"] = "%1 stacks of blocks%2 in workspace."; // untranslated
|
|
439
|
+
Blockly.Msg["WORKSPACE_CONTENTS_BLOCKS_ONE"] = "One stack of blocks%2 in workspace."; // untranslated
|
|
440
|
+
Blockly.Msg["WORKSPACE_CONTENTS_BLOCKS_ZERO"] = "No blocks%2 in workspace."; // untranslated
|
|
441
|
+
Blockly.Msg["WORKSPACE_CONTENTS_COMMENTS_MANY"] = " and %1 comments"; // untranslated
|
|
442
|
+
Blockly.Msg["WORKSPACE_CONTENTS_COMMENTS_ONE"] = " and one comment"; // untranslated
|
|
435
443
|
Blockly.Msg["CONTROLS_FOREACH_INPUT_DO"] = Blockly.Msg["CONTROLS_REPEAT_INPUT_DO"];
|
|
436
444
|
Blockly.Msg["CONTROLS_FOR_INPUT_DO"] = Blockly.Msg["CONTROLS_REPEAT_INPUT_DO"];
|
|
437
445
|
Blockly.Msg["CONTROLS_IF_ELSEIF_TITLE_ELSEIF"] = Blockly.Msg["CONTROLS_IF_MSG_ELSEIF"];
|
package/msg/shn.mjs
CHANGED
|
@@ -432,6 +432,7 @@ export const {
|
|
|
432
432
|
COMMAND_KEY,
|
|
433
433
|
OPTION_KEY,
|
|
434
434
|
ALT_KEY,
|
|
435
|
+
ENTER_KEY,
|
|
435
436
|
CUT_SHORTCUT,
|
|
436
437
|
COPY_SHORTCUT,
|
|
437
438
|
PASTE_SHORTCUT,
|
|
@@ -443,4 +444,11 @@ export const {
|
|
|
443
444
|
KEYBOARD_NAV_CONSTRAINED_MOVE_HINT,
|
|
444
445
|
KEYBOARD_NAV_COPIED_HINT,
|
|
445
446
|
KEYBOARD_NAV_CUT_HINT,
|
|
447
|
+
WORKSPACE_CONTENTS_BLOCKS_MANY,
|
|
448
|
+
WORKSPACE_CONTENTS_BLOCKS_ONE,
|
|
449
|
+
WORKSPACE_CONTENTS_BLOCKS_ZERO,
|
|
450
|
+
WORKSPACE_CONTENTS_COMMENTS_MANY,
|
|
451
|
+
WORKSPACE_CONTENTS_COMMENTS_ONE,
|
|
452
|
+
KEYBOARD_NAV_BLOCK_NAVIGATION_HINT,
|
|
453
|
+
KEYBOARD_NAV_WORKSPACE_NAVIGATION_HINT,
|
|
446
454
|
} = shn;
|
package/msg/si.js
CHANGED
|
@@ -92,16 +92,19 @@ Blockly.Msg["DUPLICATE_BLOCK"] = "Duplicate"; // untranslated
|
|
|
92
92
|
Blockly.Msg["DUPLICATE_COMMENT"] = "Duplicate Comment"; // untranslated
|
|
93
93
|
Blockly.Msg["EDIT_BLOCK_CONTENTS"] = "Edit Block contents"; // untranslated
|
|
94
94
|
Blockly.Msg["ENABLE_BLOCK"] = "Enable Block"; // untranslated
|
|
95
|
+
Blockly.Msg["ENTER_KEY"] = "Enter"; // untranslated
|
|
95
96
|
Blockly.Msg["EXPAND_ALL"] = "රූපතහඩු විහිදන්න";
|
|
96
97
|
Blockly.Msg["EXPAND_BLOCK"] = "Expand Block"; // untranslated
|
|
97
98
|
Blockly.Msg["EXTERNAL_INPUTS"] = "External Inputs"; // untranslated
|
|
98
99
|
Blockly.Msg["HELP"] = "උදව්";
|
|
99
100
|
Blockly.Msg["HELP_PROMPT"] = "Press %1 for help on keyboard controls"; // untranslated
|
|
100
101
|
Blockly.Msg["INLINE_INPUTS"] = "Inline Inputs"; // untranslated
|
|
102
|
+
Blockly.Msg["KEYBOARD_NAV_BLOCK_NAVIGATION_HINT"] = "Use the right arrow key to navigate inside of blocks"; // untranslated
|
|
101
103
|
Blockly.Msg["KEYBOARD_NAV_CONSTRAINED_MOVE_HINT"] = "Use the arrow keys to move, then %1 to accept the position"; // untranslated
|
|
102
104
|
Blockly.Msg["KEYBOARD_NAV_COPIED_HINT"] = "Copied. Press %1 to paste."; // untranslated
|
|
103
105
|
Blockly.Msg["KEYBOARD_NAV_CUT_HINT"] = "Cut. Press %1 to paste."; // untranslated
|
|
104
106
|
Blockly.Msg["KEYBOARD_NAV_UNCONSTRAINED_MOVE_HINT"] = "Hold %1 and use arrow keys to move freely, then %2 to accept the position"; // untranslated
|
|
107
|
+
Blockly.Msg["KEYBOARD_NAV_WORKSPACE_NAVIGATION_HINT"] = "Use the arrow keys to navigate"; // untranslated
|
|
105
108
|
Blockly.Msg["LINUX"] = "Linux"; // untranslated
|
|
106
109
|
Blockly.Msg["LISTS_CREATE_EMPTY_HELPURL"] = "https://github.com/RaspberryPiFoundation/blockly/wiki/Lists#create-empty-list"; // untranslated
|
|
107
110
|
Blockly.Msg["LISTS_CREATE_EMPTY_TITLE"] = "create empty list"; // untranslated
|
|
@@ -432,6 +435,11 @@ Blockly.Msg["VARIABLE_ALREADY_EXISTS_FOR_A_PARAMETER"] = "A variable named '%1'
|
|
|
432
435
|
Blockly.Msg["WINDOWS"] = "Windows"; // untranslated
|
|
433
436
|
Blockly.Msg["WORKSPACE_ARIA_LABEL"] = "Blockly Workspace"; // untranslated
|
|
434
437
|
Blockly.Msg["WORKSPACE_COMMENT_DEFAULT_TEXT"] = "Say something..."; // untranslated
|
|
438
|
+
Blockly.Msg["WORKSPACE_CONTENTS_BLOCKS_MANY"] = "%1 stacks of blocks%2 in workspace."; // untranslated
|
|
439
|
+
Blockly.Msg["WORKSPACE_CONTENTS_BLOCKS_ONE"] = "One stack of blocks%2 in workspace."; // untranslated
|
|
440
|
+
Blockly.Msg["WORKSPACE_CONTENTS_BLOCKS_ZERO"] = "No blocks%2 in workspace."; // untranslated
|
|
441
|
+
Blockly.Msg["WORKSPACE_CONTENTS_COMMENTS_MANY"] = " and %1 comments"; // untranslated
|
|
442
|
+
Blockly.Msg["WORKSPACE_CONTENTS_COMMENTS_ONE"] = " and one comment"; // untranslated
|
|
435
443
|
Blockly.Msg["CONTROLS_FOREACH_INPUT_DO"] = Blockly.Msg["CONTROLS_REPEAT_INPUT_DO"];
|
|
436
444
|
Blockly.Msg["CONTROLS_FOR_INPUT_DO"] = Blockly.Msg["CONTROLS_REPEAT_INPUT_DO"];
|
|
437
445
|
Blockly.Msg["CONTROLS_IF_ELSEIF_TITLE_ELSEIF"] = Blockly.Msg["CONTROLS_IF_MSG_ELSEIF"];
|
package/msg/si.mjs
CHANGED
|
@@ -432,6 +432,7 @@ export const {
|
|
|
432
432
|
COMMAND_KEY,
|
|
433
433
|
OPTION_KEY,
|
|
434
434
|
ALT_KEY,
|
|
435
|
+
ENTER_KEY,
|
|
435
436
|
CUT_SHORTCUT,
|
|
436
437
|
COPY_SHORTCUT,
|
|
437
438
|
PASTE_SHORTCUT,
|
|
@@ -443,4 +444,11 @@ export const {
|
|
|
443
444
|
KEYBOARD_NAV_CONSTRAINED_MOVE_HINT,
|
|
444
445
|
KEYBOARD_NAV_COPIED_HINT,
|
|
445
446
|
KEYBOARD_NAV_CUT_HINT,
|
|
447
|
+
WORKSPACE_CONTENTS_BLOCKS_MANY,
|
|
448
|
+
WORKSPACE_CONTENTS_BLOCKS_ONE,
|
|
449
|
+
WORKSPACE_CONTENTS_BLOCKS_ZERO,
|
|
450
|
+
WORKSPACE_CONTENTS_COMMENTS_MANY,
|
|
451
|
+
WORKSPACE_CONTENTS_COMMENTS_ONE,
|
|
452
|
+
KEYBOARD_NAV_BLOCK_NAVIGATION_HINT,
|
|
453
|
+
KEYBOARD_NAV_WORKSPACE_NAVIGATION_HINT,
|
|
446
454
|
} = si;
|
package/msg/sk.js
CHANGED
|
@@ -92,16 +92,19 @@ Blockly.Msg["DUPLICATE_BLOCK"] = "Duplikovať";
|
|
|
92
92
|
Blockly.Msg["DUPLICATE_COMMENT"] = "Duplicitný komentár";
|
|
93
93
|
Blockly.Msg["EDIT_BLOCK_CONTENTS"] = "Edit Block contents"; // untranslated
|
|
94
94
|
Blockly.Msg["ENABLE_BLOCK"] = "Povoliť blok";
|
|
95
|
+
Blockly.Msg["ENTER_KEY"] = "Enter"; // untranslated
|
|
95
96
|
Blockly.Msg["EXPAND_ALL"] = "Rozvinúť bloky";
|
|
96
97
|
Blockly.Msg["EXPAND_BLOCK"] = "Rozvinúť blok";
|
|
97
98
|
Blockly.Msg["EXTERNAL_INPUTS"] = "Vonkajšie vstupy";
|
|
98
99
|
Blockly.Msg["HELP"] = "Pomoc";
|
|
99
100
|
Blockly.Msg["HELP_PROMPT"] = "Press %1 for help on keyboard controls"; // untranslated
|
|
100
101
|
Blockly.Msg["INLINE_INPUTS"] = "Riadkové vstupy";
|
|
102
|
+
Blockly.Msg["KEYBOARD_NAV_BLOCK_NAVIGATION_HINT"] = "Use the right arrow key to navigate inside of blocks"; // untranslated
|
|
101
103
|
Blockly.Msg["KEYBOARD_NAV_CONSTRAINED_MOVE_HINT"] = "Use the arrow keys to move, then %1 to accept the position"; // untranslated
|
|
102
104
|
Blockly.Msg["KEYBOARD_NAV_COPIED_HINT"] = "Copied. Press %1 to paste."; // untranslated
|
|
103
105
|
Blockly.Msg["KEYBOARD_NAV_CUT_HINT"] = "Cut. Press %1 to paste."; // untranslated
|
|
104
106
|
Blockly.Msg["KEYBOARD_NAV_UNCONSTRAINED_MOVE_HINT"] = "Hold %1 and use arrow keys to move freely, then %2 to accept the position"; // untranslated
|
|
107
|
+
Blockly.Msg["KEYBOARD_NAV_WORKSPACE_NAVIGATION_HINT"] = "Use the arrow keys to navigate"; // untranslated
|
|
105
108
|
Blockly.Msg["LINUX"] = "Linux"; // untranslated
|
|
106
109
|
Blockly.Msg["LISTS_CREATE_EMPTY_HELPURL"] = "https://github.com/RaspberryPiFoundation/blockly/wiki/Lists#create-empty-list"; // untranslated
|
|
107
110
|
Blockly.Msg["LISTS_CREATE_EMPTY_TITLE"] = "prázdny zoznam";
|
|
@@ -432,6 +435,11 @@ Blockly.Msg["VARIABLE_ALREADY_EXISTS_FOR_A_PARAMETER"] = "Premenná s názvom '%
|
|
|
432
435
|
Blockly.Msg["WINDOWS"] = "Windows"; // untranslated
|
|
433
436
|
Blockly.Msg["WORKSPACE_ARIA_LABEL"] = "Pracovisko Bloskly";
|
|
434
437
|
Blockly.Msg["WORKSPACE_COMMENT_DEFAULT_TEXT"] = "Povedz niečo...";
|
|
438
|
+
Blockly.Msg["WORKSPACE_CONTENTS_BLOCKS_MANY"] = "%1 stacks of blocks%2 in workspace."; // untranslated
|
|
439
|
+
Blockly.Msg["WORKSPACE_CONTENTS_BLOCKS_ONE"] = "One stack of blocks%2 in workspace."; // untranslated
|
|
440
|
+
Blockly.Msg["WORKSPACE_CONTENTS_BLOCKS_ZERO"] = "No blocks%2 in workspace."; // untranslated
|
|
441
|
+
Blockly.Msg["WORKSPACE_CONTENTS_COMMENTS_MANY"] = " and %1 comments"; // untranslated
|
|
442
|
+
Blockly.Msg["WORKSPACE_CONTENTS_COMMENTS_ONE"] = " and one comment"; // untranslated
|
|
435
443
|
Blockly.Msg["CONTROLS_FOREACH_INPUT_DO"] = Blockly.Msg["CONTROLS_REPEAT_INPUT_DO"];
|
|
436
444
|
Blockly.Msg["CONTROLS_FOR_INPUT_DO"] = Blockly.Msg["CONTROLS_REPEAT_INPUT_DO"];
|
|
437
445
|
Blockly.Msg["CONTROLS_IF_ELSEIF_TITLE_ELSEIF"] = Blockly.Msg["CONTROLS_IF_MSG_ELSEIF"];
|
package/msg/sk.mjs
CHANGED
|
@@ -432,6 +432,7 @@ export const {
|
|
|
432
432
|
COMMAND_KEY,
|
|
433
433
|
OPTION_KEY,
|
|
434
434
|
ALT_KEY,
|
|
435
|
+
ENTER_KEY,
|
|
435
436
|
CUT_SHORTCUT,
|
|
436
437
|
COPY_SHORTCUT,
|
|
437
438
|
PASTE_SHORTCUT,
|
|
@@ -443,4 +444,11 @@ export const {
|
|
|
443
444
|
KEYBOARD_NAV_CONSTRAINED_MOVE_HINT,
|
|
444
445
|
KEYBOARD_NAV_COPIED_HINT,
|
|
445
446
|
KEYBOARD_NAV_CUT_HINT,
|
|
447
|
+
WORKSPACE_CONTENTS_BLOCKS_MANY,
|
|
448
|
+
WORKSPACE_CONTENTS_BLOCKS_ONE,
|
|
449
|
+
WORKSPACE_CONTENTS_BLOCKS_ZERO,
|
|
450
|
+
WORKSPACE_CONTENTS_COMMENTS_MANY,
|
|
451
|
+
WORKSPACE_CONTENTS_COMMENTS_ONE,
|
|
452
|
+
KEYBOARD_NAV_BLOCK_NAVIGATION_HINT,
|
|
453
|
+
KEYBOARD_NAV_WORKSPACE_NAVIGATION_HINT,
|
|
446
454
|
} = sk;
|
package/msg/skr-arab.js
CHANGED
|
@@ -92,16 +92,19 @@ Blockly.Msg["DUPLICATE_BLOCK"] = "ڈپلیکیٹ";
|
|
|
92
92
|
Blockly.Msg["DUPLICATE_COMMENT"] = "نقل تبصرہ";
|
|
93
93
|
Blockly.Msg["EDIT_BLOCK_CONTENTS"] = "Edit Block contents"; // untranslated
|
|
94
94
|
Blockly.Msg["ENABLE_BLOCK"] = "بلاک فعال کرو";
|
|
95
|
+
Blockly.Msg["ENTER_KEY"] = "Enter"; // untranslated
|
|
95
96
|
Blockly.Msg["EXPAND_ALL"] = "بلاکوں کوں کھنڈاؤ";
|
|
96
97
|
Blockly.Msg["EXPAND_BLOCK"] = "بلاک کھنڈاؤ";
|
|
97
98
|
Blockly.Msg["EXTERNAL_INPUTS"] = "باہرلے انپٹ";
|
|
98
99
|
Blockly.Msg["HELP"] = "مدد";
|
|
99
100
|
Blockly.Msg["HELP_PROMPT"] = "Press %1 for help on keyboard controls"; // untranslated
|
|
100
101
|
Blockly.Msg["INLINE_INPUTS"] = "ان لائن ان پٹ";
|
|
102
|
+
Blockly.Msg["KEYBOARD_NAV_BLOCK_NAVIGATION_HINT"] = "Use the right arrow key to navigate inside of blocks"; // untranslated
|
|
101
103
|
Blockly.Msg["KEYBOARD_NAV_CONSTRAINED_MOVE_HINT"] = "Use the arrow keys to move, then %1 to accept the position"; // untranslated
|
|
102
104
|
Blockly.Msg["KEYBOARD_NAV_COPIED_HINT"] = "Copied. Press %1 to paste."; // untranslated
|
|
103
105
|
Blockly.Msg["KEYBOARD_NAV_CUT_HINT"] = "Cut. Press %1 to paste."; // untranslated
|
|
104
106
|
Blockly.Msg["KEYBOARD_NAV_UNCONSTRAINED_MOVE_HINT"] = "Hold %1 and use arrow keys to move freely, then %2 to accept the position"; // untranslated
|
|
107
|
+
Blockly.Msg["KEYBOARD_NAV_WORKSPACE_NAVIGATION_HINT"] = "Use the arrow keys to navigate"; // untranslated
|
|
105
108
|
Blockly.Msg["LINUX"] = "Linux"; // untranslated
|
|
106
109
|
Blockly.Msg["LISTS_CREATE_EMPTY_HELPURL"] = "https://github.com/RaspberryPiFoundation/blockly/wiki/Lists#create-empty-list"; // untranslated
|
|
107
110
|
Blockly.Msg["LISTS_CREATE_EMPTY_TITLE"] = "خالی تندیر بݨاؤ";
|
|
@@ -432,6 +435,11 @@ Blockly.Msg["VARIABLE_ALREADY_EXISTS_FOR_A_PARAMETER"] = "A variable named '%1'
|
|
|
432
435
|
Blockly.Msg["WINDOWS"] = "Windows"; // untranslated
|
|
433
436
|
Blockly.Msg["WORKSPACE_ARIA_LABEL"] = "Blockly Workspace"; // untranslated
|
|
434
437
|
Blockly.Msg["WORKSPACE_COMMENT_DEFAULT_TEXT"] = "Say something..."; // untranslated
|
|
438
|
+
Blockly.Msg["WORKSPACE_CONTENTS_BLOCKS_MANY"] = "%1 stacks of blocks%2 in workspace."; // untranslated
|
|
439
|
+
Blockly.Msg["WORKSPACE_CONTENTS_BLOCKS_ONE"] = "One stack of blocks%2 in workspace."; // untranslated
|
|
440
|
+
Blockly.Msg["WORKSPACE_CONTENTS_BLOCKS_ZERO"] = "No blocks%2 in workspace."; // untranslated
|
|
441
|
+
Blockly.Msg["WORKSPACE_CONTENTS_COMMENTS_MANY"] = " and %1 comments"; // untranslated
|
|
442
|
+
Blockly.Msg["WORKSPACE_CONTENTS_COMMENTS_ONE"] = " and one comment"; // untranslated
|
|
435
443
|
Blockly.Msg["CONTROLS_FOREACH_INPUT_DO"] = Blockly.Msg["CONTROLS_REPEAT_INPUT_DO"];
|
|
436
444
|
Blockly.Msg["CONTROLS_FOR_INPUT_DO"] = Blockly.Msg["CONTROLS_REPEAT_INPUT_DO"];
|
|
437
445
|
Blockly.Msg["CONTROLS_IF_ELSEIF_TITLE_ELSEIF"] = Blockly.Msg["CONTROLS_IF_MSG_ELSEIF"];
|
package/msg/skr-arab.mjs
CHANGED
|
@@ -432,6 +432,7 @@ export const {
|
|
|
432
432
|
COMMAND_KEY,
|
|
433
433
|
OPTION_KEY,
|
|
434
434
|
ALT_KEY,
|
|
435
|
+
ENTER_KEY,
|
|
435
436
|
CUT_SHORTCUT,
|
|
436
437
|
COPY_SHORTCUT,
|
|
437
438
|
PASTE_SHORTCUT,
|
|
@@ -443,4 +444,11 @@ export const {
|
|
|
443
444
|
KEYBOARD_NAV_CONSTRAINED_MOVE_HINT,
|
|
444
445
|
KEYBOARD_NAV_COPIED_HINT,
|
|
445
446
|
KEYBOARD_NAV_CUT_HINT,
|
|
447
|
+
WORKSPACE_CONTENTS_BLOCKS_MANY,
|
|
448
|
+
WORKSPACE_CONTENTS_BLOCKS_ONE,
|
|
449
|
+
WORKSPACE_CONTENTS_BLOCKS_ZERO,
|
|
450
|
+
WORKSPACE_CONTENTS_COMMENTS_MANY,
|
|
451
|
+
WORKSPACE_CONTENTS_COMMENTS_ONE,
|
|
452
|
+
KEYBOARD_NAV_BLOCK_NAVIGATION_HINT,
|
|
453
|
+
KEYBOARD_NAV_WORKSPACE_NAVIGATION_HINT,
|
|
446
454
|
} = skr_arab;
|