diff options
| author | Armand Philippot <git@armandphilippot.com> | 2022-03-23 12:29:43 +0100 |
|---|---|---|
| committer | Armand Philippot <git@armandphilippot.com> | 2022-03-23 12:29:43 +0100 |
| commit | 4e7a96c5a831882463802cdd4f84fe1464969cb0 (patch) | |
| tree | 528e2766120465bd74e94a8f5d37db7c3cd5a3cc /src/components/MainNav/MainNav.tsx | |
| parent | 3a20d3ef2d6fcb6c77ca5ad6aeaf6179d23ecb3e (diff) | |
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.
Diffstat (limited to 'src/components/MainNav/MainNav.tsx')
| -rw-r--r-- | src/components/MainNav/MainNav.tsx | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/components/MainNav/MainNav.tsx b/src/components/MainNav/MainNav.tsx index dcaba30..9cb6b4c 100644 --- a/src/components/MainNav/MainNav.tsx +++ b/src/components/MainNav/MainNav.tsx @@ -32,6 +32,7 @@ const MainNav = ( name: intl.formatMessage({ defaultMessage: 'Home', description: 'MainNav: home link', + id: 'ZJMNRW', }), slug: '/', }, @@ -40,6 +41,7 @@ const MainNav = ( name: intl.formatMessage({ defaultMessage: 'Blog', description: 'MainNav: blog link', + id: 'zPJifH', }), slug: '/blog', }, @@ -48,6 +50,7 @@ const MainNav = ( name: intl.formatMessage({ defaultMessage: 'Projects', description: 'MainNav: projects link', + id: 'akSutM', }), slug: '/projets', }, @@ -56,6 +59,7 @@ const MainNav = ( name: intl.formatMessage({ defaultMessage: 'Resume', description: 'MainNav: resume link', + id: 'jpv+Nz', }), slug: '/cv', }, @@ -64,6 +68,7 @@ const MainNav = ( name: intl.formatMessage({ defaultMessage: 'Contact', description: 'MainNav: contact link', + id: 'c2NtPj', }), slug: '/contact', }, @@ -124,10 +129,12 @@ const MainNav = ( ? intl.formatMessage({ defaultMessage: 'Close menu', description: 'MainNav: close button', + id: 'dE8xxV', }) : intl.formatMessage({ defaultMessage: 'Open menu', description: 'MainNav: open button', + id: 'azc1GT', })} </span> </label> @@ -136,6 +143,7 @@ const MainNav = ( aria-label={intl.formatMessage({ defaultMessage: 'Primary', description: 'MainNav: aria-label', + id: 'H7C5Bk', })} > <ul className={styles.list}>{navItems}</ul> |
