semantics-i18n

0.1.4 • Public • Published

Semantics

Semantics is a simple yet powerful i18n library for JavaScript, built for both Node and the web.

Note: Semantics is in v0; it should not be considered stable.

Installation

Node

npm i semantics-i18n
const Semantics = require('semantics-i18n');

Browser

<script src="path/to/semantics.js"></script>
<!-- Semantics will be declared as a global object -->

Basic usage

var $ = Semantics('es', {
    "values": {
        "Hello": "Hola",
        "Yes": "Sí",
        "No": "No",
        "Maybe": "Tal vez"
    }
});

$('Hello'); // "Hola"

Take a look at the examples.

License

MIT License

Readme

Keywords

Package Sidebar

Install

npm i semantics-i18n

Weekly Downloads

2

Version

0.1.4

License

MIT

Unpacked Size

19.4 kB

Total Files

11

Last publish

Collaborators

  • mindfulminun