Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Translations not extracted when t is used as a template tag literal #204

Open
lazarljubenovic opened this issue Jan 23, 2022 · 0 comments
Open

Comments

@lazarljubenovic
Copy link

Describe the bug

import i18n from './i18next'
i18n.t(`foo`) // works runtime, gets extracted
i18n.t`foo` // works runtime, doesn't get extracted

Babel configuration:

        use: {
          loader: 'babel-loader',
          options: {
            plugins: [
              [
                'i18next-extract',
                {
                  locales: ['en-US', 'sr-Cyrl'],
                  outputPath: 'src/translations/{{locale}}/{{ns}}.json',
                  keyAsDefaultValue: ['en-US'],
                },
              ],
            ],
            presets: [
              '@babel/preset-react',
              '@babel/preset-typescript',
              [
                '@babel/preset-env',
                {
                  targets: {
                    chrome: 94,
                  },
                },
              ],
            ],
          },
        },
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant