semantics-i18n
v0.1.4
Published
A simple i18n library for JavaScript.
Downloads
2
Readme
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"