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';
14
var gl = moment.defineLocale('gl', {
15
months: 'xaneiro_febreiro_marzo_abril_maio_xuño_xullo_agosto_setembro_outubro_novembro_decembro'.split(
18
monthsShort: 'xan._feb._mar._abr._mai._xuñ._xul._ago._set._out._nov._dec.'.split(
21
monthsParseExact: true,
22
weekdays: 'domingo_luns_martes_mércores_xoves_venres_sábado'.split('_'),
23
weekdaysShort: 'dom._lun._mar._mér._xov._ven._sáb.'.split('_'),
24
weekdaysMin: 'do_lu_ma_mé_xo_ve_sá'.split('_'),
25
weekdaysParseExact: true,
30
LL: 'D [de] MMMM [de] YYYY',
31
LLL: 'D [de] MMMM [de] YYYY H:mm',
32
LLLL: 'dddd, D [de] MMMM [de] YYYY H:mm',
35
sameDay: function () {
36
return '[hoxe ' + (this.hours() !== 1 ? 'ás' : 'á') + '] LT';
38
nextDay: function () {
39
return '[mañá ' + (this.hours() !== 1 ? 'ás' : 'á') + '] LT';
41
nextWeek: function () {
42
return 'dddd [' + (this.hours() !== 1 ? 'ás' : 'a') + '] LT';
44
lastDay: function () {
45
return '[onte ' + (this.hours() !== 1 ? 'á' : 'a') + '] LT';
47
lastWeek: function () {
49
'[o] dddd [pasado ' + (this.hours() !== 1 ? 'ás' : 'a') + '] LT'
55
future: function (str) {
56
if (str.indexOf('un') === 0) {
75
dayOfMonthOrdinalParse: /\d{1,2}º/,