1 //! moment.js locale configuration
2 //! locale : Irish or Irish Gaelic [ga]
3 //! author : André Silva : https://github.com/askpt
5 ;(function (global, factory) {
6 typeof exports === 'object' && typeof module !== 'undefined'
7 && typeof require === 'function' ? factory(require('../moment')) :
8 typeof define === 'function' && define.amd ? define(['../moment'], factory) :
10 }(this, (function (moment) { 'use strict';
12 //! moment.js locale configuration
51 weekdaysShort = ['Domh', 'Luan', 'Máirt', 'Céad', 'Déar', 'Aoine', 'Sath'],
52 weekdaysMin = ['Do', 'Lu', 'Má', 'Cé', 'Dé', 'A', 'Sa'];
54 var ga = moment.defineLocale('ga', {
56 monthsShort: monthsShort,
57 monthsParseExact: true,
59 weekdaysShort: weekdaysShort,
60 weekdaysMin: weekdaysMin,
66 LLL: 'D MMMM YYYY HH:mm',
67 LLLL: 'dddd, D MMMM YYYY HH:mm',
70 sameDay: '[Inniu ag] LT',
71 nextDay: '[Amárach ag] LT',
72 nextWeek: 'dddd [ag] LT',
73 lastDay: '[Inné ag] LT',
74 lastWeek: 'dddd [seo caite] [ag] LT',
85 hh: '%d uair an chloig',
93 dayOfMonthOrdinalParse: /\d{1,2}(d|na|mh)/,
94 ordinal: function (number) {
95 var output = number === 1 ? 'd' : number % 10 === 2 ? 'na' : 'mh';
96 return number + output;
99 dow: 1, // Monday is the first day of the week.
100 doy: 4, // The week that contains Jan 4th is the first week of the year.