From c35a9c64f65ae724293362a359645d0dbcaf7e50 Mon Sep 17 00:00:00 2001 From: wahid Date: Thu, 28 Nov 2019 09:51:42 +0700 Subject: [PATCH] Added Bahasa Indonesia language support --- lang/id-ID.js | 3 +++ nuxt.config.js | 6 ++++++ 2 files changed, 9 insertions(+) create mode 100644 lang/id-ID.js diff --git a/lang/id-ID.js b/lang/id-ID.js new file mode 100644 index 000000000..c69f0c682 --- /dev/null +++ b/lang/id-ID.js @@ -0,0 +1,3 @@ +export default { + send: 'Kirim' +} diff --git a/nuxt.config.js b/nuxt.config.js index f7579ec35..9564f6a8f 100644 --- a/nuxt.config.js +++ b/nuxt.config.js @@ -314,6 +314,12 @@ export default { name: '简体中文', iso: 'zh-CN', file: 'zh-CN.js' + }, + { + code: 'id', + name: 'Bahasa Indonesia', + iso: 'id-ID', + file: 'id-ID.js' } ], defaultLocale: 'en',