Skip to content

Commit 74e5247

Browse files
authored
fix: Add Kirundi (rn) locale (#1793)
1 parent 4a7b7d0 commit 74e5247

File tree

1 file changed

+40
-0
lines changed

1 file changed

+40
-0
lines changed

src/locale/rn.js

+40
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
// Kirundi [rn]
2+
import dayjs from 'dayjs'
3+
4+
const locale = {
5+
name: 'rn',
6+
weekdays: 'Ku wa Mungu_Ku wa Mbere_Ku wa Kabiri_Ku wa Gatatu_Ku wa Kane_Ku wa Gatanu_Ku wa Gatandatu'.split('_'),
7+
weekdaysShort: 'Kngu_Kmbr_Kbri_Ktat_Kkan_Ktan_Kdat'.split('_'),
8+
weekdaysMin: 'K7_K1_K2_K3_K4_K5_K6'.split('_'),
9+
months: 'Nzero_Ruhuhuma_Ntwarante_Ndamukiza_Rusama_Ruhenshi_Mukakaro_Myandagaro_Nyakanga_Gitugutu_Munyonyo_Kigarama'.split('_'),
10+
monthsShort: 'Nzer_Ruhuh_Ntwar_Ndam_Rus_Ruhen_Muk_Myand_Nyak_Git_Muny_Kig'.split('_'),
11+
weekStart: 1,
12+
ordinal: n => n,
13+
relativeTime: {
14+
future: 'mu %s',
15+
past: '%s',
16+
s: 'amasegonda',
17+
m: 'Umunota',
18+
mm: '%d iminota',
19+
h: 'isaha',
20+
hh: '%d amasaha',
21+
d: 'Umunsi',
22+
dd: '%d iminsi',
23+
M: 'ukwezi',
24+
MM: '%d amezi',
25+
y: 'umwaka',
26+
yy: '%d imyaka'
27+
},
28+
formats: {
29+
LT: 'HH:mm',
30+
LTS: 'HH:mm:ss',
31+
L: 'DD/MM/YYYY',
32+
LL: 'D MMMM YYYY',
33+
LLL: 'D MMMM YYYY HH:mm',
34+
LLLL: 'dddd, D MMMM YYYY HH:mm'
35+
}
36+
}
37+
38+
dayjs.locale(locale, null, true)
39+
40+
export default locale

0 commit comments

Comments
 (0)