Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

i18n-core

Package Overview
Dependencies
Maintainers
1
Versions
19
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

i18n-core

Basic i18n translation.

  • 1.3.3
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

i18n-core

Join the chat at https://gitter.im/martinheidegger/i18n-core

Build Status Code Climate

i18n-core is a no-fuzz Node.js implementation of i18n. It doesn't connect to express or any other fancy Node framework and is extensible where it needs to be and allows to reduce the complexity of other i18n implementations (thus the name).

It implements basic variable replacements in the mustache and sprintf manner.

Installation

To use i18n-core all you need to do is install it using npm

$ npm i i18n-core --save

Usage

var i18n_core = require("i18n-core")
var i18n = i18n_core({greeting: "hello!"})
i18n.__("greeting") // hello!

To have different namespaces for different languages you can get a prefixed subpart using .lang().


var i18n = i18n_core({
  en: { greeting: "hello!" },
  de: { greeting: "guten tag!"}
})

var en = i18n.lang("en")
en.__("greeting") // hello!

var de = i18n.lang("de")
de.__("greeting") // guten tag!

Note: .lang(<lang>) is the same thing as .sub(<lang> + ".")

The system is based on lookup implementations that allow the system to use different sources to get its strings from. The examples before used an object and because of this the former example would be equal to:

var i18n = i18n_core(require("i18n-core/lookup/object")({greeting: "hello!"}))

If you were to pass in a string to i18n-core instead like this:

var i18n = i18n_core("./")

Then it would be equal the primitive file-system lookup same like this:

var i18n = i18n_core(require("i18n-core/lookup/fs")("./"))

You can pass in your own strategy by given an object to the constructor that contains a "get"-method:

var i18n = i18n_core({
    get: function (key) {
        return null; // Who needs translation anyway?
    }
})

i18n-core does implement basic placeholder replacements like:

en.__("%s is cool", "he"); // "he is cool"

following the logic of sprintf.

It also offers mustache pattern replacement like this:

en.__("{{name}} are cool too", {name: "you"}); // "you are cool too"

It is possible to chain translation prefixes like this:

var at = i18n_core({de:{at: {hello: "Zewas!"}}}).lang("de").lang("at");
at.__("hello") // Zewas!

and you can also change the chain if you want to.

var translate = i18n_core({
    de: {title: "Meine Webseite"},
    en: {title: "My Website"}
}).lang("de", true) // <- this true is important :)
translate.__("title") // Meine Website
translate.changeLang("en")
translate.__("title") // My Website

To prevent malicious use the changing of the language is prevented unless you pass a true flag to it.

In some instances it is necessary to know in advance if a key has a value or not, in this case you can use has.

var translate = i18n_core({title: "My Website"})
translate.has("title") // true
translate.has("subtitle") // false

Additionally, for module development, its possible to access the raw data using raw:

var translate = i18n_core({no: {val: 5}})
translate.raw("no") // {val: 5}

If you have any questions, please post them as issue, thanks!

FAQs

Package last updated on 17 Mar 2015

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc