What would the best approach be to have a website that can be translated for different countries?
I have a site that is gaining some traction from all over the globe, right now all my text content is english. How would I ensure its translatable for all users?
9 Replies
Im using NextJS if that effects any ideas
i18n
Routing: Internationalization
Add support for multiple languages with internationalized routing and localized content.
So I saw that, and what I didn't really understand was if that was just for the data being sent back from my api routes that would be translated?
I guess to be more specific all the content I want translated is inside the HTML and components, its not being fetched
with server components, you can just send direct translated html
with "classic" components, you will need the react approach to i18n
Im not on server components currently
Alrighty
thank you for the pointers
glad to help