- From: Eric <notifications@github.com>
- Date: Tue, 25 Jun 2024 21:10:00 -0700
- To: w3c/manifest <manifest@noreply.github.com>
- Cc: Subscribed <subscribed@noreply.github.com>
Received on Wednesday, 26 June 2024 04:10:04 UTC
@dmurph per-field "dir" and "lang" seems not reasonable feature for a manifest file needing language consistency. The dir problem can be solved easily use link tag like the following: ```html <link rel="manifest" type="locale" dir = "ltr" lang="fr" href="i18n/manifest.fr.json" /> <link rel="manifest" type="locale" dir = "rtl" lang="fr-ca" href="i18n/manifest.fr-ca.json" /> <link rel="manifest" type="locale" dir = "auto" lang="en" href="i18n/manifest.en.json" /> <link rel="manifest" type="locale" dir = "ltr" lang="en-us" href="i18n/manifest.en-us.json" /> <link rel="manifest" type="locale" dir = "ltr" lang="en-us" href="i18n/manifest.en-us.v1.json" /> ``` -- Reply to this email directly or view it on GitHub: https://github.com/w3c/manifest/pull/1101#issuecomment-2190523118 You are receiving this because you are subscribed to this thread. Message ID: <w3c/manifest/pull/1101/c2190523118@github.com>
Received on Wednesday, 26 June 2024 04:10:04 UTC