У меня есть функция
const myTranslation = async () => { const translation = await i18n.loadNamespaces(['home']); console.log(translation); //-> return undefinded console.log(translation.t('title')); //-> return Uncaught (in promise) TypeError: Cannot read property 't' of undefined };
Как получить мой перевод home.title?
i18n.loadNamespaces просто загружает требуемые пространства имен, для перевода вам нужно использовать i18n.t.
i18n.loadNamespaces
i18n.t
const myTranslation = async () => { await i18n.loadNamespaces(['home']); console.log(i18n.t('title')); // --------------^ };