Here's a screenie -> https://www.dropbox.com/s/hjzlffmwtc29cvq/Screenshot%202016-01-19%2015.06.44.png?dl=0 and the code:
a = this._calendar[a];
return "function" === typeof a ? a.apply(b, [c]) : a
},
_relativeTime: {
future: "in%s",
past: "%s ago",
s: "a few seconds",
m: "a minute",
mm: "%d minutes",
h: "an hour",
hh: "%d hours",
d: "a day",
dd: "%d days",
M: "a month",
MM: "%d months",
y: "a year",
yy: "%d years"
},
relativeTime: function(a, b, c, d) {
var e = this._relativeTime[c];
return "function" === typeof e ? e(a, b, c, d) : e.replace(/%d/i, a)
},
pastFuture: function(a, b) {
var c = this._relativeTime[0 < a ? "future": "past"];
return "function" === typeof c ? c(b) : c.replace(/%s/i, b)
},
ordinal: function(a) {
return this._ordinal.replace("%d", a)
},
_ordinal: "%d",
_ordinalParse: /\d{1,2}/,
preparse: function(a) {
return a
},
postformat: function(a) {
return a
},
week: function(a) {
return S(a, this._week.dow, this._week.doy).week
},
_week: {
dow: 0,
doy: 6
},
_invalidDate: "Invalid date",
invalidDate: function() {
return this._invalidDate
}
});