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
Fecony
Feconyβ€’12mo ago
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
miho
mihoβ€’12mo ago
That's right πŸ™‚ we are looking into it, probably in the next iterations of auth UI (happening soon)
martinsos
martinsosβ€’12mo ago
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!
かぐら
かぐら‒12mo ago
ty guys i will do that