From 33e0142a23a57b52ea6af8b0b77a2b9b90136d61 Mon Sep 17 00:00:00 2001 From: mpmc Date: Fri, 5 Oct 2018 12:38:09 +0100 Subject: [PATCH] =?utf8?q?webui:=20replace=20...=20with=20ellipsis=20?= =?utf8?q?=E2=80=A6?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- src/webui/static/app/epg.js | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/src/webui/static/app/epg.js b/src/webui/static/app/epg.js index d08a26c4d..8981214bb 100644 --- a/src/webui/static/app/epg.js +++ b/src/webui/static/app/epg.js @@ -684,7 +684,7 @@ tvheadend.epg = function() { // Title search box var epgFilterTitle = new Ext.form.TextField({ - emptyText: _('Search title...'), + emptyText: _('Search title…'), width: 200 }); @@ -695,7 +695,7 @@ tvheadend.epg = function() { // Channels, uses global store var epgFilterChannels = new Ext.ux.form.ComboAny({ - loadingText: _('Loading...'), + loadingText: _('Loading…'), width: 200, displayField: 'val', store: tvheadend.channels, @@ -704,7 +704,7 @@ tvheadend.epg = function() { forceSelection: true, triggerAction: 'all', typeAhead: true, - emptyText: _('Filter channel...'), + emptyText: _('Filter channel…'), listeners: { blur: function () { if(this.getRawValue() == "" ) { @@ -718,7 +718,7 @@ tvheadend.epg = function() { // Tags, uses global store var epgFilterChannelTags = new Ext.ux.form.ComboAny({ - loadingText: _('Loading...'), + loadingText: _('Loading…'), width: 200, displayField: 'val', store: tvheadend.channelTags, @@ -727,7 +727,7 @@ tvheadend.epg = function() { forceSelection: true, triggerAction: 'all', typeAhead: true, - emptyText: _('Filter tag...'), + emptyText: _('Filter tag…'), listeners: { blur: function () { if(this.getRawValue() == "" ) { @@ -742,7 +742,7 @@ tvheadend.epg = function() { // Content groups var epgFilterContentGroup = new Ext.ux.form.ComboAny({ - loadingText: _('Loading...'), + loadingText: _('Loading…'), width: 200, displayField: 'val', store: tvheadend.ContentGroupStore, @@ -751,7 +751,7 @@ tvheadend.epg = function() { forceSelection: true, triggerAction: 'all', typeAhead: true, - emptyText: _('Filter content type...'), + emptyText: _('Filter content type…'), listeners: { blur: function () { if(this.getRawValue() == "" ) { @@ -763,7 +763,7 @@ tvheadend.epg = function() { }); var epgFilterDuration = new Ext.ux.form.ComboAny({ - loadingText: _('Loading...'), + loadingText: _('Loading…'), width: 150, displayField: 'label', store: tvheadend.DurationStore, @@ -772,7 +772,7 @@ tvheadend.epg = function() { forceSelection: true, triggerAction: 'all', typeAhead: true, - emptyText: _('Filter duration...'), + emptyText: _('Filter duration…'), listeners: { blur: function () { if(this.getRawValue() == "" ) { @@ -921,7 +921,7 @@ tvheadend.epg = function() { var epgView = new Ext.ux.grid.livegrid.GridView({ nearLimit: 100, loadMask: { - msg: _('Buffering. Please wait...') + msg: _('Buffering. Please wait…') }, listeners: { beforebuffer: { -- 2.47.2