- From: Eric <notifications@github.com>
- Date: Wed, 05 Feb 2020 14:35:33 -0800
- To: w3c/manifest <manifest@noreply.github.com>
- Cc: Subscribed <subscribed@noreply.github.com>
Received on Wednesday, 5 February 2020 22:35:36 UTC
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