From 05989b4813e1794c01a96fb4dd40bfb0485a4d92 Mon Sep 17 00:00:00 2001 From: PPPDUD <107440101+PPPDUD@users.noreply.github.com> Date: Thu, 16 Oct 2025 12:49:45 -0400 Subject: [PATCH] Update hello-world.js --- static/example-extensions/hello-world.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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!') } ] };