我正在Aurelia Framework下工作。我想在控制台消息上应用i18N。 我使用两种语言“英语”和“法语”
Console.log("Hello World");
如果用户更改语言模式,我如何用法语打印此消息。
答案 0 :(得分:2)
docs for the plugin确实包含该示例:
import {I18N} from 'aurelia-i18n';
export class MyDemoVM {
static inject = [I18N];
constructor(i18n) {
this.i18n = i18n;
console.log(this.i18n.tr('mykey'));
}
...
}