We were able to easily localize SC app with the strings table and sc-build did a good job of building out the different lang directories with the right localized files. Does Ember provide these?

thx

link|improve this question
feedback

2 Answers

up vote 6 down vote accepted

Not exactly the same as SC 1.x, but yes there is localization in Ember.

You'll first need to define your localized strings to Ember.STRINGS:

Ember.STRINGS = {
  '_save': 'Save',
  '_ok': 'OK',
  '_apply': 'Apply',
  '_cancel': 'Cancel',
  '_close': 'Close',
  '_refresh': 'Refresh'
}

Then you can localize any string by adding .loc() to a string to localize it:

`_close`.loc() outputs "Close"

You can read the source here in ember-runtime and the tests here.

link|improve this answer
thx, does ember still use sc-build script or has it's own? – user1134895 Jan 8 at 1:20
No. Most people use either rake-pipeline or BPM as their build tools for Ember projects. – Roy Daniels Jan 8 at 16:53
feedback

ZenDesk has a nice internationalization library, currently named sproutcore-i18n that I'd recommend. I expect they'll be changing the name to ember-i18n in the near future.

https://github.com/zendesk/sproutcore-i18n

link|improve this answer
1  
Updated Link: github.com/zendesk/ember-i18n – fpauser Mar 9 at 10:37
feedback

Your Answer

 
or
required, but never shown

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