diff options
Diffstat (limited to 'src/utils/helpers')
| -rw-r--r-- | src/utils/helpers/i18n.ts | 3 | ||||
| -rw-r--r-- | src/utils/helpers/rss.ts | 2 |
2 files changed, 3 insertions, 2 deletions
diff --git a/src/utils/helpers/i18n.ts b/src/utils/helpers/i18n.ts index 38616a2..18f966a 100644 --- a/src/utils/helpers/i18n.ts +++ b/src/utils/helpers/i18n.ts @@ -1,3 +1,4 @@ +import { config } from '@config/website'; import type { I18n } from '@lingui/core'; import { en, fr } from 'make-plural/plurals'; @@ -11,7 +12,7 @@ export const locales = { fr: 'Français', }; -export const defaultLocale = 'fr'; +export const defaultLocale = config.locales.defaultLocale; export function initTranslation(i18n: I18n): void { i18n.loadLocaleData({ diff --git a/src/utils/helpers/rss.ts b/src/utils/helpers/rss.ts index 7851ff8..7806f7c 100644 --- a/src/utils/helpers/rss.ts +++ b/src/utils/helpers/rss.ts @@ -39,7 +39,7 @@ export const generateFeed = async () => { }, generator: 'Feed & NextJS', id: websiteUrl, - language: config.defaultLocale, + language: config.locales.defaultLocale, link: websiteUrl, title, }); |
