我是以下来自ember.select示例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
]
});
我如何翻译标题“totranslate”?
Ember-i18n插件(https://github.com/jamesarosen/ember-i18n)已设置并正常工作。