I managed to put this together with below patch, added msgid "File on Disk"
to English_GB internationalisation file intl/js/tvheadend.js.en_GB.po
, I am not sure if there is a method to add to others:
--- src/webui/static/app/dvr.js.orig 2017-11-01 19:35:09.647505496 +0000
+++ src/webui/static/app/dvr.js 2017-11-01 20:22:48.859577501 +0000
@@ -23,6 +23,7 @@
var duplicate = params[11].value;
var autorec_caption = params[12].value;
var timerec_caption = params[13].value;
+ var filename = params[14].value;
var content = '';
var but;
@@ -63,6 +64,8 @@
content += '<div class="x-epg-meta"><span class="x-epg-prefix">' + _('Status') + ':</span><span class="x-epg-body">' + status + '</span></div>';
if (filesize)
content += '<div class="x-epg-meta"><span class="x-epg-prefix">' + _('File size') + ':</span><span class="x-epg-body">' + parseInt(filesize / 1000000) + ' MB</span></div>';
+ if (filename)
+ content += '<div class="x-epg-meta"><span class="x-epg-prefix">' + _('File on Disk') + ':</span><span class="x-epg-body">' + filename + '</span></div>';
if (comment)
content += '<div class="x-epg-meta"><span class="x-epg-prefix">' + _('Comment') + ':</span><span class="x-epg-body">' + comment + '</span></div>';
if (autorec_caption)
@@ -118,7 +121,7 @@
uuid: uuid,
list: 'channel_icon,disp_title,disp_subtitle,episode,start_real,stop_real,' +
'duration,disp_description,status,filesize,comment,duplicate,' +
- 'autorec_caption,timerec_caption'
+ 'autorec_caption,timerec_caption,filename'
},
success: function(d) {
d = json_decode(d);
Works well, as per attached screenshots below.