mirror of
https://github.com/bodyrep/DemoApp.git
synced 2026-01-26 07:01:38 +00:00
can read and display workouts
This commit is contained in:
54
node_modules/moment/lang/eu.js
generated
vendored
Normal file
54
node_modules/moment/lang/eu.js
generated
vendored
Normal file
@@ -0,0 +1,54 @@
|
||||
// moment.js language configuration
|
||||
// language : euskara (eu)
|
||||
// author : Eneko Illarramendi : https://github.com/eillarra
|
||||
(function () {
|
||||
var lang = {
|
||||
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("_"),
|
||||
longDateFormat : {
|
||||
LT : "HH:mm",
|
||||
L : "YYYY-MM-DD",
|
||||
LL : "YYYYko MMMMren D[a]",
|
||||
LLL : "YYYYko MMMMren D[a] LT",
|
||||
LLLL : "dddd, YYYYko MMMMren D[a] LT"
|
||||
},
|
||||
calendar : {
|
||||
sameDay : '[gaur] LT[etan]',
|
||||
nextDay : '[bihar] LT[etan]',
|
||||
nextWeek : 'dddd LT[etan]',
|
||||
lastDay : '[atzo] LT[etan]',
|
||||
lastWeek : '[aurreko] dddd LT[etan]',
|
||||
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"
|
||||
},
|
||||
ordinal : function (number) {
|
||||
return '.';
|
||||
}
|
||||
};
|
||||
|
||||
// Node
|
||||
if (typeof module !== 'undefined' && module.exports) {
|
||||
module.exports = lang;
|
||||
}
|
||||
// Browser
|
||||
if (typeof window !== 'undefined' && this.moment && this.moment.lang) {
|
||||
this.moment.lang('eu', lang);
|
||||
}
|
||||
}());
|
||||
Reference in New Issue
Block a user