我正在尝试翻译一条路线的信息,以便我可以使用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的文档中找不到任何解决方案。