Security News
Research
Data Theft Repackaged: A Case Study in Malicious Wrapper Packages on npm
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
gatsby-plugin-react-i18next
Advanced tools
Easily translate your Gatsby website into multiple languages
Easily translate your Gatsby website into multiple languages.
pages/en/index.js
or pages/es/index.js
.When you build multilingual sites, Google recommends using different URLs for each language version of a page rather than using cookies or browser settings to adjust the content language on the page. (read more)
This plugin does not require fetching translations with graphql query on each page, everything is done automatically. Just use react-i18next
to translate your pages.
yarn add gatsby-plugin-react-i18next i18next react-i18next
or
npm install --save gatsby-plugin-react-i18next i18next react-i18next
// In your gatsby-config.js
plugins: [
{
resolve: `gatsby-plugin-react-i18next`,
options: {
path: `${__dirname}/locales`,
languages: [`en`, `es`, `de`],
defaultLanguage: `en`,
// you can pass any i18next options
// pass following options to allow message content as a key
i18nextOptions: {
interpolation: {
escapeValue: false // not needed for react as it escapes by default
},
keySeparator: false,
nsSeparator: false
}
}
}
];
For example,
language resource files | language |
---|---|
/locales/en/translation.json | English |
/locales/es/translation.json | Spanish |
/locales/de/translation.json | German |
You can use different namespaces to organize your translations. Use the following file structure:
|-- language
|-- namespace.json
For example:
|-- en
|-- header.json
|-- footer.json
The default namespace is translation
. Read more about i18next namespaces
Use react i18next useTranslation
react hook and Trans
component to translate your pages.
gatsby-plugin-react-i18next
exposes all react-i18next
methods and components.
Replace Gatsby Link
component with the Link
component exported from gatsby-plugin-react-i18next
import React from 'react';
import {Link, Trans, useTranslation} from 'gatsby-plugin-react-i18next';
import Layout from '../components/layout';
import Image from '../components/image';
import SEO from '../components/seo';
const IndexPage = () => {
const {t} = useTranslation();
return (
<Layout>
<SEO title={t('Home')} />
<h1>
<Trans>Hi people</Trans>
</h1>
<p>
<Trans>Welcome to your new Gatsby site.</Trans>
</p>
<p>
<Trans>Now go build something great.</Trans>
</p>
<div style={{maxWidth: `300px`, marginBottom: `1.45rem`}}>
<Image />
</div>
<Link to="/page-2/">
<Trans>Go to page 2</Trans>
</Link>
</Layout>
);
};
export default IndexPage;
and in locales/en/translations.json
you will have
{
"Home": "Home",
"Hi people": "Hi people",
"Welcome to your new Gatsby site.": "Welcome to your new Gatsby site.",
"Now go build something great.": "Now go build something great.",
"Go to page 2": "Go to page 2"
}
This example is not using semantic keys instead the entire message will be used as a key. Read more.
gatsby-plugin-react-i18next
exposes useI18next
hook
import {Link, useI18next} from 'gatsby-plugin-react-i18next';
import './header.css';
import React from 'react';
const Header = ({siteTitle}) => {
const {languages, changeLanguage} = useI18next();
return (
<header className="main-header">
<h1 style={{margin: 0}}>
<Link
to="/"
style={{
color: `white`,
textDecoration: `none`
}}>
{siteTitle}
</Link>
</h1>
<ul className="languages">
{languages.map((lng) => (
<li key={lng}>
<a
href="#"
onClick={(e) => {
e.preventDefault();
changeLanguage(lng);
}}>
{lng}
</a>
</li>
))}
</ul>
</header>
);
};
Option | Type | Description |
---|---|---|
path | string | path to the folder with JSON translations |
languages | string[] | supported language keys |
defaultLanguage | string | default language when visiting /page instead of /es/page |
redirect | boolean | if the value is true , / or /page-2 will be redirected to the user's preferred language router. e.g) /es or /es/page-2 . Otherwise, the pages will render defaultLangugage language. Default is true |
siteUrl | string | public site url, is used to generate language specific meta tags |
i18nextOptions | object | i18next configuration options |
Link
Link
component is identical to Gatsby Link component except that you can provide additional language
prop to create a link to a page with different language
import {Link} from 'gatsby-plugin-react-i18next';
const SpanishAboutLink = () => (
<Link to="/about" language="es">
About page in Spanish
</Link>
);
Helmet
Helmet
component is identical to gatsby-plugin-react-helmet
component but also provides language related metatags (alternative and canonical links)
Note! To use it you need to have react-helmet
dependency installed. You also need to provide siteUrl
in plugin options for it to work properly.
I18nextContext
Use this react context to access language information about the page
const context = React.useContext(I18nextContext);
Content of the context object
Attribute | Type | Description |
---|---|---|
language | string | current language |
languages | string[] | supported language keys |
routed | boolean | if false it means that the page is in default language |
defaultLanguage | string | default language provided in plugin options |
originalPath | string | page path in default language |
path | string | page path |
siteUrl | string | public site url provided in plugin options |
The same context will be also available in the Gatsby pageContext.i18n
object
useI18next
This react hook returns I18nextContext
, object and additional helper functions
Function | Description |
---|---|
navigate | This is a wrapper around Gatsby navigate helper function that will navigate to the page in selected language |
changeLanguage | A helper function to change language. The first parameter is a language code. Signature: (language: string, to?: string, options?: NavigateOptions) => Promise<void> . You can pass additional parameters to navigate to different page. |
useI18next
also exposes the output of react i18next useTranslation
so you can use
const {t} = useI18next();
You can use babel-plugin-i18next-extract automatically extract translations inside t
function and Trans
component from you pages and save them in JSON.
yarn add @babel/cli @babel/plugin-transform-typescript babel-plugin-i18next-extract -D
babel-extract.config.js
file (don't name it babel.config.js
, or it will be used by gatsby)module.exports = {
presets: ['babel-preset-gatsby'],
plugins: [
[
'i18next-extract',
{
keySeparator: null,
nsSeparator: null,
keyAsDefaultValue: ['en'],
useI18nextDefaultValue: ['en'],
discardOldKeys: true,
outputPath: 'locales/{{locale}}/{{ns}}.json',
customTransComponents: [['gatsby-plugin-react-i18next', 'Trans']]
}
]
],
overrides: [
{
test: [`**/*.ts`, `**/*.tsx`],
plugins: [[`@babel/plugin-transform-typescript`, {isTSX: true}]]
}
]
};
package.json
{
"scripts": {
"extract": "yarn run babel --config-file ./babel-extract.config.js -o tmp/chunk.js 'src/**/*.{js,jsx,ts,tsx}' && rm -rf tmp"
}
}
After your messages had been extracted you can use AWS Translate to automatically translate messages to different languages.
This functionality is out of the scope of this plugin, but you can get the idea from this script
This package is based on:
MIT © microapps
FAQs
Easily translate your Gatsby website into multiple languages
The npm package gatsby-plugin-react-i18next receives a total of 7,811 weekly downloads. As such, gatsby-plugin-react-i18next popularity was classified as popular.
We found that gatsby-plugin-react-i18next demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Research
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
Research
Security News
Attackers used a malicious npm package typosquatting a popular ESLint plugin to steal sensitive data, execute commands, and exploit developer systems.
Security News
The Ultralytics' PyPI Package was compromised four times in one weekend through GitHub Actions cache poisoning and failure to rotate previously compromised API tokens.