From: mpmc Date: Fri, 5 Oct 2018 11:38:09 +0000 (+0100) Subject: webui: replace ... with ellipsis … X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1e91679a48554d8ea3bceebd1e5ccd6d93b05fa1;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 417d935ad..e2f90d8a6 100644 --- a/src/webui/static/app/epg.js +++ b/src/webui/static/app/epg.js @@ -256,7 +256,7 @@ tvheadend.epgDetails = function(grid, index) { tpl : '' + '
  {text}
' + '
', - emptyText:'Find info from ...', + emptyText:'Find info from …', valueField: 'value', displayField: 'text', width: 160, @@ -855,7 +855,7 @@ tvheadend.epg = function() { // Title search box var epgFilterTitle = new Ext.form.TextField({ - emptyText: _('Search title...'), + emptyText: _('Search title…'), width: 200 }); @@ -870,7 +870,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.getChannels(), @@ -879,7 +879,7 @@ tvheadend.epg = function() { forceSelection: true, triggerAction: 'all', typeAhead: true, - emptyText: _('Filter channel...'), + emptyText: _('Filter channel…'), listeners: { blur: function () { if(this.getRawValue() == "" ) { @@ -905,7 +905,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.getChannelTags(), @@ -914,7 +914,7 @@ tvheadend.epg = function() { forceSelection: true, triggerAction: 'all', typeAhead: true, - emptyText: _('Filter tag...'), + emptyText: _('Filter tag…'), listeners: { blur: function () { if(this.getRawValue() == "" ) { @@ -945,7 +945,7 @@ tvheadend.epg = function() { /// field is deleted and re-created inside clear filter. function createFilterCat(clearFilter, cat) { var filter = new Ext.ux.form.ComboAny({ - loadingText: _('Loading...'), + loadingText: _('Loading…'), width: 200, displayField: 'val', store: category, @@ -954,7 +954,7 @@ tvheadend.epg = function() { forceSelection: true, triggerAction: 'all', typeAhead: true, - emptyText: _('Filter category...'), + emptyText: _('Filter category…'), listeners: { blur: function () { if(this.getRawValue() == "" ) { @@ -996,7 +996,7 @@ tvheadend.epg = function() { // Content groups var epgFilterContentGroup = new Ext.ux.form.ComboAny({ - loadingText: _('Loading...'), + loadingText: _('Loading…'), width: 200, displayField: 'val', store: tvheadend.ContentGroupStore, @@ -1005,7 +1005,7 @@ tvheadend.epg = function() { forceSelection: true, triggerAction: 'all', typeAhead: true, - emptyText: _('Filter content type...'), + emptyText: _('Filter content type…'), listeners: { blur: function () { if(this.getRawValue() == "" ) { @@ -1017,7 +1017,7 @@ tvheadend.epg = function() { }); var epgFilterDuration = new Ext.ux.form.ComboAny({ - loadingText: _('Loading...'), + loadingText: _('Loading…'), width: 150, displayField: 'label', store: tvheadend.DurationStore, @@ -1026,7 +1026,7 @@ tvheadend.epg = function() { forceSelection: true, triggerAction: 'all', typeAhead: true, - emptyText: _('Filter duration...'), + emptyText: _('Filter duration…'), listeners: { blur: function () { if(this.getRawValue() == "" ) { @@ -1192,7 +1192,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: {