p5.js version
No response
What is your operating system?
Windows
Web browser and version
Version 145.0.7632.111
Actual Behavior
In the mobile view of the editor, when opening the 3-dot "More" menu and selecting "Language", the resulting Overlay modal has a hardcoded English string: "Select Language" for its title. Because this is hardcoded, it ignores the user's currently active language setting and will always display in English. This was explicitly marked with a // TODO: add translations by the original developer in MobileNav.jsx (line 385).
Expected Behavior
The overlay title should use the t() translation hook for localization so the popup title translates properly when the editor language is changed to Spanish, Hindi, etc.
Steps to reproduce
Steps:
- Open the p5.js Web Editor on a mobile viewport (or shrink the browser window).
- Open account settings and change the language to anything other than English.
- Click the 3-dot "More" menu (⋮) in the top right.
- Click "Language".
- Observe that the overlay title says "Select Language" in English instead of the translated string.
Snippet:
// client/modules/IDE/components/Header/MobileNav.jsx (line 385)
<Overlay
// TODO: add translations
title="Select Language"
ariaLabel="Select Language"
closeOverlay={() => setIsLanguageModalVisible(false)}
>
**I would like to work on this issue and submit a PR fixing it!**
p5.js version
No response
What is your operating system?
Windows
Web browser and version
Version 145.0.7632.111
Actual Behavior
In the mobile view of the editor, when opening the 3-dot "More" menu and selecting "Language", the resulting Overlay modal has a hardcoded English string:
"Select Language"for its title. Because this is hardcoded, it ignores the user's currently active language setting and will always display in English. This was explicitly marked with a// TODO: add translationsby the original developer in MobileNav.jsx (line 385).Expected Behavior
The overlay title should use the t() translation hook for localization so the popup title translates properly when the editor language is changed to Spanish, Hindi, etc.
Steps to reproduce
Steps:
Snippet: