diff --git a/static/example-extensions/hello-world.js b/static/example-extensions/hello-world.js index 71778994..98853b08 100644 --- a/static/example-extensions/hello-world.js +++ b/static/example-extensions/hello-world.js @@ -2,12 +2,12 @@ class HelloWorld { getInfo() { return { id: 'helloworld', - name: 'It works!', + name: Scratch.translate('It works!'), blocks: [ { opcode: 'hello', blockType: Scratch.BlockType.REPORTER, - text: 'Hello!' + text: Scratch.translate('Hello!') } ] };