From 8ab35d1a141eec3ec6a360ab8285add5e3c79592 Mon Sep 17 00:00:00 2001 From: Thomas Weber Date: Thu, 9 Jan 2025 15:19:23 -0600 Subject: [PATCH] obviousAlexC/SensingPlus: fix the block names again (#1858) --- extensions/obviousAlexC/SensingPlus.js | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/extensions/obviousAlexC/SensingPlus.js b/extensions/obviousAlexC/SensingPlus.js index 4e0c066d9a..86945b7b7a 100644 --- a/extensions/obviousAlexC/SensingPlus.js +++ b/extensions/obviousAlexC/SensingPlus.js @@ -773,11 +773,19 @@ acceptReporters: true, items: [ { - text: Scratch.translate("positional acceleration"), + text: Scratch.translate({ + default: "acceleration", + description: + "Part of a block that tells you how fast the device is accelerating", + }), value: "positional", }, { - text: Scratch.translate("rotation rate"), + text: Scratch.translate({ + default: "rotation", + description: + "Part of a block that tells you what angle the device is being held at", + }), value: "rotational", }, ],