In the v-if="locale" branch, there should be an extra if-branch to check whether the name of a custom menu is set but the i18n of it is not set. In this case, the name should be set to the content of <span> as a fallback, otherwise the content would be blank.
Also, if the name is the same in all languages, it could be OK to just set one name instead of repeating it in i18n.
In source code
/src/components/Header/src/Navigation.vue
:In the
v-if="locale"
branch, there should be an extra if-branch to check whether the name of a custom menu is set but the i18n of it is not set. In this case, the name should be set to the content of<span>
as a fallback, otherwise the content would be blank.Also, if the name is the same in all languages, it could be OK to just set one
name
instead of repeating it ini18n
.