[w3c/manifest] i18n support (#848)


currently manifest only support a string for key `name` and `short_name`.

I would like to suggest, they use i18n based object to represent  i18n strings.

for example:

from 
```
{
name: "An Angular Based Application"
short_name: "angular"
}
```

to 

```
{
name:  {
"en" : "An Angular Based Application",
"zh" : "一个基于角度的程序",
"ja" : "角度ベースのアプリケーション",
},
short_name: {
"en" : "Angular",
"zh" : "角度",
"ja" : "角度",
}
}
```


-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/w3c/manifest/issues/848

Received on Wednesday, 5 February 2020 22:35:36 UTC