From: mpmc Date: Fri, 5 Oct 2018 11:38:09 +0000 (+0100) Subject: webui: replace ... with ellipsis … X-Git-Tag: v4.2.7~7 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=33e0142a23a57b52ea6af8b0b77a2b9b90136d61;p=thirdparty%2Ftvheadend.git webui: replace ... with ellipsis … --- 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: {