我正在努力寻找最有效的方法来翻译包含 routerLink 的文本或某些单词应包含在 html 标签中的文本 ( word )。
让我们看看它在没有 i18n 实现时是什么样子:
example.component.html
<div>
Hello and welcome to this test example. In order to proceed click on this
<a [routerLink]="['settings/subscription']">Link</a>
</div>
现在让我们添加 i18n 到它,并使用一种可能的方法来处理 routerLink: en.json
{
"WELCOME_LABEL": "Hello and welcome to this test example. In order to proceed click on this,
"LINK_LABEL": "link"
}
example.component.html
<div>
{{'WELCOME_LABEL' | translate}}
<a [routerLink]="['settings/subscription']">{{'LINK_LABEL' | translate}}</a>
</div>
这种方法的问题是不同语言的单词顺序可能不同。例如。 “请单击此链接”在某些其他语言中可能具有如下顺序:“链接”位于句子的开头或中间。
有一些通用/官方的方法来处理这种情况吗?
我解决这个问题的一种方法是获取组件中的当前区域设置,然后根据它在模板中进行 if 检查。
我不喜欢这种方式,因为我有点脱离了 i18n 实践,并根据语言环境创建单独的 JSON 对象,只是为了能够满足单词排序的需求。
example.component.ts
constructor(
@Inject( LOCALE_ID ) protected localeId: string
) {
console.log(this.localeId);
}
example.component.html
<div *ngIf="localeId === 'en-Us'">
{{'WELCOME_LABEL_EN' | translate}}
<a [routerLink]="['settings/subscription']">{{'LINK_LABEL_EN' | translate}}</a>
</div>
<div *ngIf="localeId === 'otherLanguage'">
{{'WELCOME_LABEL_1_OTHER' | translate}}
<a [routerLink]="['settings/subscription']">{{'LINK_LABEL_OTHER' | translate}}</a>
{{'WELCOME_LABEL_2_OTHER' | translate}}
</div>
如果您简单地将
<div>
定义为三部分会怎样?例如,文本 start、link,然后是 end。
<div>
{{'WELCOME_LABEL_START' | translate}}
<a [routerLink]="['settings/subscription']">{{'LINK_LABEL' | translate}}</a>
{{'WELCOME_LABEL_END' | translate}}
</div>
这样,根据语言,您只需将句子分为两部分即可。
{
"WELCOME_LABEL_START": "In order to proceed, click on this",
"LINK_LABEL": "link",
"WELCOME_LABEL_END": " whatever language you have."
}
如果不需要,你可以让开始/结束为空。
Angular 似乎不支持像
innerHTML
那样传递指令和非 HTML 元素。我没有尝试,但需要注意。
您可以将整个句子作为
innerHTML
进行翻译,其中包括链接元素。这样就可以动态输出内容了。
模板:
<span [innerHTML]="key | translate"></span>
JSON:
{
"key": "Please click on <a href='abc.com'>this link</a>."
}