forked from helpers/handlebars-helpers
-
Notifications
You must be signed in to change notification settings - Fork 14
/
i18n.js
48 lines (38 loc) · 1.21 KB
/
i18n.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
'use strict';
var util = require('handlebars-utils');
var helpers = module.exports;
const getValue = require('get-value');
/**
* i18n helper. See [button-i18n](https://github.com/assemble/buttons)
* for a working example.
*
* @contributor Laurent Goderre <https://github.com/LaurentGoderrre>
* @param {String} `key`
* @param {Object} `options`
* @return {String}
* @api public
*/
helpers.i18n = function(prop, locals, options) {
if (util.isOptions(locals)) {
options = locals;
locals = {};
}
if (!util.isString(prop)) {
throw new Error('{{i18n}} helper expected "key" to be a string');
}
var opts = util.options(this, locals, options);
var context = Object.assign({}, this, opts);
var lang = context.language || context.lang;
if (typeof(lang) !== 'string') {
throw new TypeError('{{i18n}} helper expected "language" to be a string');
}
var cache = context[lang];
if (typeof cache === 'undefined') {
throw new Error('{{i18n}} helper cannot find language "' + lang + '"');
}
var result = getValue(cache, prop);
if (typeof result === 'undefined') {
throw new Error('{{i18n}} helper cannot find property "' + prop + '" for language "' + lang + '"');
}
return result;
};