I´ve the follwing code from the ember.select example http://emberjs.com/api/classes/Ember.Select.html
var yehuda = {firstName: "Yehuda", id: 1, bff4eva: 'tom'}
var tom = {title: "totranslate", id: 2, bff4eva: 'yehuda'};
App.ApplicationController = Ember.ObjectController.extend({
selectedPerson: tom,
programmers: [
yehuda,
tom
]
});
How would i translate the title "totranslate"?
Ember-i18n addon (https://github.com/jamesarosen/ember-i18n) is setup and working.