我需要在每个页面添加 gatsby-plugin-react-i18next 语言查询吗?

问题描述 投票:0回答:1

我正在使用 gatsby-plugin-react-i18next 来翻译网站。我的问题是,我是否必须将下面发布的语言查询添加到我想要翻译的每个页面中?有更好的办法吗?

// /pages/index.js
}
export const query = graphql`
  query($language: String!) {
    locales: allLocale(filter: { language: { eq: $language } }) {
      edges {
        node {
          ns
          data
          language
        }
      }
    }
  }

`;

我查看了 github 上提供的示例,查询出现在每个页面中。 https://github.com/microapps/gatsby-plugin-react-i18next/tree/master/example/src/pages

gatsby gatsby-plugin
1个回答
0
投票

是的,当控制台中显示错误时,它表示您必须将其放入每个页面中

© www.soinside.com 2019 - 2024. All rights reserved.