blockly 12.5.0 → 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 +653 -541
- package/blockly.mjs +13 -5
- package/blockly_compressed.js +618 -515
- 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/my.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"] = "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"] = "အကူအညီ";
|
|
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"] = "လုပ်ငန်းခွင်ပိတ်ဆို့မှု";
|
|
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/my.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
|
} = my;
|
package/msg/mzn.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/mzn.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
|
} = mzn;
|
package/msg/nb.js
CHANGED
|
@@ -92,16 +92,19 @@ Blockly.Msg["DUPLICATE_BLOCK"] = "duplikat";
|
|
|
92
92
|
Blockly.Msg["DUPLICATE_COMMENT"] = "Dupliser kommentar";
|
|
93
93
|
Blockly.Msg["EDIT_BLOCK_CONTENTS"] = "Edit Block contents"; // untranslated
|
|
94
94
|
Blockly.Msg["ENABLE_BLOCK"] = "Aktiver blokk";
|
|
95
|
+
Blockly.Msg["ENTER_KEY"] = "Enter"; // untranslated
|
|
95
96
|
Blockly.Msg["EXPAND_ALL"] = "Utvid blokker";
|
|
96
97
|
Blockly.Msg["EXPAND_BLOCK"] = "Utvid blokk";
|
|
97
98
|
Blockly.Msg["EXTERNAL_INPUTS"] = "Eksterne kilder";
|
|
98
99
|
Blockly.Msg["HELP"] = "Hjelp";
|
|
99
100
|
Blockly.Msg["HELP_PROMPT"] = "Press %1 for help on keyboard controls"; // untranslated
|
|
100
101
|
Blockly.Msg["INLINE_INPUTS"] = "Interne kilder";
|
|
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"] = "opprett en tom liste";
|
|
@@ -432,6 +435,11 @@ Blockly.Msg["VARIABLE_ALREADY_EXISTS_FOR_A_PARAMETER"] = "En variabel med navn
|
|
|
432
435
|
Blockly.Msg["WINDOWS"] = "Windows"; // untranslated
|
|
433
436
|
Blockly.Msg["WORKSPACE_ARIA_LABEL"] = "Blockly-arbeidsrom";
|
|
434
437
|
Blockly.Msg["WORKSPACE_COMMENT_DEFAULT_TEXT"] = "Si noe …";
|
|
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/nb.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
|
} = nb;
|
package/msg/ne.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"] = "'%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/ne.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
|
} = ne;
|
package/msg/nl.js
CHANGED
|
@@ -92,16 +92,19 @@ Blockly.Msg["DUPLICATE_BLOCK"] = "Dupliceren";
|
|
|
92
92
|
Blockly.Msg["DUPLICATE_COMMENT"] = "Opmerking dupliceren";
|
|
93
93
|
Blockly.Msg["EDIT_BLOCK_CONTENTS"] = "Edit Block contents"; // untranslated
|
|
94
94
|
Blockly.Msg["ENABLE_BLOCK"] = "Blok inschakelen";
|
|
95
|
+
Blockly.Msg["ENTER_KEY"] = "Enter"; // untranslated
|
|
95
96
|
Blockly.Msg["EXPAND_ALL"] = "Blokken uitvouwen";
|
|
96
97
|
Blockly.Msg["EXPAND_BLOCK"] = "Blok uitvouwen";
|
|
97
98
|
Blockly.Msg["EXTERNAL_INPUTS"] = "Externe invoer";
|
|
98
99
|
Blockly.Msg["HELP"] = "Hulp";
|
|
99
100
|
Blockly.Msg["HELP_PROMPT"] = "Press %1 for help on keyboard controls"; // untranslated
|
|
100
101
|
Blockly.Msg["INLINE_INPUTS"] = "Inline invoer";
|
|
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"] = "maak een lege lijst";
|
|
@@ -432,6 +435,11 @@ Blockly.Msg["VARIABLE_ALREADY_EXISTS_FOR_A_PARAMETER"] = "Een variabele met de n
|
|
|
432
435
|
Blockly.Msg["WINDOWS"] = "Windows"; // untranslated
|
|
433
436
|
Blockly.Msg["WORKSPACE_ARIA_LABEL"] = "Blockly werkruimte";
|
|
434
437
|
Blockly.Msg["WORKSPACE_COMMENT_DEFAULT_TEXT"] = "Zeg iets...";
|
|
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/nl.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
|
} = nl;
|
package/msg/oc.js
CHANGED
|
@@ -92,16 +92,19 @@ Blockly.Msg["DUPLICATE_BLOCK"] = "Duplicar";
|
|
|
92
92
|
Blockly.Msg["DUPLICATE_COMMENT"] = "Duplicar lo comentari";
|
|
93
93
|
Blockly.Msg["EDIT_BLOCK_CONTENTS"] = "Edit Block contents"; // untranslated
|
|
94
94
|
Blockly.Msg["ENABLE_BLOCK"] = "Activar lo blòt";
|
|
95
|
+
Blockly.Msg["ENTER_KEY"] = "Enter"; // untranslated
|
|
95
96
|
Blockly.Msg["EXPAND_ALL"] = "Desvolopar los blòts";
|
|
96
97
|
Blockly.Msg["EXPAND_BLOCK"] = "Desvolopar lo blòt";
|
|
97
98
|
Blockly.Msg["EXTERNAL_INPUTS"] = "Entradas extèrnas";
|
|
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 en linha";
|
|
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"] = "crear una lista voida";
|
|
@@ -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/oc.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
|
} = oc;
|
package/msg/olo.js
CHANGED
|
@@ -92,16 +92,19 @@ Blockly.Msg["DUPLICATE_BLOCK"] = "Kopiiruija";
|
|
|
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"] = "Kyzy abuu";
|
|
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/olo.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
|
} = olo;
|
package/msg/pa.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"] = "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/pa.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
|
} = pa;
|
package/msg/pl.js
CHANGED
|
@@ -92,16 +92,19 @@ Blockly.Msg["DUPLICATE_BLOCK"] = "Duplikat";
|
|
|
92
92
|
Blockly.Msg["DUPLICATE_COMMENT"] = "Zduplikowany komentarz";
|
|
93
93
|
Blockly.Msg["EDIT_BLOCK_CONTENTS"] = "Edit Block contents"; // untranslated
|
|
94
94
|
Blockly.Msg["ENABLE_BLOCK"] = "Włącz Blok";
|
|
95
|
+
Blockly.Msg["ENTER_KEY"] = "Enter"; // untranslated
|
|
95
96
|
Blockly.Msg["EXPAND_ALL"] = "Rozwiń Bloki";
|
|
96
97
|
Blockly.Msg["EXPAND_BLOCK"] = "Rozwiń Klocek";
|
|
97
98
|
Blockly.Msg["EXTERNAL_INPUTS"] = "Zewnętrzne Wejścia";
|
|
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"] = "Wbudowane Wejścia";
|
|
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"] = "utwórz pustą listę";
|
|
@@ -432,6 +435,11 @@ Blockly.Msg["VARIABLE_ALREADY_EXISTS_FOR_A_PARAMETER"] = "Zmienna o nazwie '%1'
|
|
|
432
435
|
Blockly.Msg["WINDOWS"] = "Windows"; // untranslated
|
|
433
436
|
Blockly.Msg["WORKSPACE_ARIA_LABEL"] = "Obszar roboczy Blockly";
|
|
434
437
|
Blockly.Msg["WORKSPACE_COMMENT_DEFAULT_TEXT"] = "Powiedz coś...";
|
|
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/pl.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
|
} = pl;
|
package/msg/pms.js
CHANGED
|
@@ -92,16 +92,19 @@ Blockly.Msg["DUPLICATE_BLOCK"] = "Dupliché";
|
|
|
92
92
|
Blockly.Msg["DUPLICATE_COMMENT"] = "Dupliché ël coment";
|
|
93
93
|
Blockly.Msg["EDIT_BLOCK_CONTENTS"] = "Edit Block contents"; // untranslated
|
|
94
94
|
Blockly.Msg["ENABLE_BLOCK"] = "Ativé ël blòch";
|
|
95
|
+
Blockly.Msg["ENTER_KEY"] = "Enter"; // untranslated
|
|
95
96
|
Blockly.Msg["EXPAND_ALL"] = "Dësvlupé ij blòch";
|
|
96
97
|
Blockly.Msg["EXPAND_BLOCK"] = "Dësvlupé ël blòch";
|
|
97
98
|
Blockly.Msg["EXTERNAL_INPUTS"] = "Imission esterne";
|
|
98
99
|
Blockly.Msg["HELP"] = "Agiut";
|
|
99
100
|
Blockly.Msg["HELP_PROMPT"] = "Press %1 for help on keyboard controls"; // untranslated
|
|
100
101
|
Blockly.Msg["INLINE_INPUTS"] = "Imission an linia";
|
|
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"] = "creé na lista veuida";
|
|
@@ -432,6 +435,11 @@ Blockly.Msg["VARIABLE_ALREADY_EXISTS_FOR_A_PARAMETER"] = "Na variàbil ciamà '%
|
|
|
432
435
|
Blockly.Msg["WINDOWS"] = "Windows"; // untranslated
|
|
433
436
|
Blockly.Msg["WORKSPACE_ARIA_LABEL"] = "Spassi ëd travaj ëd Blockly";
|
|
434
437
|
Blockly.Msg["WORKSPACE_COMMENT_DEFAULT_TEXT"] = "Dì cheicòs...";
|
|
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/pms.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
|
} = pms;
|
package/msg/ps.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"] = "بلاک چارنول";
|
|
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/ps.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
|
} = ps;
|