diff --git a/src/tour/Tour.tsx b/src/tour/Tour.tsx index 8d23dda3..b6173068 100644 --- a/src/tour/Tour.tsx +++ b/src/tour/Tour.tsx @@ -96,11 +96,14 @@ const DownloadAndRunStep = React.memo(function DownloadAndRunStep() { const i18n = useI18n(); return ( -
- {i18n.translate('steps.downloadAndRun.message', {
- icon:
+ {i18n.translate('steps.downloadAndRun.message', {
+ icon:
{i18n.translate('steps.downloadAndRun.runAgain')}
+ > ); }); diff --git a/src/tour/translations/en.json b/src/tour/translations/en.json index be314a35..92bd84ea 100644 --- a/src/tour/translations/en.json +++ b/src/tour/translations/en.json @@ -15,19 +15,20 @@ }, "backupFiles": { "message": "Don't lose your work.", - "action": "Click the {icon} button to backup all of your programs." + "action": "Click {icon} to back up your programs." }, "flashPybricksFirmware": { - "message": "{appName} requires a special firmware to be flashed to your hub in order to run the program on the hub." + "message": "To use {appName}, you have to install the Pybricks firmware." }, "restoreOfficialFirmware": { - "message": "You can always restore the official {lego} firmware after using the special Pybricks firmware." + "message": "You can restore the official {lego} firmware at any time." }, "connectToHub": { - "message": "One you have flashed the Pybricks firmware, click the Bluetooth button to connect to the hub." + "message": "Click the Bluetooth button to connect." }, "downloadAndRun": { - "message": "After you are connected to the hub, click the {icon} button to download and run your program." + "message": "Once connected, click the {icon} button to run your program.", + "runAgain": "The program is now saved on the hub. Press the button on the hub to run it again." } } }