1
0
Fork 0

wip(org): Translations on homepage

This commit is contained in:
Joost De Cock 2022-05-29 12:52:11 +02:00
parent 51c96f2eaa
commit 054dc4ac1e
2 changed files with 20 additions and 21 deletions

View file

@ -45,6 +45,16 @@ const buildNavigation = (lang, t) => {
nav.blog.__order = 'e'
nav.account.__order = 'f'
// Translation top-level strapi pages
nav.showcase.__title = t('showcase')
nav.showcase.__linktitle = t('showcase')
nav.blog.__title = t('blog')
nav.blog.__linktitle = t('blog')
// Translation top-level strapi pages
nav.community.__title = t('community')
nav.community.__linktitle = t('community')
return nav
}