mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-09-09 01:17:04 +03:00
Move almost all libs to node_modules
Update libs
This commit is contained in:
parent
b895c6ac1a
commit
c3985da102
374 changed files with 17466 additions and 83393 deletions
|
|
@ -1,32 +1,34 @@
|
|||
// moment.js language configuration
|
||||
// language : euskara (eu)
|
||||
// author : Eneko Illarramendi : https://github.com/eillarra
|
||||
//! moment.js locale configuration
|
||||
//! locale : Basque [eu]
|
||||
//! author : Eneko Illarramendi : https://github.com/eillarra
|
||||
|
||||
(function (factory) {
|
||||
if (typeof define === 'function' && define.amd) {
|
||||
define(['moment'], factory); // AMD
|
||||
} else if (typeof exports === 'object') {
|
||||
module.exports = factory(require('../moment')); // Node
|
||||
} else {
|
||||
factory(window.moment); // Browser global
|
||||
}
|
||||
}(function (moment) {
|
||||
return moment.lang('eu', {
|
||||
months : "urtarrila_otsaila_martxoa_apirila_maiatza_ekaina_uztaila_abuztua_iraila_urria_azaroa_abendua".split("_"),
|
||||
monthsShort : "urt._ots._mar._api._mai._eka._uzt._abu._ira._urr._aza._abe.".split("_"),
|
||||
weekdays : "igandea_astelehena_asteartea_asteazkena_osteguna_ostirala_larunbata".split("_"),
|
||||
weekdaysShort : "ig._al._ar._az._og._ol._lr.".split("_"),
|
||||
weekdaysMin : "ig_al_ar_az_og_ol_lr".split("_"),
|
||||
;(function (global, factory) {
|
||||
typeof exports === 'object' && typeof module !== 'undefined'
|
||||
&& typeof require === 'function' ? factory(require('../moment')) :
|
||||
typeof define === 'function' && define.amd ? define(['../moment'], factory) :
|
||||
factory(global.moment)
|
||||
}(this, function (moment) { 'use strict';
|
||||
|
||||
|
||||
var eu = moment.defineLocale('eu', {
|
||||
months : 'urtarrila_otsaila_martxoa_apirila_maiatza_ekaina_uztaila_abuztua_iraila_urria_azaroa_abendua'.split('_'),
|
||||
monthsShort : 'urt._ots._mar._api._mai._eka._uzt._abu._ira._urr._aza._abe.'.split('_'),
|
||||
monthsParseExact : true,
|
||||
weekdays : 'igandea_astelehena_asteartea_asteazkena_osteguna_ostirala_larunbata'.split('_'),
|
||||
weekdaysShort : 'ig._al._ar._az._og._ol._lr.'.split('_'),
|
||||
weekdaysMin : 'ig_al_ar_az_og_ol_lr'.split('_'),
|
||||
weekdaysParseExact : true,
|
||||
longDateFormat : {
|
||||
LT : "HH:mm",
|
||||
L : "YYYY-MM-DD",
|
||||
LL : "YYYY[ko] MMMM[ren] D[a]",
|
||||
LLL : "YYYY[ko] MMMM[ren] D[a] LT",
|
||||
LLLL : "dddd, YYYY[ko] MMMM[ren] D[a] LT",
|
||||
l : "YYYY-M-D",
|
||||
ll : "YYYY[ko] MMM D[a]",
|
||||
lll : "YYYY[ko] MMM D[a] LT",
|
||||
llll : "ddd, YYYY[ko] MMM D[a] LT"
|
||||
LT : 'HH:mm',
|
||||
LTS : 'HH:mm:ss',
|
||||
L : 'YYYY-MM-DD',
|
||||
LL : 'YYYY[ko] MMMM[ren] D[a]',
|
||||
LLL : 'YYYY[ko] MMMM[ren] D[a] HH:mm',
|
||||
LLLL : 'dddd, YYYY[ko] MMMM[ren] D[a] HH:mm',
|
||||
l : 'YYYY-M-D',
|
||||
ll : 'YYYY[ko] MMM D[a]',
|
||||
lll : 'YYYY[ko] MMM D[a] HH:mm',
|
||||
llll : 'ddd, YYYY[ko] MMM D[a] HH:mm'
|
||||
},
|
||||
calendar : {
|
||||
sameDay : '[gaur] LT[etan]',
|
||||
|
|
@ -37,24 +39,28 @@
|
|||
sameElse : 'L'
|
||||
},
|
||||
relativeTime : {
|
||||
future : "%s barru",
|
||||
past : "duela %s",
|
||||
s : "segundo batzuk",
|
||||
m : "minutu bat",
|
||||
mm : "%d minutu",
|
||||
h : "ordu bat",
|
||||
hh : "%d ordu",
|
||||
d : "egun bat",
|
||||
dd : "%d egun",
|
||||
M : "hilabete bat",
|
||||
MM : "%d hilabete",
|
||||
y : "urte bat",
|
||||
yy : "%d urte"
|
||||
future : '%s barru',
|
||||
past : 'duela %s',
|
||||
s : 'segundo batzuk',
|
||||
m : 'minutu bat',
|
||||
mm : '%d minutu',
|
||||
h : 'ordu bat',
|
||||
hh : '%d ordu',
|
||||
d : 'egun bat',
|
||||
dd : '%d egun',
|
||||
M : 'hilabete bat',
|
||||
MM : '%d hilabete',
|
||||
y : 'urte bat',
|
||||
yy : '%d urte'
|
||||
},
|
||||
ordinalParse: /\d{1,2}\./,
|
||||
ordinal : '%d.',
|
||||
week : {
|
||||
dow : 1, // Monday is the first day of the week.
|
||||
doy : 7 // The week that contains Jan 1st is the first week of the year.
|
||||
}
|
||||
});
|
||||
}));
|
||||
|
||||
return eu;
|
||||
|
||||
}));
|
||||
Loading…
Add table
Add a link
Reference in a new issue