-
Notifications
You must be signed in to change notification settings - Fork 0
/
i18n.js
95 lines (85 loc) · 1.98 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
/**
* 翻訳クラス
* https://blog.katsubemakito.net/nodejs/electron/electron-i18n
*/
//--------------------------------
// モジュール
//--------------------------------
const p = require('./package.json')
//--------------------------------
// exports
//--------------------------------
/**
* i18nクラス
*
* @example
* const i18n = require('./i18n')
* const _ = new i18n('ja', 'page1')
* console.log( _.t('foo') );
*/
module.exports = class i18n{
// 対応言語
static SUPPORT_LANG = ['ja', 'en']
// デフォルト言語
static DEFAULT_LANG = 'ja'
/**
* コンストラクタ
*
* @param {string} lang 言語CD
* @param {string} ns ネームスペース
* @param {string} dir 言語ファイルがあるディレクトリ
*/
constructor(lang=null, ns='default', dir='./locales'){
if( lang === null || ! this.isSupport(lang) ){
lang = i18n.DEFAULT_LANG
}
this._lang = lang // 言語
this._ns = ns // ネームスペース
this._dir = dir // 言語ファイルのディレクトリ
this._dic = null // 翻訳データ入れ
const ret = this.load()
if( ! ret ){
throw 'Can not load language file'
}
}
/**
* 言語ファイルを読み込む
*
* @return {boolean}
*/
load(){
const dir = this._dir
const lang = this._lang
const ns = this._ns
try{
this._dic = require(`${dir}/${lang}/${ns}.json`)
return(true)
}
catch(e){
return(false)
}
}
/**
* サポートしている言語かチェック
*
* @param {string} lang
* @return {boolean}
*/
isSupport(lang){
return( i18n.SUPPORT_LANG.indexOf(lang) !== -1 )
}
/**
* 指定言語のテキストを返却
*
* @param {string} key
* @return {string|undefined}
*/
t(key){
if( key in this._dic ){
let value = this._dic[key]
.replace('{{name}}', p.name);
return( value )
}
return(undefined)
}
}