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/ja.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"] = "'%2' 手続きの '%1'
|
|
|
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/ja.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
|
} = ja;
|
package/msg/ka.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"] = "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/ka.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
|
} = ka;
|
package/msg/kab.js
CHANGED
|
@@ -92,16 +92,19 @@ Blockly.Msg["DUPLICATE_BLOCK"] = "Sleg";
|
|
|
92
92
|
Blockly.Msg["DUPLICATE_COMMENT"] = "Sleg awennit";
|
|
93
93
|
Blockly.Msg["EDIT_BLOCK_CONTENTS"] = "Edit Block contents"; // untranslated
|
|
94
94
|
Blockly.Msg["ENABLE_BLOCK"] = "Sens iḥedran";
|
|
95
|
+
Blockly.Msg["ENTER_KEY"] = "Enter"; // untranslated
|
|
95
96
|
Blockly.Msg["EXPAND_ALL"] = "Snefli iḥedran";
|
|
96
97
|
Blockly.Msg["EXPAND_BLOCK"] = "Snefli iḥder";
|
|
97
98
|
Blockly.Msg["EXTERNAL_INPUTS"] = "Inekcam izɣarayen";
|
|
98
99
|
Blockly.Msg["HELP"] = "Tallelt";
|
|
99
100
|
Blockly.Msg["HELP_PROMPT"] = "Press %1 for help on keyboard controls"; // untranslated
|
|
100
101
|
Blockly.Msg["INLINE_INPUTS"] = "Inekcam srid";
|
|
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"] = "rnu tabdart tilemt";
|
|
@@ -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"] = "Tallunt n umahel Blockly";
|
|
434
437
|
Blockly.Msg["WORKSPACE_COMMENT_DEFAULT_TEXT"] = "Ini kra...";
|
|
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/kab.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
|
} = kab;
|
package/msg/kbd-cyrl.js
CHANGED
|
@@ -92,16 +92,19 @@ Blockly.Msg["DUPLICATE_BLOCK"] = "ЩIэтхыкIын";
|
|
|
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"] = "Блокыр щIэгъэнэн";
|
|
95
|
+
Blockly.Msg["ENTER_KEY"] = "Enter"; // untranslated
|
|
95
96
|
Blockly.Msg["EXPAND_ALL"] = "Блокхэр зэкIуэц1ыхын";
|
|
96
97
|
Blockly.Msg["EXPAND_BLOCK"] = "Блокыр зэкIуэц1ыхын";
|
|
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/kbd-cyrl.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
|
} = kbd_cyrl;
|
package/msg/km.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"] = "Expand Blocks"; // untranslated
|
|
96
97
|
Blockly.Msg["EXPAND_BLOCK"] = "Expand Block"; // untranslated
|
|
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/km.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
|
} = km;
|
package/msg/kn.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"] = "ಸಾಲಿನಲ್ಲಿರುವ ಒಳಾoಶಗಳು";
|
|
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"] = "ಬ್ಲಾಕ್ಲಿ ಕಾರ್ಯಕ್ಷೇತ್ರ";
|
|
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/kn.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
|
} = kn;
|
package/msg/ko.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 워크스페이스";
|
|
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/ko.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
|
} = ko;
|
package/msg/ksh.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"] = "Donn dat Klözje enschallde";
|
|
95
|
+
Blockly.Msg["ENTER_KEY"] = "Enter"; // untranslated
|
|
95
96
|
Blockly.Msg["EXPAND_ALL"] = "Donn di Klözjer opfallde";
|
|
96
97
|
Blockly.Msg["EXPAND_BLOCK"] = "Donn dat Klözje opfallde";
|
|
97
98
|
Blockly.Msg["EXTERNAL_INPUTS"] = "External Inputs"; // untranslated
|
|
98
99
|
Blockly.Msg["HELP"] = "Hölp";
|
|
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/ksh.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
|
} = ksh;
|
package/msg/ku-latn.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"] = "Alîkarî";
|
|
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"] = "Tiştek bibêje...";
|
|
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/ku-latn.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
|
} = ku_latn;
|
package/msg/ky.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/ky.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
|
} = ky;
|
package/msg/la.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/la.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
|
} = la;
|