
Security News
PodRocket Podcast: Inside the Recent npm Supply Chain Attacks
Socket CEO Feross Aboukhadijeh discusses the recent npm supply chain attacks on PodRocket, covering novel attack vectors and how developers can protect themselves.
@tolgee/i18next
Advanced tools
Using i18next, but want to use cool Tolgee features like in-context editing or automated screenshot generation? No worries. Tolgee i18next integration is here for you!
npm install @tolgee/i18next
First, create a Tolgee instance and wrap your i18next instance withTolgee.
import i18n from 'i18next';
import { withTolgee, Tolgee, I18nextPlugin, FormatSimple } from '@tolgee/i18next';
const tolgee = Tolgee()
.use(I18nextPlugin())
.use(FormatSimple())
.init({
apiUrl: ...,
apiKey: ...,
});
withTolgee(i18n, tolgee)
.use(...)
.init(...)
Tolgee will automatically switch language accordingly to i18next. So to get current language do:
const lang = i18n.lang;
To set language:
i18n.changeLanguage(lang);
To learn more, check Tolgee documentation.
Tolgee saves a lot of time you would spend on localization tasks otherwise. It enables you to provide perfectly translated software.
Read more on the Tolgee website
We welcome your PRs.
To develop the package locally:
pnpm install
pnpm develop:react-i18n
This runs the development suite of this monorepo for the react-i18n
integration. The changes in each dependency package are
automatically built and propagated to the test application, which you can open and play within the browser.
To run Jest tests of this package, execute
npm run test
In the /packages/i18next
directory.
FAQs
Tolgee i18n integration.
The npm package @tolgee/i18next receives a total of 6,134 weekly downloads. As such, @tolgee/i18next popularity was classified as popular.
We found that @tolgee/i18next demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers 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
Socket CEO Feross Aboukhadijeh discusses the recent npm supply chain attacks on PodRocket, covering novel attack vectors and how developers can protect themselves.
Security News
Maintainers back GitHub’s npm security overhaul but raise concerns about CI/CD workflows, enterprise support, and token management.
Product
Socket Firewall is a free tool that blocks malicious packages at install time, giving developers proactive protection against rising supply chain attacks.