使用nextjs,express和next-i18n-next获取特定语言的翻译

时间:2019-10-19 11:11:09

标签: next.js i18next

我正在尝试翻译一条路线的信息,以便我可以使用nextjs并表达两种不同的语言:

const app = next({ dev })

const t = (key, lng) => {
 //find a translation for the given key in the given language
 return translation
}

const translatedRoutes = [t('blog', 'en'), t('blog', 'ru')]

server.get(translatedRoutes, (req, res) => app.render(req, res, '/blog'))

next-i18n-next的文档中找不到任何解决方案。

0 个答案:

没有答案