]> git.ipfire.org Git - thirdparty/tvheadend.git/commitdiff
webui: replace ... with ellipsis …
authormpmc <hello@markclarkstone.co.uk>
Fri, 5 Oct 2018 11:38:09 +0000 (12:38 +0100)
committerJaroslav Kysela <perex@perex.cz>
Mon, 8 Oct 2018 12:00:04 +0000 (14:00 +0200)
src/webui/static/app/epg.js

index 417d935ad4ccc3bc0cd86748f173ff5a45c9ecf8..e2f90d8a6808deec2ef9d4e6bf6edc9d926f3068 100644 (file)
@@ -256,7 +256,7 @@ tvheadend.epgDetails = function(grid, index) {
           tpl : '<tpl for=".">' +
                 '<div class="x-combo-list-item" ><img src="../static/icons/{url}">&nbsp;&nbsp;{text}</div>' +
                 '</tpl>',
-          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: {