Added support for short year format.

This commit is contained in:
Martin Edenhofer 2018-01-24 09:24:34 +01:00
parent 4fa67c3d0c
commit 7f3d889bed

View file

@ -337,18 +337,20 @@ class _i18nSingleton extends Spine.Module
if offset
timeObject = new Date(timeObject.getTime() + (timeObject.getTimezoneOffset() * 60000))
d = timeObject.getDate()
m = timeObject.getMonth() + 1
y = timeObject.getFullYear()
S = timeObject.getSeconds()
M = timeObject.getMinutes()
H = timeObject.getHours()
d = timeObject.getDate()
m = timeObject.getMonth() + 1
yfull = timeObject.getFullYear()
yshort = timeObject.getYear()-100
S = timeObject.getSeconds()
M = timeObject.getMinutes()
H = timeObject.getHours()
format = format
.replace(/dd/, s(d, 2))
.replace(/d/, d)
.replace(/mm/, s(m, 2))
.replace(/m/, m)
.replace(/yyyy/, y)
.replace(/yyyy/, yfull)
.replace(/yy/, yshort)
.replace(/SS/, s(S, 2))
.replace(/MM/, s(M, 2))
.replace(/HH/, s(H, 2))