- From: Eric <notifications@github.com>
- Date: Tue, 25 Jun 2024 17:35:56 -0700
- To: w3c/manifest <manifest@noreply.github.com>
- Cc: Subscribed <subscribed@noreply.github.com>
Received on Wednesday, 26 June 2024 00:36:00 UTC
@christianliebel @dmurph There may also be a new way like extending manifest when included by the html file. currently manifest can be included this way: ```html <link rel="manifest" href="manifest.json" /> ``` but for i18n support, it can be extended this way: ```html <link rel="manifest" type="locale" href="i18n/manifest.fr.json" /> <link rel="manifest" type="locale" href="i18n/manifest.fr-ca.json" /> <link rel="manifest" type="locale" href="i18n/manifest.en.json" /> <link rel="manifest" type="locale" href="i18n/manifest.en-us.json" /> ``` where locale typed manifest can override all features of the default one according to the user agent settings. this method may be a better way for both compatibility and extensibility. -- Reply to this email directly or view it on GitHub: https://github.com/w3c/manifest/pull/1101#issuecomment-2190293795 You are receiving this because you are subscribed to this thread. Message ID: <w3c/manifest/pull/1101/c2190293795@github.com>
Received on Wednesday, 26 June 2024 00:36:00 UTC