refs #3661 Add Icelandic as a translation

This commit is contained in:
AkiraFukushima 2022-11-04 20:56:23 +09:00
parent 02b439a321
commit 4eeb8cd6e6
No known key found for this signature in database
GPG Key ID: B6E51BAC4DE1A957
4 changed files with 12 additions and 0 deletions

View File

@ -10,6 +10,7 @@ const locales = [
'ja',
'ko',
'pl',
'is',
'it',
'zh_cn',
'zh_tw',

View File

@ -8,6 +8,7 @@ import fr from '~/src/config/locales/fr/translation.json'
import gd from '~/src/config/locales/gd/translation.json'
import id from '~/src/config/locales/id/translation.json'
import it from '~/src/config/locales/it/translation.json'
import is from '~/src/config/locales/is/translation.json'
import ja from '~/src/config/locales/ja/translation.json'
import ko from '~/src/config/locales/ko/translation.json'
import no from '~/src/config/locales/no/translation.json'
@ -53,6 +54,9 @@ const options: InitOptions = {
it: {
translation: it
},
is: {
translation: is
},
ja: {
translation: ja
},

View File

@ -25,6 +25,7 @@ export type LanguageList = {
sv_se: LanguageType
tzm: LanguageType
fa: LanguageType
is: LanguageType
}
const languageList: LanguageList = {
@ -73,6 +74,11 @@ const languageList: LanguageList = {
key: 'id',
rfc4646: 'id'
},
is: {
name: 'Icelandic',
key: 'is',
rfc4646: 'is'
},
it: {
name: 'Italiano',
key: 'it',

View File

@ -54,6 +54,7 @@ export default defineComponent({
Language.fr,
Language.gd,
Language.id,
Language.is,
Language.it,
Language.ja,
Language.ko,