Skip to content

neet/i18next-cli-language-detector

Repository files navigation

i18next-cli-language-detector

npm ci codecov

i18next third-party language detector for CLI.

demo.mov

> See examples

Installation

yarn add i18next i18next-cli-language-detector

Usage

Add .use(I18nextCLILanguageDetector) to your initialization part of i18next as following:

import i18next from 'i18next';
import I18nextCLILanguageDetector from 'i18next-cli-language-detector';

i18next
  .use(I18nextCLILanguageDetector)
  .init();

Supported environment variables

i18next-cli-language-detector refers following variables to determine which language to activate.

  • LC_ALL
  • LC_MESSAGES
  • LANG
  • LANGUAGE

As for the format of these variables, see documentation of Gettext.

Related projects

License

MIT