我遇到的一个项目具有本地化的关注结构
每种语言都有一个目录,在该目录下将有一个与目录+扩展名“.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是Google的本地化格式,在the web和flutter framework中使用
来自ARB (Application Resource Bundle Specification)
这个答案是对我的搜索的总结,希望可以节省别人的时间。