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/th.js
CHANGED
|
@@ -92,16 +92,19 @@ Blockly.Msg["DUPLICATE_BLOCK"] = "ทำสำเนา";
|
|
|
92
92
|
Blockly.Msg["DUPLICATE_COMMENT"] = "ทำสำเนาความเห็น";
|
|
93
93
|
Blockly.Msg["EDIT_BLOCK_CONTENTS"] = "Edit Block contents"; // untranslated
|
|
94
94
|
Blockly.Msg["ENABLE_BLOCK"] = "เปิดใช้งานบล็อก";
|
|
95
|
+
Blockly.Msg["ENTER_KEY"] = "Enter"; // untranslated
|
|
95
96
|
Blockly.Msg["EXPAND_ALL"] = "ขยายบล็อก";
|
|
96
97
|
Blockly.Msg["EXPAND_BLOCK"] = "ขยายบล็อก";
|
|
97
98
|
Blockly.Msg["EXTERNAL_INPUTS"] = "อินพุตภายนอก";
|
|
98
99
|
Blockly.Msg["HELP"] = "ช่วยเหลือ";
|
|
99
100
|
Blockly.Msg["HELP_PROMPT"] = "Press %1 for help on keyboard controls"; // untranslated
|
|
100
101
|
Blockly.Msg["INLINE_INPUTS"] = "อินพุตในบรรทัด";
|
|
102
|
+
Blockly.Msg["KEYBOARD_NAV_BLOCK_NAVIGATION_HINT"] = "Use the right arrow key to navigate inside of blocks"; // untranslated
|
|
101
103
|
Blockly.Msg["KEYBOARD_NAV_CONSTRAINED_MOVE_HINT"] = "Use the arrow keys to move, then %1 to accept the position"; // untranslated
|
|
102
104
|
Blockly.Msg["KEYBOARD_NAV_COPIED_HINT"] = "Copied. Press %1 to paste."; // untranslated
|
|
103
105
|
Blockly.Msg["KEYBOARD_NAV_CUT_HINT"] = "Cut. Press %1 to paste."; // untranslated
|
|
104
106
|
Blockly.Msg["KEYBOARD_NAV_UNCONSTRAINED_MOVE_HINT"] = "Hold %1 and use arrow keys to move freely, then %2 to accept the position"; // untranslated
|
|
107
|
+
Blockly.Msg["KEYBOARD_NAV_WORKSPACE_NAVIGATION_HINT"] = "Use the arrow keys to navigate"; // untranslated
|
|
105
108
|
Blockly.Msg["LINUX"] = "Linux"; // untranslated
|
|
106
109
|
Blockly.Msg["LISTS_CREATE_EMPTY_HELPURL"] = "https://github.com/RaspberryPiFoundation/blockly/wiki/Lists#create-empty-list"; // untranslated
|
|
107
110
|
Blockly.Msg["LISTS_CREATE_EMPTY_TITLE"] = "สร้างรายการเปล่า";
|
|
@@ -432,6 +435,11 @@ Blockly.Msg["VARIABLE_ALREADY_EXISTS_FOR_A_PARAMETER"] = "A variable named '%1'
|
|
|
432
435
|
Blockly.Msg["WINDOWS"] = "Windows"; // untranslated
|
|
433
436
|
Blockly.Msg["WORKSPACE_ARIA_LABEL"] = "พื้นที่ทำงาน Blockly";
|
|
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/th.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
|
} = th;
|
package/msg/ti.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"] = "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/ti.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
|
} = ti;
|
package/msg/tl.js
CHANGED
|
@@ -92,16 +92,19 @@ Blockly.Msg["DUPLICATE_BLOCK"] = "I-duplicate";
|
|
|
92
92
|
Blockly.Msg["DUPLICATE_COMMENT"] = "I-duplicate ang Komento";
|
|
93
93
|
Blockly.Msg["EDIT_BLOCK_CONTENTS"] = "Edit Block contents"; // untranslated
|
|
94
94
|
Blockly.Msg["ENABLE_BLOCK"] = "I-enable ang Block";
|
|
95
|
+
Blockly.Msg["ENTER_KEY"] = "Enter"; // untranslated
|
|
95
96
|
Blockly.Msg["EXPAND_ALL"] = "Buksan ang mga Block";
|
|
96
97
|
Blockly.Msg["EXPAND_BLOCK"] = "Buksan ang Block";
|
|
97
98
|
Blockly.Msg["EXTERNAL_INPUTS"] = "Input sa Labas";
|
|
98
99
|
Blockly.Msg["HELP"] = "Tulong";
|
|
99
100
|
Blockly.Msg["HELP_PROMPT"] = "Press %1 for help on keyboard controls"; // untranslated
|
|
100
101
|
Blockly.Msg["INLINE_INPUTS"] = "Input sa Linya";
|
|
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"] = "Gumawa ng walang laman na list";
|
|
@@ -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/tl.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
|
} = tl;
|
package/msg/tlh.js
CHANGED
|
@@ -92,16 +92,19 @@ Blockly.Msg["DUPLICATE_BLOCK"] = "velqa' chenmoH";
|
|
|
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"] = "ngogh QotlhHa'";
|
|
95
|
+
Blockly.Msg["ENTER_KEY"] = "Enter"; // untranslated
|
|
95
96
|
Blockly.Msg["EXPAND_ALL"] = "ngoghmey DejHa'moH";
|
|
96
97
|
Blockly.Msg["EXPAND_BLOCK"] = "ngogh DejHa'moH";
|
|
97
98
|
Blockly.Msg["EXTERNAL_INPUTS"] = "Hur rar";
|
|
98
99
|
Blockly.Msg["HELP"] = "QaH";
|
|
99
100
|
Blockly.Msg["HELP_PROMPT"] = "Press %1 for help on keyboard controls"; // untranslated
|
|
100
101
|
Blockly.Msg["INLINE_INPUTS"] = "qoD rar";
|
|
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"] = "tetlh chIm";
|
|
@@ -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/tlh.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
|
} = tlh;
|
package/msg/tr.js
CHANGED
|
@@ -92,16 +92,19 @@ Blockly.Msg["DUPLICATE_BLOCK"] = "Yinele";
|
|
|
92
92
|
Blockly.Msg["DUPLICATE_COMMENT"] = "Yinelenen Yorum";
|
|
93
93
|
Blockly.Msg["EDIT_BLOCK_CONTENTS"] = "Edit Block contents"; // untranslated
|
|
94
94
|
Blockly.Msg["ENABLE_BLOCK"] = "Bloğu Etkinleştir";
|
|
95
|
+
Blockly.Msg["ENTER_KEY"] = "Enter"; // untranslated
|
|
95
96
|
Blockly.Msg["EXPAND_ALL"] = "Blokları Genişlet";
|
|
96
97
|
Blockly.Msg["EXPAND_BLOCK"] = "Bloğu Genişlet";
|
|
97
98
|
Blockly.Msg["EXTERNAL_INPUTS"] = "Harici Girişler";
|
|
98
99
|
Blockly.Msg["HELP"] = "Yardım";
|
|
99
100
|
Blockly.Msg["HELP_PROMPT"] = "Press %1 for help on keyboard controls"; // untranslated
|
|
100
101
|
Blockly.Msg["INLINE_INPUTS"] = "Satır içi Girişler";
|
|
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"] = "boş liste oluştur";
|
|
@@ -432,6 +435,11 @@ Blockly.Msg["VARIABLE_ALREADY_EXISTS_FOR_A_PARAMETER"] = "'%1' adlı bir değiş
|
|
|
432
435
|
Blockly.Msg["WINDOWS"] = "Windows"; // untranslated
|
|
433
436
|
Blockly.Msg["WORKSPACE_ARIA_LABEL"] = "Blockly Çalışma Alanı";
|
|
434
437
|
Blockly.Msg["WORKSPACE_COMMENT_DEFAULT_TEXT"] = "Bir şeyler söyle...";
|
|
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/tr.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
|
} = tr;
|
package/msg/ug-arab.js
CHANGED
|
@@ -92,16 +92,19 @@ Blockly.Msg["DUPLICATE_BLOCK"] = "كۆچۈرۈش";
|
|
|
92
92
|
Blockly.Msg["DUPLICATE_COMMENT"] = "تەكرار باھا";
|
|
93
93
|
Blockly.Msg["EDIT_BLOCK_CONTENTS"] = "Edit Block contents"; // untranslated
|
|
94
94
|
Blockly.Msg["ENABLE_BLOCK"] = "قوزغىتىلغان بۆلەك";
|
|
95
|
+
Blockly.Msg["ENTER_KEY"] = "Enter"; // untranslated
|
|
95
96
|
Blockly.Msg["EXPAND_ALL"] = "ئېچىلىش بۆلىكى";
|
|
96
97
|
Blockly.Msg["EXPAND_BLOCK"] = "ئېچىلىش بۆلىكى";
|
|
97
98
|
Blockly.Msg["EXTERNAL_INPUTS"] = "سىرتقى كىرگۈزۈش";
|
|
98
99
|
Blockly.Msg["HELP"] = "ياردەم";
|
|
99
100
|
Blockly.Msg["HELP_PROMPT"] = "Press %1 for help on keyboard controls"; // untranslated
|
|
100
101
|
Blockly.Msg["INLINE_INPUTS"] = "تاق قۇرلۇق كىرگۈزۈش";
|
|
102
|
+
Blockly.Msg["KEYBOARD_NAV_BLOCK_NAVIGATION_HINT"] = "Use the right arrow key to navigate inside of blocks"; // untranslated
|
|
101
103
|
Blockly.Msg["KEYBOARD_NAV_CONSTRAINED_MOVE_HINT"] = "Use the arrow keys to move, then %1 to accept the position"; // untranslated
|
|
102
104
|
Blockly.Msg["KEYBOARD_NAV_COPIED_HINT"] = "Copied. Press %1 to paste."; // untranslated
|
|
103
105
|
Blockly.Msg["KEYBOARD_NAV_CUT_HINT"] = "Cut. Press %1 to paste."; // untranslated
|
|
104
106
|
Blockly.Msg["KEYBOARD_NAV_UNCONSTRAINED_MOVE_HINT"] = "Hold %1 and use arrow keys to move freely, then %2 to accept the position"; // untranslated
|
|
107
|
+
Blockly.Msg["KEYBOARD_NAV_WORKSPACE_NAVIGATION_HINT"] = "Use the arrow keys to navigate"; // untranslated
|
|
105
108
|
Blockly.Msg["LINUX"] = "Linux"; // untranslated
|
|
106
109
|
Blockly.Msg["LISTS_CREATE_EMPTY_HELPURL"] = "https://github.com/RaspberryPiFoundation/blockly/wiki/Lists#create-empty-list"; // untranslated
|
|
107
110
|
Blockly.Msg["LISTS_CREATE_EMPTY_TITLE"] = "create empty list"; // untranslated
|
|
@@ -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/ug-arab.mjs
CHANGED
|
@@ -432,6 +432,7 @@ export const {
|
|
|
432
432
|
COMMAND_KEY,
|
|
433
433
|
OPTION_KEY,
|
|
434
434
|
ALT_KEY,
|
|
435
|
+
ENTER_KEY,
|
|
435
436
|
CUT_SHORTCUT,
|
|
436
437
|
COPY_SHORTCUT,
|
|
437
438
|
PASTE_SHORTCUT,
|
|
@@ -443,4 +444,11 @@ export const {
|
|
|
443
444
|
KEYBOARD_NAV_CONSTRAINED_MOVE_HINT,
|
|
444
445
|
KEYBOARD_NAV_COPIED_HINT,
|
|
445
446
|
KEYBOARD_NAV_CUT_HINT,
|
|
447
|
+
WORKSPACE_CONTENTS_BLOCKS_MANY,
|
|
448
|
+
WORKSPACE_CONTENTS_BLOCKS_ONE,
|
|
449
|
+
WORKSPACE_CONTENTS_BLOCKS_ZERO,
|
|
450
|
+
WORKSPACE_CONTENTS_COMMENTS_MANY,
|
|
451
|
+
WORKSPACE_CONTENTS_COMMENTS_ONE,
|
|
452
|
+
KEYBOARD_NAV_BLOCK_NAVIGATION_HINT,
|
|
453
|
+
KEYBOARD_NAV_WORKSPACE_NAVIGATION_HINT,
|
|
446
454
|
} = ug_arab;
|
package/msg/uk.js
CHANGED
|
@@ -92,16 +92,19 @@ Blockly.Msg["DUPLICATE_BLOCK"] = "Дублювати";
|
|
|
92
92
|
Blockly.Msg["DUPLICATE_COMMENT"] = "Дублювати примітку";
|
|
93
93
|
Blockly.Msg["EDIT_BLOCK_CONTENTS"] = "Edit Block contents"; // untranslated
|
|
94
94
|
Blockly.Msg["ENABLE_BLOCK"] = "Увімкнути блок";
|
|
95
|
+
Blockly.Msg["ENTER_KEY"] = "Enter"; // untranslated
|
|
95
96
|
Blockly.Msg["EXPAND_ALL"] = "Розгорнути блоки";
|
|
96
97
|
Blockly.Msg["EXPAND_BLOCK"] = "Розгорнути блок";
|
|
97
98
|
Blockly.Msg["EXTERNAL_INPUTS"] = "Зовнішні входи";
|
|
98
99
|
Blockly.Msg["HELP"] = "Довідка";
|
|
99
100
|
Blockly.Msg["HELP_PROMPT"] = "Press %1 for help on keyboard controls"; // untranslated
|
|
100
101
|
Blockly.Msg["INLINE_INPUTS"] = "Вбудовані входи";
|
|
102
|
+
Blockly.Msg["KEYBOARD_NAV_BLOCK_NAVIGATION_HINT"] = "Use the right arrow key to navigate inside of blocks"; // untranslated
|
|
101
103
|
Blockly.Msg["KEYBOARD_NAV_CONSTRAINED_MOVE_HINT"] = "Use the arrow keys to move, then %1 to accept the position"; // untranslated
|
|
102
104
|
Blockly.Msg["KEYBOARD_NAV_COPIED_HINT"] = "Copied. Press %1 to paste."; // untranslated
|
|
103
105
|
Blockly.Msg["KEYBOARD_NAV_CUT_HINT"] = "Cut. Press %1 to paste."; // untranslated
|
|
104
106
|
Blockly.Msg["KEYBOARD_NAV_UNCONSTRAINED_MOVE_HINT"] = "Hold %1 and use arrow keys to move freely, then %2 to accept the position"; // untranslated
|
|
107
|
+
Blockly.Msg["KEYBOARD_NAV_WORKSPACE_NAVIGATION_HINT"] = "Use the arrow keys to navigate"; // untranslated
|
|
105
108
|
Blockly.Msg["LINUX"] = "Linux"; // untranslated
|
|
106
109
|
Blockly.Msg["LISTS_CREATE_EMPTY_HELPURL"] = "https://github.com/RaspberryPiFoundation/blockly/wiki/Lists#create-empty-list"; // untranslated
|
|
107
110
|
Blockly.Msg["LISTS_CREATE_EMPTY_TITLE"] = "створити порожній список";
|
|
@@ -432,6 +435,11 @@ Blockly.Msg["VARIABLE_ALREADY_EXISTS_FOR_A_PARAMETER"] = "A variable named '%1'
|
|
|
432
435
|
Blockly.Msg["WINDOWS"] = "Windows"; // untranslated
|
|
433
436
|
Blockly.Msg["WORKSPACE_ARIA_LABEL"] = "Робоча область Blockly";
|
|
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/uk.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
|
} = uk;
|
package/msg/ur.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"] = "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/ur.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
|
} = ur;
|
package/msg/uz.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"] = "Bloklashni yoqish";
|
|
95
|
+
Blockly.Msg["ENTER_KEY"] = "Enter"; // untranslated
|
|
95
96
|
Blockly.Msg["EXPAND_ALL"] = "Bloklarni kengaytirish";
|
|
96
97
|
Blockly.Msg["EXPAND_BLOCK"] = "Blokni kengaytirish";
|
|
97
98
|
Blockly.Msg["EXTERNAL_INPUTS"] = "External Inputs"; // untranslated
|
|
98
99
|
Blockly.Msg["HELP"] = "Yordam";
|
|
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/uz.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
|
} = uz;
|
package/msg/vi.js
CHANGED
|
@@ -92,16 +92,19 @@ Blockly.Msg["DUPLICATE_BLOCK"] = "Tạo Bản Sao";
|
|
|
92
92
|
Blockly.Msg["DUPLICATE_COMMENT"] = "Bình luận trùng";
|
|
93
93
|
Blockly.Msg["EDIT_BLOCK_CONTENTS"] = "Edit Block contents"; // untranslated
|
|
94
94
|
Blockly.Msg["ENABLE_BLOCK"] = "Phục Hồi Tác Dụng";
|
|
95
|
+
Blockly.Msg["ENTER_KEY"] = "Enter"; // untranslated
|
|
95
96
|
Blockly.Msg["EXPAND_ALL"] = "Mở Lớn Mọi Mảnh";
|
|
96
97
|
Blockly.Msg["EXPAND_BLOCK"] = "Mở Lớn Mảnh";
|
|
97
98
|
Blockly.Msg["EXTERNAL_INPUTS"] = "Chỗ Gắn Bên Ngoài";
|
|
98
99
|
Blockly.Msg["HELP"] = "Trợ Giúp";
|
|
99
100
|
Blockly.Msg["HELP_PROMPT"] = "Press %1 for help on keyboard controls"; // untranslated
|
|
100
101
|
Blockly.Msg["INLINE_INPUTS"] = "Chỗ Gắn Cùng Dòng";
|
|
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"] = "tạo danh sách trống";
|
|
@@ -432,6 +435,11 @@ Blockly.Msg["VARIABLE_ALREADY_EXISTS_FOR_A_PARAMETER"] = "Một biến có tên
|
|
|
432
435
|
Blockly.Msg["WINDOWS"] = "Windows"; // untranslated
|
|
433
436
|
Blockly.Msg["WORKSPACE_ARIA_LABEL"] = "Không gian làm việc Blockly";
|
|
434
437
|
Blockly.Msg["WORKSPACE_COMMENT_DEFAULT_TEXT"] = "Hãy nói gì đó...";
|
|
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/vi.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
|
} = vi;
|
package/msg/xmf.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"] = "create empty list"; // untranslated
|
|
@@ -432,6 +435,11 @@ Blockly.Msg["VARIABLE_ALREADY_EXISTS_FOR_A_PARAMETER"] = "მათირე ჯ
|
|
|
432
435
|
Blockly.Msg["WINDOWS"] = "Windows"; // untranslated
|
|
433
436
|
Blockly.Msg["WORKSPACE_ARIA_LABEL"] = "Blockly 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/xmf.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
|
} = xmf;
|