From d5ce076150bcbc392749088ce5396cc8f657a72e Mon Sep 17 00:00:00 2001 From: ProfYaffle Date: Sun, 21 Dec 2014 12:06:25 +0000 Subject: [PATCH] WebUI: Restore weekday name to Upcoming/Finished/Failed Recordings grids --- src/webui/static/app/idnode.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/webui/static/app/idnode.js b/src/webui/static/app/idnode.js index c4d76672..dbf192bd 100644 --- a/src/webui/static/app/idnode.js +++ b/src/webui/static/app/idnode.js @@ -303,7 +303,7 @@ tvheadend.IdNodeField = function(conf) } return function(v) { var dt = new Date(v * 1000); - return dt.toLocaleString(); + return dt.toLocaleString(window.navigator.language, {weekday: 'short'}) + ' ' + dt.toLocaleString(); } }