aboutsummaryrefslogtreecommitdiffstats
path: root/src/utils
diff options
context:
space:
mode:
authorArmand Philippot <git@armandphilippot.com>2022-01-19 14:45:06 +0100
committerArmand Philippot <git@armandphilippot.com>2022-01-19 14:47:40 +0100
commit1fa8d8281371db25ef9382b6087b7f3c0db73fe3 (patch)
tree898aee1e9a23c06e9658de240474d90870190e68 /src/utils
parenta26b775b7bbf1abd3e99c8bf9ce4c7522d3a0adc (diff)
refactor(config): move defaultLocale as property of config.locales
I will need the country code, so I think it makes more sense to gather them inside the same property.
Diffstat (limited to 'src/utils')
-rw-r--r--src/utils/helpers/i18n.ts3
-rw-r--r--src/utils/helpers/rss.ts2
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,
});