We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 25da082 commit feef543Copy full SHA for feef543
static/example-extensions/unmonitorable.js
@@ -2,17 +2,17 @@ class DisableMonitorExample {
2
getInfo() {
3
return {
4
id: 'disablemonitorexample',
5
- name: 'disableMonitor Example',
+ name: Scratch.translate('disableMonitor Example'),
6
blocks: [
7
{
8
opcode: 'monitorable',
9
blockType: Scratch.BlockType.REPORTER,
10
- text: 'this block can be monitored'
+ text: Scratch.translate('this block can be monitored')
11
},
12
13
opcode: 'unmonitorable',
14
15
- text: 'but this one can not',
+ text: Scratch.translate('but this one can not'),
16
// highlight-next-line
17
disableMonitor: true
18
0 commit comments