How to translate content from select in ember with ember-i18n addon?

202 Views Asked by At

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.

0

There are 0 best solutions below