Searching Contributors
looking for contributors interested in helping the project (long term):
- getting stuff fixed faster
- we might start work on a version 2.0.0 (supporting old API - but rewrite to optimize size, drop old browser support, better modularization, ...)
- update docs to be generated out of wiki pages?!?
- creating an icon for i18next organisation on github and the project
- ...
Introduction
Project goal is to provide an easy way to translate a website on clientside:
- fetch resources from server
- fetch each resource file individually (static) or all once via dynamicRoute
- apply translation to HTML tags with the data-i18n attribute
- post missing key-value pairs to server (for easy development -> just translate the new keys)
- search for key en-US first, then in en, then in fallback language (or de-DE, de , fallback)
Check out the documentation
Check CHANGELOG for changes.
Usage
Assuming we loaded en-US, en and dev resources for two namespaces ('ns.special' and 'ns.common'):
{
"en_US": {
"ns.special": {
"app": {
"name": "i18n",
"insert": "you are __youAre__",
"child": "__count__ child",
"child_plural": "__count__ children"
}
},
"ns.common": {}
},
"en": {
"ns.special": {
"app": {
"area": "Area 51"
}
},
"ns.common": {}
},
"dev": {
"ns.common": {
"app": {
"company": {
"name": "my company"
}
},
"add": "add"
},
"ns.special": {
"nav": {
"1": "link1",
"2": "link2",
"home": "home"
}
}
}
}
you can translate using $.t(key, [options])
$.i18n.init({
lng: 'en-US',
ns: { namespaces: ['ns.common', 'ns.special'], defaultNs: 'ns.special'}
}, function() {
$.t('app.name');
$.t('app.area');
$.t('ns.common:app.company.name');
$.t('ns.common:add');
});
insert values into your translation
$.t('app.insert', {youAre: 'great'})
support for plurals
$.t('app.child', {count: 1})
$.t('app.child', {count: 3})
support for key priority when you need to try multiple keys, using the first one that exists.
$.t(['app.missingKey', 'app.existingKey'], {greeting: "hello"})
or you can just $('.mySelector').i18n()
assuming you have added the data-i18n="key"
attribute to your elements
// given
<ul class="nav">
<li class="active"><a href="#" data-i18n="nav.home">home</a></li>
<li><a href="#" data-i18n="nav.1">link1</a></li>
<li><a href="#" data-i18n="nav.2">link2</a></li>
</ul>
$.i18n.init({
lng: 'en-US',
ns: { namespaces: ['ns.common', 'ns.special'], defaultNs: 'ns.special'}
}, function() {
$('.nav').i18n();
});
For missing keys (if the option 'addMissing' is set to true) will be send to server with actual text as defaultValue.
Sample usage
In the folder you find one static sample.
serverside integrations
i18next-node is bringing i18next to node.js
Inspiration
Building
To build your own copy of i18next, check out the repository and:
git clone https://github.com/jamuhl/i18next.git
cd i18next
npm install -g grunt-cli
npm install
grunt
The grunt command will build i18next into the bin/ and release/ folders.
License (MIT)
Copyright (c) 2011 Jan Mühlemann
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.