UNPKG

869 BJavaScriptView Raw
1// Kinyarwanda (Rwanda) [rw]
2import dayjs from '../index';
3var locale = {
4 name: 'rw',
5 weekdays: 'Ku Cyumweru_Kuwa Mbere_Kuwa Kabiri_Kuwa Gatatu_Kuwa Kane_Kuwa Gatanu_Kuwa Gatandatu'.split('_'),
6 months: 'Mutarama_Gashyantare_Werurwe_Mata_Gicurasi_Kamena_Nyakanga_Kanama_Nzeri_Ukwakira_Ugushyingo_Ukuboza'.split('_'),
7 relativeTime: {
8 future: 'mu %s',
9 past: '%s',
10 s: 'amasegonda',
11 m: 'Umunota',
12 mm: '%d iminota',
13 h: 'isaha',
14 hh: '%d amasaha',
15 d: 'Umunsi',
16 dd: '%d iminsi',
17 M: 'ukwezi',
18 MM: '%d amezi',
19 y: 'umwaka',
20 yy: '%d imyaka'
21 },
22 formats: {
23 LT: 'HH:mm',
24 LTS: 'HH:mm:ss',
25 L: 'DD/MM/YYYY',
26 LL: 'D MMMM YYYY',
27 LLL: 'D MMMM YYYY HH:mm',
28 LLLL: 'dddd, D MMMM YYYY HH:mm'
29 },
30 ordinal: function ordinal(n) {
31 return n;
32 }
33};
34dayjs.locale(locale, null, true);
35export default locale;
\No newline at end of file