我有一个i18n管道,我不知道如何获取它来转换模板中的数组项。
这是模板组件:
import {Component, OnInit, Input} from '@angular/core';
@Component({
selector: 'sa-big-breadcrumbs',
template: `
<div><h1 class="page-title txt-color-blueDark">
<i class="fa-fw fa fa-{{icon}}"></i>{{items[0]}}
<span *ngFor="let item of items.slice(1)">> {{item}} </span>
</h1></div>
`,
})
export class BigBreadcrumbsComponent implements OnInit {
@Input() public icon: string;
@Input() public items: Array<string>;
constructor() {}
ngOnInit() {
}
}
以下是使用选择器的HTML:
<div class="row">
<sa-big-breadcrumbs [items]="['Forum General View']" icon="comment" class="col-xs-12 col-sm-7 col-md-7 col-lg-4"></sa-big-breadcrumbs>
<sa-stats></sa-stats>
</div>
我要翻译“论坛通用视图”,该模板在模板中是
{{items[0]}}
我在简单的字符串翻译中使用管道没有问题,但是翻译数组项并不是我能够解决的。
通常,我的翻译如下:
<a href="#"><i class="fa fa-lg fa-fw fa-comments"></i> {{'Forum' | i18n}}</a>
感谢您的帮助!
鲍勃
答案 0 :(得分:0)
我是OP。事实证明,i18n管道工作正常。问题是由于翻译服务未保留该语言。一旦我修复了持久性,管道就可以在需要的任何地方工作。
鲍勃