mirror of
https://github.com/scratchfoundation/scratch-vm.git
synced 2024-12-23 14:32:59 -05:00
Do not localize motor IDs
This commit is contained in:
parent
097fcc01a0
commit
86f4ca5806
1 changed files with 10 additions and 50 deletions
|
@ -1415,85 +1415,45 @@ class Scratch3BoostBlocks {
|
||||||
menus: {
|
menus: {
|
||||||
MOTOR_ID: [
|
MOTOR_ID: [
|
||||||
{
|
{
|
||||||
text: formatMessage({
|
text: 'A',
|
||||||
id: 'boost.motorId.a',
|
|
||||||
default: BoostMotorLabel.A,
|
|
||||||
description: `label for motor A element in motor menu for LEGO Boost extension`
|
|
||||||
}),
|
|
||||||
value: BoostMotorLabel.A
|
value: BoostMotorLabel.A
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
text: formatMessage({
|
text: 'B',
|
||||||
id: 'boost.motorId.b',
|
|
||||||
default: BoostMotorLabel.B,
|
|
||||||
description: `label for motor B element in motor menu for LEGO Boost extension`
|
|
||||||
}),
|
|
||||||
value: BoostMotorLabel.B
|
value: BoostMotorLabel.B
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
text: formatMessage({
|
text: 'C',
|
||||||
id: 'boost.motorId.c',
|
|
||||||
default: BoostMotorLabel.C,
|
|
||||||
description: `label for motor C element in motor menu for LEGO Boost extension`
|
|
||||||
}),
|
|
||||||
value: BoostMotorLabel.C
|
value: BoostMotorLabel.C
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
text: formatMessage({
|
text: 'D',
|
||||||
id: 'boost.motorId.d',
|
|
||||||
default: BoostMotorLabel.D,
|
|
||||||
description: `label for motor D element in motor menu for LEGO Boost extension`
|
|
||||||
}),
|
|
||||||
value: BoostMotorLabel.D
|
value: BoostMotorLabel.D
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
text: formatMessage({
|
text: 'AB',
|
||||||
id: 'boost.motorId.ab',
|
|
||||||
default: BoostMotorLabel.AB,
|
|
||||||
description: `label for motor A and B element in motor menu for LEGO Boost extension`
|
|
||||||
}),
|
|
||||||
value: BoostMotorLabel.AB
|
value: BoostMotorLabel.AB
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
text: formatMessage({
|
text: 'ABCD',
|
||||||
id: 'boost.motorId.all',
|
|
||||||
default: BoostMotorLabel.ALL,
|
|
||||||
description: 'label for all motors element in motor menu for LEGO Boost extension'
|
|
||||||
}),
|
|
||||||
value: BoostMotorLabel.ALL
|
value: BoostMotorLabel.ALL
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
MOTOR_REPORTER_ID: [
|
MOTOR_REPORTER_ID: [
|
||||||
{
|
{
|
||||||
text: formatMessage({
|
text: 'A',
|
||||||
id: 'boost.motorReporterId.a',
|
|
||||||
default: BoostMotorLabel.A,
|
|
||||||
description: 'label for motor A element in motor menu for LEGO Boost extension'
|
|
||||||
}),
|
|
||||||
value: BoostMotorLabel.A
|
value: BoostMotorLabel.A
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
text: formatMessage({
|
text: 'B',
|
||||||
id: 'boost.motorReporterId.b',
|
|
||||||
default: BoostMotorLabel.B,
|
|
||||||
description: 'label for motor B element in motor menu for LEGO Boost extension'
|
|
||||||
}),
|
|
||||||
value: BoostMotorLabel.B
|
value: BoostMotorLabel.B
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
text: formatMessage({
|
text: 'C',
|
||||||
id: 'boost.motorReporterId.c',
|
|
||||||
default: BoostMotorLabel.C,
|
|
||||||
description: 'label for motor C element in motor menu for LEGO Boost extension'
|
|
||||||
}),
|
|
||||||
value: BoostMotorLabel.C
|
value: BoostMotorLabel.C
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
text: formatMessage({
|
text: 'D',
|
||||||
id: 'boost.motorReporterId.d',
|
|
||||||
default: BoostMotorLabel.D,
|
|
||||||
description: 'label for motor D element in motor menu for LEGO Boost extension'
|
|
||||||
}),
|
|
||||||
value: BoostMotorLabel.D
|
value: BoostMotorLabel.D
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
Loading…
Reference in a new issue