如何在 Aurelia 下的控制台消息上应用 i18n

How to apply i18n on console message under Aurelia

我在 Aurelia 手下工作 Framework.I 想在控制台消息上应用 i18N。 我使用两种语言 "English" 和 "French"

Console.log("Hello World");

如果用户更改语言模式,我如何用法语打印此消息。

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'));
    }
    ...
  }