如何使用i18next在嵌套翻译中应用格式化程序

时间:2016-08-10 08:05:24

标签: translation i18next

我想用i18next格式化嵌套翻译

鉴于资源:

{"translation":{
   "en":{
     "food" : "bread",
     "food_is_good" : "$t(food), that's not bad"
    }
 }

和格式化功能:

function format(value, format, lng) {
  if (value==undefined) return value;
  switch (format) {
      case 'capitalize': return _.capitalize(value);
      default : return value;
  }
}

用于初始化i18next:

...
interpolation: { format: format },
...

我希望输出为"面包,这不错"。 所以我希望有类似的东西:

{
  ...
  "food_is_good_1" : "$t(food,capitalize), that's not bad",
  "food_is_good_2" : "{{$t(food),capitalize}}, that's not bad",
  "food_is_good_3" : "{{food,capitalize}}, that's not bad",
  ...
 }

会做到这一点。 第一个选项显示错误:"failed parsing options string in nesting" 最后两个选项警告:missed to pass in variable food,capitalize for interpolating {{food,capitalize}}

1 个答案:

答案 0 :(得分:0)

您的第一个选项适用于最新的 i18next (v19)。

https://codesandbox.io/s/react-i18next-forked-g1d47?file=/src/i18n.js