我遇到的一个项目具有本地化的关注结构

每种语言都有一个目录,在该目录下将有一个与目录+扩展名“.arb”同名的文件。

en/en.arb

我找不到说明该文件格式的文档。
.arb文件中的样本内容
"FOO_123": "Your pending cost is {COST}",
"@FOO_123": {
    "source_text": "Your pending cost is {COST}",
    "placeholders": {
       "COST": {
          "example": "$123.45",
          "description": "cost presented with currency symbol"
       }
    }

我能找到的最接近的是this
  • 是用于了解'.arb'文件的权威文档吗?
  • 其值具有带有href的 anchor 标记的资源是什么样的?这是正确的方法吗?

  • 最佳答案

    ARB是Google的本地化格式,在the webflutter framework中使用

    来自ARB (Application Resource Bundle Specification)



    这个答案是对我的搜索的总结,希望可以节省别人的时间。

    10-08 18:06