diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2018-06-23 21:48:36 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2018-06-23 21:48:36 +0900 |
| commit | 4d48b0be991b326684aae816e323ad59d2b5d4be (patch) | |
| tree | 6430ac0badaa1e4f72c04c60e30d98e4e590879b | |
| parent | スペイン語を追加 (diff) | |
| download | misskey-4d48b0be991b326684aae816e323ad59d2b5d4be.tar.gz misskey-4d48b0be991b326684aae816e323ad59d2b5d4be.tar.bz2 misskey-4d48b0be991b326684aae816e323ad59d2b5d4be.zip | |
Fix type
| -rw-r--r-- | locales/index.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/locales/index.ts b/locales/index.ts index f96074f1ae..45b5df0957 100644 --- a/locales/index.ts +++ b/locales/index.ts @@ -5,7 +5,7 @@ import * as fs from 'fs'; import * as yaml from 'js-yaml'; -export type LangKey = 'de' | 'en' | 'fr' | 'ja' | 'pl'; +export type LangKey = 'de' | 'en' | 'fr' | 'ja' | 'pl' | 'es'; export type LocaleObject = { [key: string]: any }; const loadLang = (lang: LangKey) => yaml.safeLoad( |