FormatJS – Internationalize your web apps on the client and server
1–10 of 39 posts
Re: FormatJS – Internationalize your web apps on the client and server
#2Re: FormatJS – Internationalize your web apps on the client and server
#3Re: FormatJS – Internationalize your web apps on the client and server
#4Re: FormatJS – Internationalize your web apps on the client and server
#5Re: FormatJS – Internationalize your web apps on the client and server
#6Shameless plug: I've been working on a similar project for about a year now called Localize.js ( https://localizejs.com ), with the goal of automating the entire process of internationalization / localization. It works by scanning the DOM for translatable content, and injecting translations on-the-fly after the page loads (this happens so quickly that the user never sees the text in the original language).
I don't like this approach because it makes the framework/library harder to integrate with other DOM-modifying frameworks like data binding frameworks that are very popular these days. A more modular approach in my opinion would be to simply provide a function/functions to do the localization conversions. That can easily be integrated to any data binding framework.
>(this happens so quickly that the user never sees the text in the original language)
And if you use it with something like AngularJS, the end result is visual flicker after DOM changes..
Re: FormatJS – Internationalize your web apps on the client and server
#7Looks great. One thing that wasn't clear, can you provide your own translations or is it all machine translation?
Re: FormatJS – Internationalize your web apps on the client and server
#8Looks great. One thing that wasn't clear, can you provide your own translations or is it all machine translation?
Re: FormatJS – Internationalize your web apps on the client and server
#9I'm currently using Moment.js, i18next and Numeral.js with AngularJS. I wonder how FormatJS compares with this. At least one benefit FormatJS could have is having a unified collection of translation files.
Re: FormatJS – Internationalize your web apps on the client and server
#10Shameless plug: I've been working on a similar project for about a year now called Localize.js ( https://localizejs.com ), with the goal of automating the entire process of internationalization / localization. It works by scanning the DOM for translatable content, and injecting translations on-the-fly after the page loads (this happens so quickly that the user never sees the text in the original language).
>It works by scanning the DOM for translatable content, and injecting translations on-the-fly after the page loads I don't like this approach because it makes the framework/library harder to integrate with other DOM-modifying frameworks like data binding frameworks that are very popular these days. A more modular approach in my opinion would be to simply provide a function/functions to do the localization conversions…
We've also spent a ton of time making sure there's zero visual flicker as the DOM changes take place. We have a bunch of companies using it to translate Angular and Backbone apps (for example, http://venzee.com/ and https://www.verbling.com).