Merge pull request #2434 from h3poteto/iss-2424

refs #2424 Add Indonesian language
This commit is contained in:
AkiraFukushima 2021-05-22 16:12:17 +09:00 committed by GitHub
commit f1d48d4d61
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 10 additions and 0 deletions

View File

@ -4,6 +4,7 @@ import de from '~/src/config/locales/de/translation.json'
import en from '~/src/config/locales/en/translation.json'
import es_es from '~/src/config/locales/es_es/translation.json'
import fr from '~/src/config/locales/fr/translation.json'
import id from '~/src/config/locales/id/translation.json'
import it from '~/src/config/locales/it/translation.json'
import ja from '~/src/config/locales/ja/translation.json'
import ko from '~/src/config/locales/ko/translation.json'
@ -38,6 +39,9 @@ const options: InitOptions = {
fr: {
translation: fr
},
id: {
translation: id
},
it: {
translation: it
},

View File

@ -29,6 +29,11 @@ export default {
key: 'pl',
rfc4646: 'pl'
},
id: {
name: 'Indonesian',
key: 'id',
rfc4646: 'id'
},
it: {
name: 'Italiano',
key: 'it',

View File

@ -43,6 +43,7 @@ export default {
Language.en,
Language.es_es,
Language.fr,
Language.id,
Language.it,
Language.ja,
Language.ko,