Not exactly the same as SC 1.x, but yes, Ember has localization.
First you need to define your localized strings in Ember.STRINGS:
Ember.STRINGS = { '_save': 'Save', '_ok': 'OK', '_apply': 'Apply', '_cancel': 'Cancel', '_close': 'Close', '_refresh': 'Refresh' }
You can then localize any string by adding .loc() to the string to localize it:
`_close`.loc() outputs "Close"
Here you can read the source in ember-runtime mode and tests here .
source share