Added indonesian language files

This commit is contained in:
muhtarudinsiregar 2017-09-22 18:58:37 +07:00
parent de4832168a
commit 086e2dd7ac
3 changed files with 14 additions and 2 deletions

11
src/lang/id.js Normal file
View File

@ -0,0 +1,11 @@
/* eslint-disable */
const id = {
headings: {
contact: "Kontak",
experience: "Pengalaman",
education: "Pendidikan",
skills: "Keterampilan",
about: "Tentang Saya"
}
};
export default id;

View File

@ -84,5 +84,5 @@ export const PERSON = {
website: 'johndoe.com',
github: 'johnyD'
},
lang: 'en' // en, de, fr, pt, cn, it, es, th
lang: 'en' // en, de, fr, pt, cn, it, es, th, id
};

View File

@ -6,7 +6,8 @@ import cn from './lang/cn';
import it from './lang/it';
import es from './lang/es';
import th from './lang/th';
import id from './lang/id';
export const terms = {
en, de, fr, pt, cn, it, es, th
en, de, fr, pt, cn, it, es, th, id
};