diff --git a/src/webui/static/app/ext.css b/src/webui/static/app/ext.css index 596b0809..ff2a1a59 100644 --- a/src/webui/static/app/ext.css +++ b/src/webui/static/app/ext.css @@ -512,7 +512,7 @@ .x-nice-date { display: inline-block; - width: 6em; + width: 10em; } .x-nice-time { diff --git a/src/webui/static/app/tvheadend.js b/src/webui/static/app/tvheadend.js index 53106749..1e6f879d 100644 --- a/src/webui/static/app/tvheadend.js +++ b/src/webui/static/app/tvheadend.js @@ -156,7 +156,7 @@ Ext.Ajax.request({ */ tvheadend.niceDate = function(dt) { var d = new Date(dt); - return '
' + d.toLocaleDateString() + '
' + + return '
' + d.toLocaleString(window.navigator.language, {weekday: 'long'}) + ' ' + d.toLocaleDateString() + '
' + '
' + d.toLocaleTimeString() + '
'; }