Skip to content

Commit 77ef3a4

Browse files
authored
Update separators.js
1 parent b2fa57a commit 77ef3a4

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

static/example-extensions/separators.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,31 +2,31 @@ class SeparatorExample {
22
getInfo() {
33
return {
44
id: 'separatorexample',
5-
name: 'Separator Example',
5+
name: Scratch.translate('Separator Example'),
66
blocks: [
77
{
88
opcode: 'block1',
99
blockType: Scratch.BlockType.COMMAND,
10-
text: 'group 1'
10+
text: Scratch.translate('group 1')
1111
},
1212
{
1313
opcode: 'block2',
1414
blockType: Scratch.BlockType.COMMAND,
15-
text: 'also group 1',
15+
text: Scratch.translate('also group 1'),
1616
},
1717
// highlight-next-line
1818
'---',
1919
{
2020
opcode: 'block3',
2121
blockType: Scratch.BlockType.COMMAND,
22-
text: 'group 2'
22+
text: Scratch.translate('group 2')
2323
},
2424
// highlight-next-line
2525
'---',
2626
{
2727
opcode: 'block4',
2828
blockType: Scratch.BlockType.COMMAND,
29-
text: 'group 3',
29+
text: Scratch.translate('group 3'),
3030
},
3131
]
3232
};

0 commit comments

Comments
 (0)