diff --git a/src/lib/make-toolbox-xml.js b/src/lib/make-toolbox-xml.js index 14bac0aef6a..1e5c3b70464 100644 --- a/src/lib/make-toolbox-xml.js +++ b/src/lib/make-toolbox-xml.js @@ -554,6 +554,7 @@ const sound = function (isInitialSetup, isStage, targetId, soundName) { + ${categorySeparator} `; diff --git a/src/lib/opcode-labels.js b/src/lib/opcode-labels.js index 15e572ff8d8..cfb5075cd7a 100644 --- a/src/lib/opcode-labels.js +++ b/src/lib/opcode-labels.js @@ -170,6 +170,11 @@ const messages = defineMessages({ description: 'Label for the tempo monitor when shown on the stage', id: 'gui.opcodeLabels.tempo' }, + sound_currentlyPlayingSounds: { + defaultMessage: 'currently playing sounds', + description: 'Label for the currently playing sounds monitor when shown on the stage', + id: 'gui.opcodeLabels.currentlyPlayingSounds' + }, // Sensing sensing_answer: { @@ -328,6 +333,7 @@ class OpcodeLabels { sound_volume: {category: 'sound'}, sound_getEffectValue: {category: 'sound'}, sound_tempo: {category: 'sound'}, + sound_currentlyPlayingSounds: {category: 'sound' }, // Sensing sensing_answer: {category: 'sensing'}, @@ -417,6 +423,7 @@ class OpcodeLabels { } return this._translator(messages.sound_getEffectValue); }; + this._opcodeMap.sound_currentlyPlayingSounds.labelFn = () => this._translator(messages.sound_currentlyPlayingSounds); // Sensing this._opcodeMap.sensing_answer.labelFn = () => this._translator(messages.sensing_answer);