LaravelTest
106 строк · 3.0 Кб
1//! moment.js locale configuration
2//! locale : Irish or Irish Gaelic [ga]
3//! author : André Silva : https://github.com/askpt
4
5;(function (global, factory) {6typeof exports === 'object' && typeof module !== 'undefined'7&& typeof require === 'function' ? factory(require('../moment')) :8typeof define === 'function' && define.amd ? define(['../moment'], factory) :9factory(global.moment)10}(this, (function (moment) { 'use strict';11
12//! moment.js locale configuration13
14var months = [15'Eanáir',16'Feabhra',17'Márta',18'Aibreán',19'Bealtaine',20'Meitheamh',21'Iúil',22'Lúnasa',23'Meán Fómhair',24'Deireadh Fómhair',25'Samhain',26'Nollaig',27],28monthsShort = [29'Ean',30'Feabh',31'Márt',32'Aib',33'Beal',34'Meith',35'Iúil',36'Lún',37'M.F.',38'D.F.',39'Samh',40'Noll',41],42weekdays = [43'Dé Domhnaigh',44'Dé Luain',45'Dé Máirt',46'Dé Céadaoin',47'Déardaoin',48'Dé hAoine',49'Dé Sathairn',50],51weekdaysShort = ['Domh', 'Luan', 'Máirt', 'Céad', 'Déar', 'Aoine', 'Sath'],52weekdaysMin = ['Do', 'Lu', 'Má', 'Cé', 'Dé', 'A', 'Sa'];53
54var ga = moment.defineLocale('ga', {55months: months,56monthsShort: monthsShort,57monthsParseExact: true,58weekdays: weekdays,59weekdaysShort: weekdaysShort,60weekdaysMin: weekdaysMin,61longDateFormat: {62LT: 'HH:mm',63LTS: 'HH:mm:ss',64L: 'DD/MM/YYYY',65LL: 'D MMMM YYYY',66LLL: 'D MMMM YYYY HH:mm',67LLLL: 'dddd, D MMMM YYYY HH:mm',68},69calendar: {70sameDay: '[Inniu ag] LT',71nextDay: '[Amárach ag] LT',72nextWeek: 'dddd [ag] LT',73lastDay: '[Inné ag] LT',74lastWeek: 'dddd [seo caite] [ag] LT',75sameElse: 'L',76},77relativeTime: {78future: 'i %s',79past: '%s ó shin',80s: 'cúpla soicind',81ss: '%d soicind',82m: 'nóiméad',83mm: '%d nóiméad',84h: 'uair an chloig',85hh: '%d uair an chloig',86d: 'lá',87dd: '%d lá',88M: 'mí',89MM: '%d míonna',90y: 'bliain',91yy: '%d bliain',92},93dayOfMonthOrdinalParse: /\d{1,2}(d|na|mh)/,94ordinal: function (number) {95var output = number === 1 ? 'd' : number % 10 === 2 ? 'na' : 'mh';96return number + output;97},98week: {99dow: 1, // Monday is the first day of the week.100doy: 4, // The week that contains Jan 4th is the first week of the year.101},102});103
104return ga;105
106})));107