Skip to content

Commit

Permalink
fix(web): update locales (#3934)
Browse files Browse the repository at this point in the history
  • Loading branch information
james-d-elliott committed Aug 31, 2022
1 parent 305619f commit c265741
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions web/src/i18n/index.ts
Expand Up @@ -20,11 +20,21 @@ i18n.use(Backend)
},
ns: ["portal"],
defaultNS: "portal",
load: "all",
fallbackLng: {
default: ["en"],
de: ["en"],
es: ["en"],
fr: ["en"],
"nl-NL": ["en"],
"pt-PT": ["en"],
ru: ["en"],
sv: ["en"],
"sv-SE": ["sv", "en"],
"zh-CN": ["en"],
"zh-TW": ["en"],
},
load: "all",
supportedLngs: ["en", "de", "es", "fr", "ru", "sv", "zh-TW"],
supportedLngs: ["en", "de", "es", "fr", "nl-NL", "pt-PT", "ru", "sv", "sv-SE", "zh-CN", "zh-TW"],
lowerCaseLng: false,
nonExplicitSupportedLngs: true,
interpolation: {
Expand Down

0 comments on commit c265741

Please sign in to comment.