使用代码

时间:2018-03-07 16:30:50

标签: bootstrap-4

因此,如果我点击一个按钮,我希望值改变。如果它是西班牙语我想看到' Hola'如果它是英文的,我想看看你好。

所以我的json文件如下所示:

es.json

{
    "hello": "hola"
}

en.json

{
    "hello": "hello

}

1 个答案:

答案 0 :(得分:-1)

在代码中的某处放置一个这样的模板

    <ng-template #buttonTp>
      <span translate>hello</span>
    </ng-template>

然后在你的领域

<button [tooltip]="buttonTp" translate> hello </button>