DEV Community

Discussion on: How to properly internationalize a React application using i18next

Collapse
 
spock123 profile image
Lars Rye Jeppesen • Edited

So this is all translated runtime using downloaded json files?

I much prefer Angular's built in compile-time i18n, simple to use, and doesn't add any overhead at all for performance.

Isn't there a compile-time React i18n project? I can't imagine going back to runtime translation.

Thanks in advance

Collapse
 
adrai profile image
Adriano Raiano

probably fbt is than more suited for you? dev.to/adrai/i18n-in-the-multivers...

Collapse
 
adrai profile image
Adriano Raiano

btw: there is no need to lazy load translations, you can also bundle them and add them on init for example… i18next.com/how-to/add-or-load-tra...

Collapse
 
spock123 profile image
Lars Rye Jeppesen

Thanks mate, I'll take a look. cheers