mirror of
https://github.com/scratchfoundation/scratch-vm.git
synced 2024-12-24 06:52:40 -05:00
Fixing tilt direction menu locales.
This commit is contained in:
parent
1efead8a26
commit
d83bf20803
1 changed files with 9 additions and 13 deletions
|
@ -1189,39 +1189,35 @@ class Scratch3WeDo2Blocks {
|
||||||
TILT_DIRECTION_ANY: [
|
TILT_DIRECTION_ANY: [
|
||||||
{
|
{
|
||||||
text: formatMessage({
|
text: formatMessage({
|
||||||
id: 'wedo2.tiltDirectionAny.up',
|
id: 'wedo2.tiltDirection.up',
|
||||||
default: 'up',
|
default: 'up'
|
||||||
description: 'label for up element in tilt direction any menu for LEGO WeDo 2 extension'
|
|
||||||
}),
|
}),
|
||||||
value: WeDo2TiltDirection.UP
|
value: WeDo2TiltDirection.UP
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
text: formatMessage({
|
text: formatMessage({
|
||||||
id: 'wedo2.tiltDirectionAny.down',
|
id: 'wedo2.tiltDirection.down',
|
||||||
default: 'down',
|
default: 'down'
|
||||||
description: 'label for down element in tilt direction any menu for LEGO WeDo 2 extension'
|
|
||||||
}),
|
}),
|
||||||
value: WeDo2TiltDirection.DOWN
|
value: WeDo2TiltDirection.DOWN
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
text: formatMessage({
|
text: formatMessage({
|
||||||
id: 'wedo2.tiltDirectionAny.left',
|
id: 'wedo2.tiltDirection.left',
|
||||||
default: 'left',
|
default: 'left'
|
||||||
description: 'label for left element in tilt direction any menu for LEGO WeDo 2 extension'
|
|
||||||
}),
|
}),
|
||||||
value: WeDo2TiltDirection.LEFT
|
value: WeDo2TiltDirection.LEFT
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
text: formatMessage({
|
text: formatMessage({
|
||||||
id: 'wedo2.tiltDirectionAny.right',
|
id: 'wedo2.tiltDirection.right',
|
||||||
default: 'right',
|
default: 'right'
|
||||||
description: 'label for right element in tilt direction any menu for LEGO WeDo 2 extension'
|
|
||||||
}),
|
}),
|
||||||
value: WeDo2TiltDirection.RIGHT
|
value: WeDo2TiltDirection.RIGHT
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
text: formatMessage({
|
text: formatMessage({
|
||||||
id: 'wedo2.tiltDirectionAny.any',
|
id: 'wedo2.tiltDirection.any',
|
||||||
default: 'any',
|
default: 'any',
|
||||||
description: 'label for any element in tilt direction any menu for LEGO WeDo 2 extension'
|
description: 'label for any element in tilt direction any menu for LEGO WeDo 2 extension'
|
||||||
}),
|
}),
|
||||||
|
|
Loading…
Reference in a new issue