feat(admin): Add Bahasa Indonesia language support (#12657)
* [feat] add Indonesian json translation file * [feat] include and export indonesian translation to index file * [feat] export the indonesian language object to languages.ts --------- Co-authored-by: luky <luzion1508@gmail.com>
This commit is contained in:
@@ -27,6 +27,7 @@ import {
|
||||
nl,
|
||||
hu,
|
||||
bs,
|
||||
id,
|
||||
} from "date-fns/locale"
|
||||
import { Language } from "./types"
|
||||
|
||||
@@ -187,6 +188,12 @@ export const languages: Language[] = [
|
||||
ltr: true,
|
||||
date_locale: vi,
|
||||
},
|
||||
{
|
||||
code: "id",
|
||||
display_name: "Bahasa Indonesia",
|
||||
ltr: true,
|
||||
date_locale: id,
|
||||
},
|
||||
{
|
||||
code: "ko",
|
||||
display_name: "한국어",
|
||||
|
||||
3020
packages/admin/dashboard/src/i18n/translations/id.json
Normal file
3020
packages/admin/dashboard/src/i18n/translations/id.json
Normal file
File diff suppressed because it is too large
Load Diff
@@ -26,7 +26,7 @@ import vi from "./vi.json"
|
||||
import ko from "./ko.json"
|
||||
import nl from "./nl.json"
|
||||
import bs from "./bs.json"
|
||||
|
||||
import id from "./id.json"
|
||||
export default {
|
||||
bs: {
|
||||
translation: bs,
|
||||
@@ -112,4 +112,7 @@ export default {
|
||||
nl: {
|
||||
translation: nl,
|
||||
},
|
||||
id: {
|
||||
translation: id,
|
||||
},
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user