Skip to content

Commit

Permalink
fix: Add Bahasa Melayu (Malaysia) locale (#485)
Browse files Browse the repository at this point in the history
  • Loading branch information
pete-arif authored and iamkun committed Feb 11, 2019
1 parent f251493 commit cb208b0
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions src/locale/ms.js
@@ -0,0 +1,36 @@
import dayjs from 'dayjs'

const locale = {
name: 'ms',
weekdays: 'Ahad_Isnin_Selasa_Rabu_Khamis_Jumaat_Sabtu'.split('_'),
months: 'Januari_Februari_Mac_April_Mei_Jun_Julai_Ogos_September_Oktober_November_Disember'.split('_'),
weekStart: 1,
formats: {
LT: 'HH.mm',
LTS: 'HH.mm.ss',
L: 'DD/MM/YYYY',
LL: 'D MMMM YYYY',
LLL: 'D MMMM YYYY HH.mm',
LLLL: 'dddd, D MMMM YYYY HH.mm'
},
relativeTime: {
future: 'dalam %s',
past: '%s yang lepas',
s: 'beberapa saat',
m: 'seminit',
mm: '%d minit',
h: 'sejam',
hh: '%d jam',
d: 'sehari',
dd: '%d hari',
M: 'sebulan',
MM: '%d bulan',
y: 'setahun',
yy: '%d tahun'
},
ordinal: n => `${n}.`
}

dayjs.locale(locale, null, true)

export default locale

0 comments on commit cb208b0

Please sign in to comment.