mirror of
https://github.com/LemmyNet/lemmy-ui.git
synced 2024-11-08 17:44:16 +00:00
Merge pull request #1721 from sunaurus/date_fns_lang
Fix date-fns locale import failing for some locales
This commit is contained in:
commit
93fe23a305
|
@ -7,6 +7,16 @@ export default async function () {
|
|||
lang = "en-US";
|
||||
}
|
||||
|
||||
// if lang and country are the same, then date-fns expects only the lang
|
||||
// eg: instead of "fr-FR", we should import just "fr"
|
||||
|
||||
if (lang.includes("-")) {
|
||||
const parts = lang.split("-");
|
||||
if (parts[0] === parts[1].toLowerCase()) {
|
||||
lang = parts[0];
|
||||
}
|
||||
}
|
||||
|
||||
const locale = (
|
||||
await import(
|
||||
/* webpackExclude: /\.js\.flow$/ */
|
||||
|
|
Loading…
Reference in a new issue