From d83bf208038c2c9bab17a7ff469215e6032b7d71 Mon Sep 17 00:00:00 2001 From: Evelyn Eastmond Date: Wed, 10 Oct 2018 11:47:55 -0400 Subject: [PATCH] Fixing tilt direction menu locales. --- src/extensions/scratch3_wedo2/index.js | 22 +++++++++------------- 1 file changed, 9 insertions(+), 13 deletions(-) diff --git a/src/extensions/scratch3_wedo2/index.js b/src/extensions/scratch3_wedo2/index.js index c0ddb0a0f..713a81bae 100644 --- a/src/extensions/scratch3_wedo2/index.js +++ b/src/extensions/scratch3_wedo2/index.js @@ -1189,39 +1189,35 @@ class Scratch3WeDo2Blocks { TILT_DIRECTION_ANY: [ { text: formatMessage({ - id: 'wedo2.tiltDirectionAny.up', - default: 'up', - description: 'label for up element in tilt direction any menu for LEGO WeDo 2 extension' + id: 'wedo2.tiltDirection.up', + default: 'up' }), value: WeDo2TiltDirection.UP }, { text: formatMessage({ - id: 'wedo2.tiltDirectionAny.down', - default: 'down', - description: 'label for down element in tilt direction any menu for LEGO WeDo 2 extension' + id: 'wedo2.tiltDirection.down', + default: 'down' }), value: WeDo2TiltDirection.DOWN }, { text: formatMessage({ - id: 'wedo2.tiltDirectionAny.left', - default: 'left', - description: 'label for left element in tilt direction any menu for LEGO WeDo 2 extension' + id: 'wedo2.tiltDirection.left', + default: 'left' }), value: WeDo2TiltDirection.LEFT }, { text: formatMessage({ - id: 'wedo2.tiltDirectionAny.right', - default: 'right', - description: 'label for right element in tilt direction any menu for LEGO WeDo 2 extension' + id: 'wedo2.tiltDirection.right', + default: 'right' }), value: WeDo2TiltDirection.RIGHT }, { text: formatMessage({ - id: 'wedo2.tiltDirectionAny.any', + id: 'wedo2.tiltDirection.any', default: 'any', description: 'label for any element in tilt direction any menu for LEGO WeDo 2 extension' }),