]> 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 11:58:45 +0000 (13:58 +0200)
src/webui/static/app/epg.js

index d08a26c4d1d16b361f7f11c19e53fe798e8157f0..8981214bb7bd255b3a2302a511bffd766d8d70dc 100644 (file)
@@ -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: {