From fbd74df78e8c5a1d9c41f52c726fdc5870cbc069 Mon Sep 17 00:00:00 2001 From: Armand Philippot Date: Sun, 30 Jan 2022 00:00:19 +0100 Subject: chore(baseline): handle baseline translation manually I cannot use formatjs to translate the website baseline since I need an async function to load the message. If I use the getIntlInstance helper outside NextJS, webpack is complaining about fs and path. --- src/utils/helpers/rss.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/utils/helpers') diff --git a/src/utils/helpers/rss.ts b/src/utils/helpers/rss.ts index 55b009a..305c6e7 100644 --- a/src/utils/helpers/rss.ts +++ b/src/utils/helpers/rss.ts @@ -27,7 +27,7 @@ export const generateFeed = async () => { link: websiteUrl, }; const copyright = `${settings.name} CC BY SA ${settings.copyright.startYear} - ${settings.copyright.endYear}`; - const title = `${settings.name} | ${settings.baseline}`; + const title = `${settings.name} | ${settings.baseline.fr}`; const feed = new Feed({ author, -- cgit v1.2.3