我正在关注 Angular i18n 的开发指南:https ://angular.io/guide/i18n
我已经定义了这样的复数文字:
<span i18n>Updated {minutes, plural, =0 {just now} =1 {one minute ago} other {{{minutes}} minutes ago}}</span>
我在 MyComponent.ts 中定义了一个变量,如下所示:
minutes = 0;
我正在像这样运行我的应用程序:
ng serve --port 4300 --configuration=fr
我已经像这样定义了 messages.fr.xlf:
<trans-unit id="5a134dee893586d02bffc9611056b9cadf9abfad" datatype="html">
<source>{VAR_PLURAL, plural, =0 {just now} =1 {one minute ago} other {<x id="INTERPOLATION" equiv-text="{{minutes}}"/> minutes ago} }</source>
<context-group purpose="location">
<context context-type="sourcefile">app/tenants/tenant1/tenant1.module.ts</context>
<context context-type="linenumber">4</context>
</context-group>
<target>{VAR_PLURAL, plural, =0 {à l'instant} =1 {il y a une minute} other {il y a <x id="INTERPOLATION" equiv-text="{{minutes}}"/> minutes} }</target>
</trans-unit>
但是当我加载页面时出现以下错误:
Error: No plural message found for value "0"
请问,我做错了什么?