Get the translation from another locale
pohodnya opened this issue · 4 comments
Now it looks like this
currentLocale = @get('i18n.locale')
@set('i18n.locale', anotherLocale)
result = @get('i18n').t(key)
@set('i18n.locale', currentLocale)
Is it possible to specify a locale?
result = @get('i18n').t(key, { locale: anotherLocale })
#381 reserves locale
(and htmlSafe
) as special keys in v4.x so that in v5.0 we can support this, be we haven't finished that migration. So it's planned, but I don't know when it will happen.
Yes please. I would like this very much too.
I want to create an edit page where the user can select and edit the translation of a product name for all the supported locals in a single web form.
I've tried the above approach but that interfered with the rendering process.
I hacked the i18n t function adding loc variable. Works for me hack wise
t(key, data = {}, loc) {
...
const locale = loc ? new Locale(loc, getOwner(this)) : this.get('_locale');
Do you know of an official hack I could use in the meantime?
If anyone wonders how to do this until it's officially implemented:
We wrote our own little service that would fetch new translation files and created our own translate method that closely resembles Ember.I18n ones (not sure why it doesn't render properly..):
`import compileTemplate from 'ember-i18n/utils/i18n/compile-template';
t(key, data = {}, code) {
const translation = this.get('translations.${code}');
Ember.assert('Translations for code ${code} not loaded', !!translation);
const resolvePath = (path, object) => {
return path.split('.').reduce((prev, curr) => {
return prev ? prev[curr] : undefined;
}, object);
};
const template = resolvePath(key, translation);
if (!template) return 'Missing translations for ${key}';
const compiled = compileTemplate(template)(data);
return compiled;
}`
jamesarosen/ember-i18n has been deprecated in favor of ember-intl.