Indonesian language

This commit is contained in:
Ben Grant 2021-05-25 15:49:24 +10:00
parent 4c39bd7e07
commit 1a872fb1c3
7 changed files with 255 additions and 0 deletions

View file

@ -93,6 +93,7 @@ const Settings = () => {
'de': 'Deutsch',
'es': 'Español',
'fr': 'Français',
'id': 'Indonesia',
'ko': '한국어',
...process.env.NODE_ENV !== 'production' && { 'cimode': 'DEV' },
}}

View file

@ -4,6 +4,7 @@ const locales = {
es: () => import('dayjs/locale/es'),
ko: () => import('dayjs/locale/ko'),
fr: () => import('dayjs/locale/fr'),
id: () => import('dayjs/locale/id'),
};
export default locales;