1 |
|
2 | import dayjs from '../index';
|
3 | var locale = {
|
4 | name: 'ga',
|
5 | weekdays: 'Dé Domhnaigh_Dé Luain_Dé Máirt_Dé Céadaoin_Déardaoin_Dé hAoine_Dé Satharn'.split('_'),
|
6 | months: 'Eanáir_Feabhra_Márta_Aibreán_Bealtaine_Méitheamh_Iúil_Lúnasa_Meán Fómhair_Deaireadh Fómhair_Samhain_Nollaig'.split('_'),
|
7 | weekStart: 1,
|
8 | weekdaysShort: 'Dom_Lua_Mái_Céa_Déa_hAo_Sat'.split('_'),
|
9 | monthsShort: 'Eaná_Feab_Márt_Aibr_Beal_Méit_Iúil_Lúna_Meán_Deai_Samh_Noll'.split('_'),
|
10 | weekdaysMin: 'Do_Lu_Má_Ce_Dé_hA_Sa'.split('_'),
|
11 | ordinal: function ordinal(n) {
|
12 | return n;
|
13 | },
|
14 | formats: {
|
15 | LT: 'HH:mm',
|
16 | LTS: 'HH:mm:ss',
|
17 | L: 'DD/MM/YYYY',
|
18 | LL: 'D MMMM YYYY',
|
19 | LLL: 'D MMMM YYYY HH:mm',
|
20 | LLLL: 'dddd, D MMMM YYYY HH:mm'
|
21 | },
|
22 | relativeTime: {
|
23 | future: 'i %s',
|
24 | past: '%s ó shin',
|
25 | s: 'cúpla soicind',
|
26 | m: 'nóiméad',
|
27 | mm: '%d nóiméad',
|
28 | h: 'uair an chloig',
|
29 | hh: '%d uair an chloig',
|
30 | d: 'lá',
|
31 | dd: '%d lá',
|
32 | M: 'mí',
|
33 | MM: '%d mí',
|
34 | y: 'bliain',
|
35 | yy: '%d bliain'
|
36 | }
|
37 | };
|
38 | dayjs.locale(locale, null, true);
|
39 | export default locale; |
\ | No newline at end of file |