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:
Luky Setiawan
2025-06-02 15:17:58 +07:00
committed by GitHub
parent 7e1d880915
commit 4d19711d8e
3 changed files with 3031 additions and 1 deletions

View File

@@ -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: "한국어",

File diff suppressed because it is too large Load Diff

View File

@@ -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,
},
}