blockly 12.5.0 → 13.0.0-beta.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/blockly.min.js +653 -541
- package/blockly.mjs +13 -5
- package/blockly_compressed.js +618 -515
- package/blockly_compressed.js.map +1 -1
- package/blocks_compressed.js +16 -16
- package/blocks_compressed.js.map +1 -1
- package/core/block.d.ts +1 -1
- package/core/block_svg.d.ts +39 -16
- package/core/blockly.d.ts +21 -16
- package/core/bubbles/bubble.d.ts +17 -2
- package/core/bubbles/mini_workspace_bubble.d.ts +5 -0
- package/core/bubbles/textinput_bubble.d.ts +5 -0
- package/core/comments/comment_editor.d.ts +2 -2
- package/core/comments/rendered_workspace_comment.d.ts +6 -1
- package/core/common.d.ts +1 -1
- package/core/css.d.ts +2 -1
- package/core/dragging/block_drag_strategy.d.ts +84 -14
- package/core/dragging/bubble_drag_strategy.d.ts +5 -4
- package/core/dragging/comment_drag_strategy.d.ts +4 -4
- package/core/dragging/dragger.d.ts +13 -14
- package/core/events/events_block_create.d.ts +0 -3
- package/core/events/events_block_delete.d.ts +0 -3
- package/core/events/events_comment_create.d.ts +0 -3
- package/core/events/events_comment_delete.d.ts +0 -3
- package/core/field.d.ts +69 -0
- package/core/flyout_base.d.ts +1 -125
- package/core/flyout_button.d.ts +9 -0
- package/core/flyout_horizontal.d.ts +0 -11
- package/core/flyout_vertical.d.ts +0 -11
- package/core/gesture.d.ts +0 -12
- package/core/hints.d.ts +44 -0
- package/core/icons/icon.d.ts +6 -0
- package/core/inputs/input.d.ts +7 -1
- package/core/interfaces/i_bounded_element.d.ts +7 -0
- package/core/interfaces/i_bubble.d.ts +3 -2
- package/core/interfaces/i_collapsible_toolbox_item.d.ts +5 -1
- package/core/interfaces/i_draggable.d.ts +22 -17
- package/core/interfaces/i_dragger.d.ts +19 -10
- package/core/interfaces/i_flyout.d.ts +1 -31
- package/core/interfaces/i_focusable_node.d.ts +6 -0
- package/core/interfaces/i_focusable_tree.d.ts +8 -0
- package/core/interfaces/i_json_block_definition.d.ts +102 -0
- package/core/interfaces/i_navigation_policy.d.ts +12 -0
- package/core/interfaces/i_selectable.d.ts +2 -2
- package/core/interfaces/i_selectable_toolbox_item.d.ts +3 -3
- package/core/interfaces/i_toolbox.d.ts +4 -0
- package/core/interfaces/i_toolbox_item.d.ts +6 -0
- package/core/keyboard_nav/keyboard_mover.d.ts +138 -0
- package/core/keyboard_nav/move_indicator.d.ts +35 -0
- package/core/keyboard_nav/{block_comment_navigation_policy.d.ts → navigation_policies/block_comment_navigation_policy.d.ts} +10 -3
- package/core/keyboard_nav/{block_navigation_policy.d.ts → navigation_policies/block_navigation_policy.d.ts} +17 -25
- package/core/keyboard_nav/{comment_bar_button_navigation_policy.d.ts → navigation_policies/comment_bar_button_navigation_policy.d.ts} +10 -3
- package/core/keyboard_nav/{comment_editor_navigation_policy.d.ts → navigation_policies/comment_editor_navigation_policy.d.ts} +10 -3
- package/core/keyboard_nav/{connection_navigation_policy.d.ts → navigation_policies/connection_navigation_policy.d.ts} +11 -16
- package/core/keyboard_nav/{field_navigation_policy.d.ts → navigation_policies/field_navigation_policy.d.ts} +10 -3
- package/core/keyboard_nav/{flyout_button_navigation_policy.d.ts → navigation_policies/flyout_button_navigation_policy.d.ts} +10 -3
- package/core/keyboard_nav/{flyout_separator_navigation_policy.d.ts → navigation_policies/flyout_separator_navigation_policy.d.ts} +9 -3
- package/core/keyboard_nav/{icon_navigation_policy.d.ts → navigation_policies/icon_navigation_policy.d.ts} +10 -3
- package/core/keyboard_nav/navigation_policies/toolbox_item_navigation_policy.d.ts +64 -0
- package/core/keyboard_nav/{workspace_comment_navigation_policy.d.ts → navigation_policies/workspace_comment_navigation_policy.d.ts} +14 -9
- package/core/keyboard_nav/{workspace_navigation_policy.d.ts → navigation_policies/workspace_navigation_policy.d.ts} +10 -3
- package/core/keyboard_nav/navigators/flyout_navigator.d.ts +63 -0
- package/core/keyboard_nav/navigators/navigator.d.ts +225 -0
- package/core/keyboard_nav/navigators/toolbox_navigator.d.ts +70 -0
- package/core/registry.d.ts +0 -2
- package/core/renderers/common/constants.d.ts +4 -7
- package/core/renderers/common/i_path_object.d.ts +8 -0
- package/core/renderers/common/path_object.d.ts +5 -14
- package/core/renderers/common/renderer.d.ts +3 -3
- package/core/renderers/zelos/constants.d.ts +1 -14
- package/core/renderers/zelos/measurables/bottom_row.d.ts +1 -1
- package/core/renderers/zelos/measurables/top_row.d.ts +1 -1
- package/core/renderers/zelos/path_object.d.ts +0 -3
- package/core/renderers/zelos/renderer.d.ts +8 -0
- package/core/shortcut_items.d.ts +63 -1
- package/core/theme.d.ts +0 -2
- package/core/toast.d.ts +2 -11
- package/core/toolbox/category.d.ts +5 -0
- package/core/toolbox/separator.d.ts +4 -0
- package/core/toolbox/toolbox.d.ts +12 -22
- package/core/toolbox/toolbox_item.d.ts +4 -0
- package/core/utils/aria.d.ts +292 -23
- package/core/utils/shortcut_formatting.d.ts +24 -0
- package/core/utils/useragent.d.ts +1 -0
- package/core/workspace_audio.d.ts +23 -0
- package/core/workspace_svg.d.ts +8 -50
- package/dart_compressed.js +9 -9
- package/dart_compressed.js.map +1 -1
- package/index.mjs +13 -5
- package/javascript_compressed.js +11 -10
- package/javascript_compressed.js.map +1 -1
- package/lua_compressed.js +7 -7
- package/lua_compressed.js.map +1 -1
- package/msg/ab.js +8 -0
- package/msg/ab.mjs +8 -0
- package/msg/ace.js +8 -0
- package/msg/ace.mjs +8 -0
- package/msg/af.js +8 -0
- package/msg/af.mjs +8 -0
- package/msg/am.js +8 -0
- package/msg/am.mjs +8 -0
- package/msg/ar.js +8 -0
- package/msg/ar.mjs +8 -0
- package/msg/ast.js +8 -0
- package/msg/ast.mjs +8 -0
- package/msg/az.js +8 -0
- package/msg/az.mjs +8 -0
- package/msg/ba.js +8 -0
- package/msg/ba.mjs +8 -0
- package/msg/bcc.js +8 -0
- package/msg/bcc.mjs +8 -0
- package/msg/be-tarask.js +8 -0
- package/msg/be-tarask.mjs +8 -0
- package/msg/be.js +8 -0
- package/msg/be.mjs +8 -0
- package/msg/bg.js +8 -0
- package/msg/bg.mjs +8 -0
- package/msg/bn.js +8 -0
- package/msg/bn.mjs +8 -0
- package/msg/br.js +8 -0
- package/msg/br.mjs +8 -0
- package/msg/bs.js +8 -0
- package/msg/bs.mjs +8 -0
- package/msg/ca.js +8 -0
- package/msg/ca.mjs +8 -0
- package/msg/cdo.js +8 -0
- package/msg/cdo.mjs +8 -0
- package/msg/ce.js +8 -0
- package/msg/ce.mjs +8 -0
- package/msg/cs.js +8 -0
- package/msg/cs.mjs +8 -0
- package/msg/da.js +8 -0
- package/msg/da.mjs +8 -0
- package/msg/de.js +8 -0
- package/msg/de.mjs +8 -0
- package/msg/diq.js +8 -0
- package/msg/diq.mjs +8 -0
- package/msg/dtp.js +8 -0
- package/msg/dtp.mjs +8 -0
- package/msg/dty.js +8 -0
- package/msg/dty.mjs +8 -0
- package/msg/ee.js +8 -0
- package/msg/ee.mjs +8 -0
- package/msg/el.js +8 -0
- package/msg/el.mjs +8 -0
- package/msg/en-gb.js +8 -0
- package/msg/en-gb.mjs +8 -0
- package/msg/en.js +8 -0
- package/msg/en.mjs +8 -0
- package/msg/eo.js +8 -0
- package/msg/eo.mjs +8 -0
- package/msg/es.js +8 -0
- package/msg/es.mjs +8 -0
- package/msg/et.js +8 -0
- package/msg/et.mjs +8 -0
- package/msg/eu.js +8 -0
- package/msg/eu.mjs +8 -0
- package/msg/fa.js +8 -0
- package/msg/fa.mjs +8 -0
- package/msg/fi.js +8 -0
- package/msg/fi.mjs +8 -0
- package/msg/fo.js +8 -0
- package/msg/fo.mjs +8 -0
- package/msg/fr.js +8 -0
- package/msg/fr.mjs +8 -0
- package/msg/frr.js +8 -0
- package/msg/frr.mjs +8 -0
- package/msg/gl.js +8 -0
- package/msg/gl.mjs +8 -0
- package/msg/gn.js +8 -0
- package/msg/gn.mjs +8 -0
- package/msg/gor.js +8 -0
- package/msg/gor.mjs +8 -0
- package/msg/ha.js +8 -0
- package/msg/ha.mjs +8 -0
- package/msg/hak.js +8 -0
- package/msg/hak.mjs +8 -0
- package/msg/he.js +8 -0
- package/msg/he.mjs +8 -0
- package/msg/hi.js +8 -0
- package/msg/hi.mjs +8 -0
- package/msg/hr.js +8 -0
- package/msg/hr.mjs +8 -0
- package/msg/hrx.js +8 -0
- package/msg/hrx.mjs +8 -0
- package/msg/hsb.js +8 -0
- package/msg/hsb.mjs +8 -0
- package/msg/hu.js +8 -0
- package/msg/hu.mjs +8 -0
- package/msg/hy.js +8 -0
- package/msg/hy.mjs +8 -0
- package/msg/ia.js +8 -0
- package/msg/ia.mjs +8 -0
- package/msg/id.js +8 -0
- package/msg/id.mjs +8 -0
- package/msg/ig.js +8 -0
- package/msg/ig.mjs +8 -0
- package/msg/inh.js +8 -0
- package/msg/inh.mjs +8 -0
- package/msg/is.js +8 -0
- package/msg/is.mjs +8 -0
- package/msg/it.js +8 -0
- package/msg/it.mjs +8 -0
- package/msg/ja.js +8 -0
- package/msg/ja.mjs +8 -0
- package/msg/ka.js +8 -0
- package/msg/ka.mjs +8 -0
- package/msg/kab.js +8 -0
- package/msg/kab.mjs +8 -0
- package/msg/kbd-cyrl.js +8 -0
- package/msg/kbd-cyrl.mjs +8 -0
- package/msg/km.js +8 -0
- package/msg/km.mjs +8 -0
- package/msg/kn.js +8 -0
- package/msg/kn.mjs +8 -0
- package/msg/ko.js +8 -0
- package/msg/ko.mjs +8 -0
- package/msg/ksh.js +8 -0
- package/msg/ksh.mjs +8 -0
- package/msg/ku-latn.js +8 -0
- package/msg/ku-latn.mjs +8 -0
- package/msg/ky.js +8 -0
- package/msg/ky.mjs +8 -0
- package/msg/la.js +8 -0
- package/msg/la.mjs +8 -0
- package/msg/lb.js +8 -0
- package/msg/lb.mjs +8 -0
- package/msg/lki.js +8 -0
- package/msg/lki.mjs +8 -0
- package/msg/lo.js +8 -0
- package/msg/lo.mjs +8 -0
- package/msg/lrc.js +8 -0
- package/msg/lrc.mjs +8 -0
- package/msg/lt.js +8 -0
- package/msg/lt.mjs +8 -0
- package/msg/lv.js +8 -0
- package/msg/lv.mjs +8 -0
- package/msg/mg.js +8 -0
- package/msg/mg.mjs +8 -0
- package/msg/mk.js +8 -0
- package/msg/mk.mjs +8 -0
- package/msg/ml.js +8 -0
- package/msg/ml.mjs +8 -0
- package/msg/mnw.js +8 -0
- package/msg/mnw.mjs +8 -0
- package/msg/ms.js +8 -0
- package/msg/ms.mjs +8 -0
- package/msg/my.js +8 -0
- package/msg/my.mjs +8 -0
- package/msg/mzn.js +8 -0
- package/msg/mzn.mjs +8 -0
- package/msg/nb.js +8 -0
- package/msg/nb.mjs +8 -0
- package/msg/ne.js +8 -0
- package/msg/ne.mjs +8 -0
- package/msg/nl.js +8 -0
- package/msg/nl.mjs +8 -0
- package/msg/oc.js +8 -0
- package/msg/oc.mjs +8 -0
- package/msg/olo.js +8 -0
- package/msg/olo.mjs +8 -0
- package/msg/pa.js +8 -0
- package/msg/pa.mjs +8 -0
- package/msg/pl.js +8 -0
- package/msg/pl.mjs +8 -0
- package/msg/pms.js +8 -0
- package/msg/pms.mjs +8 -0
- package/msg/ps.js +8 -0
- package/msg/ps.mjs +8 -0
- package/msg/pt-br.js +8 -0
- package/msg/pt-br.mjs +8 -0
- package/msg/pt.js +8 -0
- package/msg/pt.mjs +8 -0
- package/msg/ro.js +8 -0
- package/msg/ro.mjs +8 -0
- package/msg/ru.js +8 -0
- package/msg/ru.mjs +8 -0
- package/msg/sc.js +8 -0
- package/msg/sc.mjs +8 -0
- package/msg/sco.js +8 -0
- package/msg/sco.mjs +8 -0
- package/msg/sd.js +8 -0
- package/msg/sd.mjs +8 -0
- package/msg/shn.js +8 -0
- package/msg/shn.mjs +8 -0
- package/msg/si.js +8 -0
- package/msg/si.mjs +8 -0
- package/msg/sk.js +8 -0
- package/msg/sk.mjs +8 -0
- package/msg/skr-arab.js +8 -0
- package/msg/skr-arab.mjs +8 -0
- package/msg/sl.js +8 -0
- package/msg/sl.mjs +8 -0
- package/msg/smn.js +8 -0
- package/msg/smn.mjs +8 -0
- package/msg/sq.js +8 -0
- package/msg/sq.mjs +8 -0
- package/msg/sr-latn.js +8 -0
- package/msg/sr-latn.mjs +8 -0
- package/msg/sr.js +8 -0
- package/msg/sr.mjs +8 -0
- package/msg/sv.js +8 -0
- package/msg/sv.mjs +8 -0
- package/msg/sw.js +8 -0
- package/msg/sw.mjs +8 -0
- package/msg/ta.js +8 -0
- package/msg/ta.mjs +8 -0
- package/msg/tcy.js +8 -0
- package/msg/tcy.mjs +8 -0
- package/msg/tdd.js +8 -0
- package/msg/tdd.mjs +8 -0
- package/msg/te.js +8 -0
- package/msg/te.mjs +8 -0
- package/msg/th.js +8 -0
- package/msg/th.mjs +8 -0
- package/msg/ti.js +8 -0
- package/msg/ti.mjs +8 -0
- package/msg/tl.js +8 -0
- package/msg/tl.mjs +8 -0
- package/msg/tlh.js +8 -0
- package/msg/tlh.mjs +8 -0
- package/msg/tr.js +8 -0
- package/msg/tr.mjs +8 -0
- package/msg/ug-arab.js +8 -0
- package/msg/ug-arab.mjs +8 -0
- package/msg/uk.js +8 -0
- package/msg/uk.mjs +8 -0
- package/msg/ur.js +8 -0
- package/msg/ur.mjs +8 -0
- package/msg/uz.js +8 -0
- package/msg/uz.mjs +8 -0
- package/msg/vi.js +8 -0
- package/msg/vi.mjs +8 -0
- package/msg/xmf.js +8 -0
- package/msg/xmf.mjs +8 -0
- package/msg/yo.js +8 -0
- package/msg/yo.mjs +8 -0
- package/msg/zgh.js +8 -0
- package/msg/zgh.mjs +8 -0
- package/msg/zh-hans.js +8 -0
- package/msg/zh-hans.mjs +8 -0
- package/msg/zh-hant.js +8 -0
- package/msg/zh-hant.mjs +8 -0
- package/package.json +11 -11
- package/php_compressed.js +2 -2
- package/php_compressed.js.map +1 -1
- package/python_compressed.js +2 -2
- package/python_compressed.js.map +1 -1
- package/core/flyout_navigator.d.ts +0 -11
- package/core/keyboard_nav/flyout_navigation_policy.d.ts +0 -65
- package/core/keyboard_nav/line_cursor.d.ts +0 -187
- package/core/keyboard_nav/marker.d.ts +0 -53
- package/core/marker_manager.d.ts +0 -72
- package/core/navigator.d.ts +0 -65
- package/media/sprites.png +0 -0
package/msg/sl.js
CHANGED
|
@@ -92,16 +92,19 @@ Blockly.Msg["DUPLICATE_BLOCK"] = "Podvoji";
|
|
|
92
92
|
Blockly.Msg["DUPLICATE_COMMENT"] = "Podvoji komentar";
|
|
93
93
|
Blockly.Msg["EDIT_BLOCK_CONTENTS"] = "Edit Block contents"; // untranslated
|
|
94
94
|
Blockly.Msg["ENABLE_BLOCK"] = "Omogoči blok";
|
|
95
|
+
Blockly.Msg["ENTER_KEY"] = "Enter"; // untranslated
|
|
95
96
|
Blockly.Msg["EXPAND_ALL"] = "Razširi bloke";
|
|
96
97
|
Blockly.Msg["EXPAND_BLOCK"] = "Razširi blok";
|
|
97
98
|
Blockly.Msg["EXTERNAL_INPUTS"] = "Zunanji vnosi";
|
|
98
99
|
Blockly.Msg["HELP"] = "Pomoč";
|
|
99
100
|
Blockly.Msg["HELP_PROMPT"] = "Press %1 for help on keyboard controls"; // untranslated
|
|
100
101
|
Blockly.Msg["INLINE_INPUTS"] = "Vrstični vnosi";
|
|
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"] = "ustvari prazen seznam";
|
|
@@ -432,6 +435,11 @@ Blockly.Msg["VARIABLE_ALREADY_EXISTS_FOR_A_PARAMETER"] = "Spremenljivka z imenom
|
|
|
432
435
|
Blockly.Msg["WINDOWS"] = "Windows"; // untranslated
|
|
433
436
|
Blockly.Msg["WORKSPACE_ARIA_LABEL"] = "Blocklyjev delovni prostor";
|
|
434
437
|
Blockly.Msg["WORKSPACE_COMMENT_DEFAULT_TEXT"] = "Povej nekaj ...";
|
|
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/sl.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
|
} = sl;
|
package/msg/smn.js
CHANGED
|
@@ -92,16 +92,19 @@ Blockly.Msg["DUPLICATE_BLOCK"] = "Jyemeehpittá";
|
|
|
92
92
|
Blockly.Msg["DUPLICATE_COMMENT"] = "Dublikist komment";
|
|
93
93
|
Blockly.Msg["EDIT_BLOCK_CONTENTS"] = "Edit Block contents"; // untranslated
|
|
94
94
|
Blockly.Msg["ENABLE_BLOCK"] = "Piejâ oolâ loigâttuv";
|
|
95
|
+
Blockly.Msg["ENTER_KEY"] = "Enter"; // untranslated
|
|
95
96
|
Blockly.Msg["EXPAND_ALL"] = "Viijđed loigâttuvâid";
|
|
96
97
|
Blockly.Msg["EXPAND_BLOCK"] = "Viijđed loigâttuv";
|
|
97
98
|
Blockly.Msg["EXTERNAL_INPUTS"] = "Olgoldâs fáluseh";
|
|
98
99
|
Blockly.Msg["HELP"] = "Iše";
|
|
99
100
|
Blockly.Msg["HELP_PROMPT"] = "Press %1 for help on keyboard controls"; // untranslated
|
|
100
101
|
Blockly.Msg["INLINE_INPUTS"] = "Pyevti fálusijd";
|
|
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"] = "räähti kuárus listo";
|
|
@@ -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"] = "Eeđâ maidnii...";
|
|
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/smn.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
|
} = smn;
|
package/msg/sq.js
CHANGED
|
@@ -92,16 +92,19 @@ Blockly.Msg["DUPLICATE_BLOCK"] = "Kopjo";
|
|
|
92
92
|
Blockly.Msg["DUPLICATE_COMMENT"] = "Koment Dublikatë";
|
|
93
93
|
Blockly.Msg["EDIT_BLOCK_CONTENTS"] = "Edit Block contents"; // untranslated
|
|
94
94
|
Blockly.Msg["ENABLE_BLOCK"] = "Aktivizo bllokun";
|
|
95
|
+
Blockly.Msg["ENTER_KEY"] = "Enter"; // untranslated
|
|
95
96
|
Blockly.Msg["EXPAND_ALL"] = "Zmadho blloqet";
|
|
96
97
|
Blockly.Msg["EXPAND_BLOCK"] = "Zmadho bllokun";
|
|
97
98
|
Blockly.Msg["EXTERNAL_INPUTS"] = "Hyrjet e jashtme";
|
|
98
99
|
Blockly.Msg["HELP"] = "Ndihmë";
|
|
99
100
|
Blockly.Msg["HELP_PROMPT"] = "Press %1 for help on keyboard controls"; // untranslated
|
|
100
101
|
Blockly.Msg["INLINE_INPUTS"] = "Hyrjet e brendshme";
|
|
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"] = "krijo një listë të zbrazët";
|
|
@@ -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"] = "Hapësira e punës e Blockly";
|
|
434
437
|
Blockly.Msg["WORKSPACE_COMMENT_DEFAULT_TEXT"] = "Thuaj dicka...";
|
|
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/sq.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
|
} = sq;
|
package/msg/sr-latn.js
CHANGED
|
@@ -92,16 +92,19 @@ Blockly.Msg["DUPLICATE_BLOCK"] = "Dupliraj";
|
|
|
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"] = "Omogući blok";
|
|
95
|
+
Blockly.Msg["ENTER_KEY"] = "Enter"; // untranslated
|
|
95
96
|
Blockly.Msg["EXPAND_ALL"] = "Proširi blokove";
|
|
96
97
|
Blockly.Msg["EXPAND_BLOCK"] = "Proširi blok";
|
|
97
98
|
Blockly.Msg["EXTERNAL_INPUTS"] = "Spoljni ulazi";
|
|
98
99
|
Blockly.Msg["HELP"] = "Pomoć";
|
|
99
100
|
Blockly.Msg["HELP_PROMPT"] = "Press %1 for help on keyboard controls"; // untranslated
|
|
100
101
|
Blockly.Msg["INLINE_INPUTS"] = "Unutrašnji ulazi";
|
|
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"] = "napravi prazan spisak";
|
|
@@ -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/sr-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
|
} = sr_latn;
|
package/msg/sr.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"] = "Блоклијев радни простор";
|
|
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/sr.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
|
} = sr;
|
package/msg/sv.js
CHANGED
|
@@ -92,16 +92,19 @@ Blockly.Msg["DUPLICATE_BLOCK"] = "Duplicera";
|
|
|
92
92
|
Blockly.Msg["DUPLICATE_COMMENT"] = "Duplicera kommentar";
|
|
93
93
|
Blockly.Msg["EDIT_BLOCK_CONTENTS"] = "Edit Block contents"; // untranslated
|
|
94
94
|
Blockly.Msg["ENABLE_BLOCK"] = "Aktivera block";
|
|
95
|
+
Blockly.Msg["ENTER_KEY"] = "Enter"; // untranslated
|
|
95
96
|
Blockly.Msg["EXPAND_ALL"] = "Fäll ut block";
|
|
96
97
|
Blockly.Msg["EXPAND_BLOCK"] = "Fäll ut block";
|
|
97
98
|
Blockly.Msg["EXTERNAL_INPUTS"] = "Externa inmatningar";
|
|
98
99
|
Blockly.Msg["HELP"] = "Hjälp";
|
|
99
100
|
Blockly.Msg["HELP_PROMPT"] = "Press %1 for help on keyboard controls"; // untranslated
|
|
100
101
|
Blockly.Msg["INLINE_INPUTS"] = "Radinmatning";
|
|
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"] = "skapa tom lista";
|
|
@@ -432,6 +435,11 @@ Blockly.Msg["VARIABLE_ALREADY_EXISTS_FOR_A_PARAMETER"] = "En variabel med namnet
|
|
|
432
435
|
Blockly.Msg["WINDOWS"] = "Windows"; // untranslated
|
|
433
436
|
Blockly.Msg["WORKSPACE_ARIA_LABEL"] = "Blocklys arbetsyta";
|
|
434
437
|
Blockly.Msg["WORKSPACE_COMMENT_DEFAULT_TEXT"] = "Säg någonting...";
|
|
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/sv.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
|
} = sv;
|
package/msg/sw.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"] = "Msaada";
|
|
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/sw.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
|
} = sw;
|
package/msg/ta.js
CHANGED
|
@@ -92,16 +92,19 @@ Blockly.Msg["DUPLICATE_BLOCK"] = "மறுநகல்";
|
|
|
92
92
|
Blockly.Msg["DUPLICATE_COMMENT"] = "கருத்தை நகலெடு";
|
|
93
93
|
Blockly.Msg["EDIT_BLOCK_CONTENTS"] = "Edit Block contents"; // untranslated
|
|
94
94
|
Blockly.Msg["ENABLE_BLOCK"] = "உறுப்பை இயங்குமாரு செய்";
|
|
95
|
+
Blockly.Msg["ENTER_KEY"] = "Enter"; // untranslated
|
|
95
96
|
Blockly.Msg["EXPAND_ALL"] = "உறுப்புகளை காட்டு";
|
|
96
97
|
Blockly.Msg["EXPAND_BLOCK"] = "உறுப்பை காட்டு";
|
|
97
98
|
Blockly.Msg["EXTERNAL_INPUTS"] = "வெளி கருவிகளுடன் உள்ளீடு";
|
|
98
99
|
Blockly.Msg["HELP"] = "உதவி";
|
|
99
100
|
Blockly.Msg["HELP_PROMPT"] = "Press %1 for help on keyboard controls"; // untranslated
|
|
100
101
|
Blockly.Msg["INLINE_INPUTS"] = "சூழமைவில் உள்ளீடு";
|
|
102
|
+
Blockly.Msg["KEYBOARD_NAV_BLOCK_NAVIGATION_HINT"] = "Use the right arrow key to navigate inside of blocks"; // untranslated
|
|
101
103
|
Blockly.Msg["KEYBOARD_NAV_CONSTRAINED_MOVE_HINT"] = "Use the arrow keys to move, then %1 to accept the position"; // untranslated
|
|
102
104
|
Blockly.Msg["KEYBOARD_NAV_COPIED_HINT"] = "Copied. Press %1 to paste."; // untranslated
|
|
103
105
|
Blockly.Msg["KEYBOARD_NAV_CUT_HINT"] = "Cut. Press %1 to paste."; // untranslated
|
|
104
106
|
Blockly.Msg["KEYBOARD_NAV_UNCONSTRAINED_MOVE_HINT"] = "Hold %1 and use arrow keys to move freely, then %2 to accept the position"; // untranslated
|
|
107
|
+
Blockly.Msg["KEYBOARD_NAV_WORKSPACE_NAVIGATION_HINT"] = "Use the arrow keys to navigate"; // untranslated
|
|
105
108
|
Blockly.Msg["LINUX"] = "Linux"; // untranslated
|
|
106
109
|
Blockly.Msg["LISTS_CREATE_EMPTY_HELPURL"] = "https://github.com/RaspberryPiFoundation/blockly/wiki/Lists#create-empty-list"; // untranslated
|
|
107
110
|
Blockly.Msg["LISTS_CREATE_EMPTY_TITLE"] = "காலி பட்டியல் உருவாக்க";
|
|
@@ -432,6 +435,11 @@ Blockly.Msg["VARIABLE_ALREADY_EXISTS_FOR_A_PARAMETER"] = "A variable named '%1'
|
|
|
432
435
|
Blockly.Msg["WINDOWS"] = "Windows"; // untranslated
|
|
433
436
|
Blockly.Msg["WORKSPACE_ARIA_LABEL"] = "Blockly Workspace"; // untranslated
|
|
434
437
|
Blockly.Msg["WORKSPACE_COMMENT_DEFAULT_TEXT"] = "ஏதாகினும் பகர்க...";
|
|
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/ta.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
|
} = ta;
|
package/msg/tcy.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"] = "ಕಾಲಿ ಪಟ್ಟಿನ್ ಉಂಡುಮಲ್ಪುಲೆ";
|
|
@@ -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"] = "ದಾದಾಂಡಲ ಪನ್ಲೇ...";
|
|
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/tcy.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
|
} = tcy;
|
package/msg/tdd.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/tdd.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
|
} = tdd;
|
package/msg/te.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"] = "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/te.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
|
} = te;
|