2018-09-24 22:55:17 +03:00
|
|
|
'use strict';
|
2018-06-22 03:24:30 +03:00
|
|
|
|
2018-10-04 02:58:45 +03:00
|
|
|
// Wordlists
|
|
|
|
// See: https://github.com/bitcoin/bips/blob/master/bip-0039/bip-0039-wordlists.md
|
|
|
|
|
|
|
|
|
2018-09-24 22:55:17 +03:00
|
|
|
import { Wordlist } from '../utils/wordlist';
|
2018-06-22 03:24:30 +03:00
|
|
|
|
2018-10-04 02:58:45 +03:00
|
|
|
import { langEn as _en } from './lang-en';
|
|
|
|
import { langEs as _es } from './lang-es';
|
|
|
|
import { langFr as _fr } from './lang-fr';
|
2018-06-24 11:03:21 +03:00
|
|
|
import { langJa as _ja } from './lang-ja';
|
|
|
|
import { langKo as _ko } from './lang-ko';
|
|
|
|
import { langIt as _it } from './lang-it';
|
|
|
|
import { langZhCn as _zh_cn, langZhTw as _zh_tw } from './lang-zh';
|
2018-06-22 03:24:30 +03:00
|
|
|
|
2018-06-24 11:03:21 +03:00
|
|
|
const en: Wordlist = _en;
|
2018-10-04 02:58:45 +03:00
|
|
|
const es: Wordlist = _es;
|
|
|
|
const fr: Wordlist = _fr;
|
2018-06-24 11:03:21 +03:00
|
|
|
const it: Wordlist = _it;
|
|
|
|
const ja: Wordlist = _ja;
|
2018-10-04 02:58:45 +03:00
|
|
|
const ko: Wordlist = _ko;
|
2018-06-24 11:03:21 +03:00
|
|
|
const zh: Wordlist = _zh_cn;
|
|
|
|
const zh_cn: Wordlist = _zh_cn;
|
|
|
|
const zh_tw: Wordlist = _zh_tw;
|
2018-06-22 03:24:30 +03:00
|
|
|
|
|
|
|
export {
|
2018-10-04 02:58:45 +03:00
|
|
|
en, es, fr, it, ja, ko, zh, zh_cn, zh_tw
|
2018-06-22 03:24:30 +03:00
|
|
|
}
|