Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.)

share|improve this question
Maybe ask Norbert Lindenberg directly, who's the editor of that spec – kangax Feb 8 at 17:07
Why not go with ISO standards and forget about all the traditional ambiguous dates format my grandma uses? (ISO dates, ISO currency codes, etc.). – Tiberiu-IonuČ› Stan Feb 13 at 22:49
I began work on a shim recently, though not much progress has been made beyond Intl.NumberFormat support. It's available at github.com/andyearnshaw/Intl.js. – Andy E May 7 at 14:03
Great to know, @AndyE! Keep up the work! I'll be following the progress. – Nathan Wall May 7 at 14:31

2 Answers

This SO-question gives some frameworks for i18n-support in javascript. JavaScript I18n (internationalization) frameworks/libraries for client-side use?

share|improve this answer
Thank you, but I am looking specifically for one which is a direct shim of the ECMAScript Internationalization API. – Nathan Wall Feb 11 at 18:10

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).

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.