i18next-scanner
Scan your code, extract translation keys/values, and merge them into i18n resource files.
Notice
There is a major breaking change since v1.0, and the API interface and options are not compatible with v0.x.
Checkout Migration Guide while upgrading from earlier versions.
Features
- Fully compatible with i18next - a full-featured i18n javascript library for translating your webapplication.
- Support Key Based Fallback to write your code without the need to maintain i18n keys. This feature is available since i18next@^2.1.0
- A standalone parser API
- A transform stream that works with both Gulp and Grunt task runner.
- Support custom transform and flush functions.
Installation
npm install --save-dev i18next-scanner
Usage
Standard API
var fs = require('fs');
var Parser = require('i18next-scanner').Parser;
var customHandler = function(key) {
parser.set(key, '__TRANSLATION__');
};
var parser = new Parser();
var content = '';
content = fs.readFileSync('/path/to/app.js', 'utf-8');
parser
.parseFuncFromString(content, customHandler)
.parseFuncFromString(content, { list: ['i18next.t']})
.parseFuncFromString(content, { list: ['i18next.t']}, customHandler)
.parseFuncFromString(content);
content = fs.readFileSync('/path/to/index.html', 'utf-8');
parser
.parseAttrFromString(content, customHandler)
.parseAttrFromString(content, { list: ['data-i18n'] })
.parseAttrFromString(content, { list: ['data-i18n'] }, customHandler)
.parseAttrFromString(content);
console.log(parser.get());
console.log(parser.get({ sort: true }));
console.log(parser.get('translation:key', { lng: 'en'}));
Transform Stream API
The main entry function of i18next-scanner is a transform stream. You can use vinyl-fs to create a readable stream, pipe the stream through i18next-scanner to transform your code into an i18n resource object, and write to a destination folder.
Here is a simple example showing how that works:
var scanner = require('i18next-scanner');
var vfs = require('vinyl-fs');
var sort = require('gulp-sort');
var options = {
};
vfs.src(['/path/to/src'])
.pipe(sort())
.pipe(scanner(options))
.pipe(vfs.dest('/path/to/dest'));
Alternatively, you can get a transform stream by calling createStream() as show below:
vfs.src(['/path/to/src'])
.pipe(sort())
.pipe(scanner.createStream(options))
.pipe(vfs.dest('/path/to/dest'));
Gulp
Now you are ready to set up a minimal configuration, and get started with Gulp. For example:
var gulp = require('gulp');
var sort = require('gulp-sort');
var scanner = require('i18next-scanner');
gulp.task('i18next', function() {
return gulp.src(['src/**/*.{js,html}'])
.pipe(sort())
.pipe(scanner({
lngs: ['en', 'de'],
resource: {
loadPath: 'assets/i18n/{{lng}}/{{ns}}.json',
savePath: 'i18n/{{lng}}/{{ns}}.json'
}
}))
.pipe(gulp.dest('assets'));
});
Grunt
Once you've finished the installation, add this line to your project's Gruntfile:
grunt.loadNpmTasks('i18next-scanner');
In your project's Gruntfile, add a section named i18next
to the data object passed into grunt.initConfig()
, like so:
grunt.initConfig({
i18next: {
dev: {
src: 'src/**/*.{js,html}',
dest: 'assets',
options: {
lngs: ['en', 'de'],
resource: {
loadPath: 'assets/i18n/{{lng}}/{{ns}}.json',
savePath: 'i18n/{{lng}}/{{ns}}.json'
}
}
}
}
});
API
There are two ways to use i18next-scanner:
Standard API
var Parser = require('i18next-scanner').Parser;
var parser = new Parser(options);
var code = "i18next.t('key'); ...";
parser.parseFuncFromString(content);
var html = '<div data-i18n="key"></div>';
parser.parseAttrFromString(html);
parser.get();
parser.parseFuncFromString
Parse translation key from JS function
parser.parseFuncFromString(content)
parser.parseFuncFromString(content, { list: ['_t'] });
parser.parseFuncFromString(content, function(key, options) {
options.defaultValue = key;
parser.set(key, options);
});
parser.parseFuncFromString(content, { list: ['_t'] }, function(key, options) {
parser.set(key, options);
});
parser.parseAttrFromString
Parse translation key from HTML attribute
parser.parseAttrFromString(content)
parser.parseAttrFromString(content, { list: ['data-i18n'] });
parser.parseAttrFromString(content, function(key) {
var defaultValue = key;
parser.set(key, defaultValue);
});
parser.parseAttrFromString(content, { list: ['data-i18n'] }, function(key) {
parser.set(key);
});
parser.get
Get the value of a translation key or the whole i18n resource store
parser.get();
parser.get({ sort: true });
parser.get('ns:key');
parser.get('ns:key', { lng: 'en' });
parser.set
Set a translation key with an optional defaultValue to i18n resource store
parser.set(key);
parser.set(key, defaultValue);
parser.set(key, {
defaultValue: defaultValue
});
Transform Stream API
var scanner = require('i18next-scanner');
scanner.createStream(options, customTransform , customFlush );
customTransform
The optional customTransform
function is provided as the 2nd argument for the transform stream API. It must have the following signature: function (file, encoding, done) {}
. A minimal implementation should call the done()
function to indicate that the transformation is done, even if that transformation means discarding the file.
For example:
var scanner = require('i18next-scanner');
var vfs = require('vinyl-fs');
var customTransform = function _transform(file, enc, done) {
var parser = this.parser;
var content = fs.readFileSync(file.path, enc);
done();
};
vfs.src(['/path/to/src'])
.pipe(scanner(options, customTransform))
.pipe(vfs.dest('path/to/dest'));
To parse a translation key, call parser.set(key, defaultValue)
to assign the key with an optional defaultValue
.
For example:
var customTransform = function _transform(file, enc, done) {
var parser = this.parser;
var content = fs.readFileSync(file.path, enc);
parser.parseFuncFromString(content, { list: ['i18n.t'] }, function(key) {
var defaultValue = '__L10N__';
parser.set(key, defaultValue);
});
done();
};
Alternatively, you may call parser.set(defaultKey, value)
to assign the value with a default key. The defaultKey
should be unique string and can never be null
, undefined
, or empty.
For example:
var hash = require('sha1');
var customTransform = function _transform(file, enc, done) {
var parser = this.parser;
var content = fs.readFileSync(file.path, enc);
parser.parseFuncFromString(content, { list: ['i18n._'] }, function(key) {
var value = key;
var defaultKey = hash(value);
parser.set(defaultKey, value);
});
done();
};
customFlush
The optional customFlush
function is provided as the last argument for the transform stream API, it is called just prior to the stream ending. You can implement your customFlush
function to override the default flush
function. When everything's done, call the done()
function to indicate the stream is finished.
For example:
var scanner = require('i18next-scanner');
var vfs = require('vinyl-fs');
var customFlush = function _flush(done) {
var parser = this.parser;
var resStore = parser.getResourceStore();
Object.keys(resStore).forEach(function(lng) {
var namespaces = resStore[lng];
Object.keys(namespaces).forEach(function(ns) {
var obj = namespaces[ns];
});
});
done();
};
vfs.src(['/path/to/src'])
.pipe(scanner(options, customTransform, customFlush))
.pipe(vfs.dest('/path/to/dest'));
Default Options
Below are the configuration options with their default values:
{
debug: false,
removeUnusedKeys: false,
sort: false,
attr: {
list: ['data-i18n'],
extensions: ['.html', '.htm']
},
func: {
list: ['i18next.t', 'i18n.t'],
extensions: ['.js', '.jsx']
},
lngs: ['en'],
ns: ['translation'],
defaultNs: 'translation',
defaultValue: '',
resource: {
loadPath: 'i18n/{{lng}}/{{ns}}.json',
savePath: 'i18n/{{lng}}/{{ns}}.json',
},
nsSeparator: ':',
keySeparator: '.',
pluralSeparator: '_',
contextSeparator: '_',
interpolation: {
pefix: '{{',
suffix: '}}'
}
}
debug
Type: Boolean
Default: false
Set to true
to trun on debug output.
removeUnusedKeys
Type: Boolean
Default: false
Set to true
to remove unused translation keys from i18n resource files.
sort
Type: Boolean
Default: false
Set to true
if you want to sort translation keys in ascending order.
attr
Type: Object
or false
If an Object
is supplied, you can either specify a list of attributes and extensions, or override the default.
{
attr: {
list: ['data-i18n'],
extensions: ['.html', '.htm']
}
}
You can set attr to false
to disable parsing attribute as below:
{
attr: false
}
func
Type: Object
or false
If an Object
is supplied, you can either specify a list of translation functions and extensions, or override the default.
{
func: {
list: ['i18next.t', 'i18n.t'],
extensions: ['.js', '.jsx']
}
}
You can set func to false
to disable parsing translation function as below:
{
func: false
}
lngs
Type: Array
Default: ['en']
An array of supported languages.
ns
Type: String
or Array
Default: ['translation']
A namespace string or an array of namespaces.
defaultNs
Type: String
Default: 'translation'
The default namespace used if not passed to translation function.
defaultValue
Type: String
or Function
Default: ''
The default value used if not passed to parser.set
.
Examples
Provides the default value with a string:
{
defaultValue: '__NOT_TRANSLATED__'
}
Provides the default value as a callback function:
{
defaultValue: function(lng, ns, key) {
if (lng === 'en') {
return key;
}
return '__NOT_TRANSLATED__';
}
}
resource
Type: Object
Resource options:
{
resource: {
loadPath: 'i18n/{{lng}}/{{ns}}.json',
savePath: 'i18n/{{lng}}/{{ns}}.json',
jsonIndent: 2
}
}
keySeparator
Type: String
or false
Default: '.'
Key separator used in translation keys.
Set to false
to disable key separator if you prefer having keys as the fallback for translation (e.g. gettext). This feature is supported by i18next@2.1.0. Also see Key based fallback at http://i18next.com/translate/keyBasedFallback.
nsSeparator
Type: String
or false
Default: ':'
Namespace separator used in translation keys.
Set to false
to disable namespace separator if you prefer having keys as the fallback for translation (e.g. gettext). This feature is supported by i18next@2.1.0. Also see Key based fallback at http://i18next.com/translate/keyBasedFallback.
pluralSeparator
Type: String
Default: '_'
The character to split plural from key.
contextSeparator
Type: String
Default: '_'
The character to split context from key.
interpolation
Type: Object
interpolation options
{
interpolation: {
prefix: '{{',
suffix: '}}'
}
}
Integration Guide
Checkout Integration Guide to learn how to integrate with React, Gettext Style I18n, and Handlebars.
License
Copyright (c) 2015-2016 Cheton Wu
Licensed under the MIT License.