I am looking for a shim for the ECMAScript Internationalization API. Does anyone know of such a project? (Even if it's still currently a work-in-progress.)
|
This SO-question gives some frameworks for i18n-support in javascript. JavaScript I18n (internationalization) frameworks/libraries for client-side use? |
|||
|
|
I assume you know that "Google Chrome version 24, currently in beta, implements the API with Collator, NumberFormat, and DateTimeFormat objects as described above." (see here). Any shim would either be huge and/or incomplete in terms of locale coverage--do you really want to implement Kannada numbers (that's the language they speak here in Bangalore)? My suggestion would be to roll your own slimmed-down shim with the parts you need, picking and choosing from other libraries that do similar things as needed. For instance, you might want date/time formatting, but not sorting (which is complicated). |
|||
|
|
Intl.NumberFormatsupport. It's available at github.com/andyearnshaw/Intl.js. – Andy E May 7 at 14:03