index.ts 222 Bytes
Newer Older
hucy's avatar
hucy committed
1 2 3 4
import zhCN from './zh-CN';
import zhTW from './zh-TW';
import enUS from './en-US';
import ja from './ja';
hucy's avatar
hucy committed
5
import ko from './ko';
hucy's avatar
hucy committed
6 7 8 9 10 11

export default {
  'zh-CN': zhCN,
  'zh-TW': zhTW,
  'en-US': enUS,
  ja: ja,
hucy's avatar
hucy committed
12
  ko: ko,
hucy's avatar
hucy committed
13
};