From 4e7a96c5a831882463802cdd4f84fe1464969cb0 Mon Sep 17 00:00:00 2001 From: Armand Philippot Date: Wed, 23 Mar 2022 12:29:43 +0100 Subject: refactor: use formatjs swc plugin I'm not able to configure SWC plugins in Next.js so to make it works, all translation must have an id. --- src/pages/mentions-legales.tsx | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src/pages/mentions-legales.tsx') diff --git a/src/pages/mentions-legales.tsx b/src/pages/mentions-legales.tsx index 1bc5c31..b103b5e 100644 --- a/src/pages/mentions-legales.tsx +++ b/src/pages/mentions-legales.tsx @@ -35,6 +35,7 @@ const LegalNotice: NextPageWithLayout = () => { { defaultMessage: 'Legal notice - {websiteName}', description: 'LegalNoticePage: SEO - Page title', + id: '4zAUSu', }, { websiteName: settings.name } ); @@ -42,6 +43,7 @@ const LegalNotice: NextPageWithLayout = () => { { defaultMessage: "Discover the legal notice of {websiteName}'s website.", description: 'LegalNoticePage: SEO - Meta description', + id: 'uvB+32', }, { websiteName: settings.name } ); @@ -49,6 +51,7 @@ const LegalNotice: NextPageWithLayout = () => { const title = intl.formatMessage({ defaultMessage: 'Legal notice', description: 'LegalNoticePage: page title', + id: '/IirIt', }); const publicationDate = new Date(dates.publication); const updateDate = new Date(dates.update); -- cgit v1.2.3