Help with Login/Signup/Email Verify Language [Localization]
I need to translate those mentioned above.
How i would do it ? is there a way ?
Or do i have to edit the root components inside Wasp. for example Auth.tsx?
Talking about translating them to Spanish
Im using Wasp for learning React and TailwindCSS so im like 20% newbie
4 Replies
For now there is no localization feature..
those titles are hardcoded here https://github.com/wasp-lang/wasp/blob/main/waspc/data/Generator/templates/react-app/src/auth/forms/Auth.tsx#LL52C42-L52C42
For now to change those you would need to create custom auth forms...
For now there is an issue for this https://github.com/wasp-lang/wasp/issues/1104
That's right π we are looking into it, probably in the next iterations of auth UI (happening soon)
Probably best is to go into generated code, in .wasp/out, and find the code generated for those forms, copy that code into your Wasp project and go from there!
ty guys i will do that