20 lines
581 B
TypeScript
Executable File
20 lines
581 B
TypeScript
Executable File
import { LangKeyword } from "./type";
|
|
|
|
export const langId: Record<LangKeyword, string> = {
|
|
"Add New": "Tambah Baru",
|
|
Save: "Simpan",
|
|
Delete: "Hapus",
|
|
"Record Saved": "Data Tersimpan",
|
|
Search: "Cari",
|
|
"Add Another": "Tambah Baru",
|
|
"Mark as": "Tandai sebagai",
|
|
Add: "Tambah",
|
|
"Remove this file ?": "Hapus file ini ?",
|
|
"Upload Multiple Files": "Unggah Beberapa File",
|
|
"Back To List": "Kembali ke List",
|
|
"is required": "harus diisi",
|
|
"Save Failed": "Gagal Menyimpan",
|
|
"please correct": "mohon benahi",
|
|
"errors": "kesalahan berikut"
|
|
};
|