]> git.ipfire.org Git - thirdparty/tvheadend.git/commitdiff
intl: merged en strings (thanks ProfYaffle) - 3rd
authorJaroslav Kysela <perex@perex.cz>
Fri, 26 Jun 2015 20:04:56 +0000 (22:04 +0200)
committerJaroslav Kysela <perex@perex.cz>
Fri, 26 Jun 2015 20:13:04 +0000 (22:13 +0200)
24 files changed:
src/access.c
src/bouquet.c
src/descrambler/cwc.c
src/dvr/dvr_autorec.c
src/dvr/dvr_config.c
src/dvr/dvr_db.c
src/dvr/dvr_timerec.c
src/input/mpegts/iptv/iptv.c
src/input/mpegts/linuxdvb/linuxdvb_frontend.c
src/input/mpegts/linuxdvb/linuxdvb_satconf.c
src/input/mpegts/mpegts_mux_dvb.c
src/input/mpegts/mpegts_network.c
src/input/mpegts/mpegts_service.c
src/input/mpegts/satip/satip.c
src/main.c
src/streaming.c
src/webui/static/app/comet.js
src/webui/static/app/config.js
src/webui/static/app/dvr.js
src/webui/static/app/epg.js
src/webui/static/app/epggrab.js
src/webui/static/app/timeshift.js
src/webui/static/app/tvheadend.js
src/webui/static/app/tvhlog.js

index 7c91bf8aaaaedd601bdec18d7331ecd3764bc1f8..084c1d3e37912492fc72a44eda3da3d4a1c659a5 100644 (file)
@@ -1249,9 +1249,9 @@ access_entry_conn_limit_type_enum ( void *p, const char *lang )
 {
   static struct strtab
   conn_limit_type_tab[] = {
-    { N_("All (Streaming + DVR)"),  ACCESS_CONN_LIMIT_TYPE_ALL },
-    { N_("Streaming"),              ACCESS_CONN_LIMIT_TYPE_STREAMING   },
-    { N_("DVR"),                    ACCESS_CONN_LIMIT_TYPE_DVR },
+    { N_("All (Streaming plus DVR)"),  ACCESS_CONN_LIMIT_TYPE_ALL },
+    { N_("Streaming"),                 ACCESS_CONN_LIMIT_TYPE_STREAMING   },
+    { N_("DVR"),                       ACCESS_CONN_LIMIT_TYPE_DVR },
   };
   return strtab2htsmsg(conn_limit_type_tab, 1, lang);
 }
@@ -1372,7 +1372,7 @@ const idclass_t access_entry_class = {
       .type     = PT_STR,
       .islist   = 1,
       .id       = "dvr_config",
-      .name     = N_("DVR Config Profiles"),
+      .name     = N_("DVR Configuration Profiles"),
       .set      = access_entry_dvr_config_set,
       .get      = access_entry_dvr_config_get,
       .list     = dvr_entry_class_config_name_list,
@@ -1414,7 +1414,7 @@ const idclass_t access_entry_class = {
       .type     = PT_S64,
       .intsplit = CHANNEL_SPLIT,
       .id       = "channel_max",
-      .name     = N_("Max Channel Num"),
+      .name     = N_("Maximum Channel Num"),
       .off      = offsetof(access_entry_t, ae_chmax),
     },
     {
index 9d2d27ecba898060835c1577c663969598ea0249..5e531350f2c2a474036009398cf30affac2d1a8e 100644 (file)
@@ -881,7 +881,7 @@ const idclass_t bouquet_class = {
     {
       .type     = PT_U32,
       .id       = "services_seen",
-      .name     = N_("# Seen Services"),
+      .name     = N_("# Services Seen"),
       .off      = offsetof(bouquet_t, bq_services_seen),
       .opts     = PO_RDONLY,
     },
index dd5105ceb47e55450eb64013c5ebce77815c406a..4a591c78e981244574a6653b378a3aa647b8bcb8 100644 (file)
@@ -1736,7 +1736,7 @@ const idclass_t caclient_cwc_class =
     {
       .type     = PT_STR,
       .id       = "hostname",
-      .name     = N_("Hostname / IP"),
+      .name     = N_("Hostname/IP"),
       .off      = offsetof(cwc_t, cwc_hostname),
       .def.s    = "localhost",
     },
index 9f75e28e1caaec6620e0d26be3c4aaa423900ce5..aa0e90ea4270c863ebd6cbc0ef411c823f752584 100644 (file)
@@ -608,7 +608,7 @@ dvr_autorec_entry_class_time_list_(void *o, const char *lang)
 static htsmsg_t *
 dvr_autorec_entry_class_extra_list(void *o, const char *lang)
 {
-  const char *msg = N_("Not set (use channel or DVR config)");
+  const char *msg = N_("Not set (use channel or DVR configuration)");
   return dvr_entry_class_duration_list(o, tvh_gettext_lang(lang, msg), 4*60, 1, lang);
 }
 
@@ -732,7 +732,7 @@ dvr_autorec_entry_class_weekdays_rend(uint32_t weekdays, const char *lang)
   size_t l;
   int i;
   if (weekdays == 0x7f)
-    strcpy(buf + 1, tvh_gettext_lang(lang, N_("All days")));
+    strcpy(buf + 1, tvh_gettext_lang(lang, N_("Every day")));
   else if (weekdays == 0)
     strcpy(buf + 1, tvh_gettext_lang(lang, N_("No days")));
   else {
@@ -938,7 +938,7 @@ const idclass_t dvr_autorec_entry_class = {
     {
       .type     = PT_BOOL,
       .id       = "fulltext",
-      .name     = N_("Fulltext"),
+      .name     = N_("Full-text"),
       .off      = offsetof(dvr_autorec_entry_t, dae_fulltext),
     },
     {
@@ -997,7 +997,7 @@ const idclass_t dvr_autorec_entry_class = {
       .type     = PT_U32,
       .islist   = 1,
       .id       = "weekdays",
-      .name     = N_("Week Days"),
+      .name     = N_("Days of Week"),
       .set      = dvr_autorec_entry_class_weekdays_set,
       .get      = dvr_autorec_entry_class_weekdays_get_,
       .list     = dvr_autorec_entry_class_weekdays_list,
index d4dc6dc9a5ec2477d67f2e11fe6b4569e398f780..96037fc009c8c7d6a79438c6710de24896140d60 100644 (file)
@@ -692,7 +692,7 @@ static htsmsg_t *
 dvr_config_class_extra_list(void *o, const char *lang)
 {
   return dvr_entry_class_duration_list(o, 
-           tvh_gettext_lang(lang, N_("Not set (none or channel config)")),
+           tvh_gettext_lang(lang, N_("Not set (none or channel configuration)")),
            4*60, 1, lang);
 }
 
@@ -770,7 +770,7 @@ const idclass_t dvr_config_class = {
     {
       .type     = PT_STR,
       .id       = "name",
-      .name     = N_("Config Name"),
+      .name     = N_("Configuration Name"),
       .set      = dvr_config_class_name_set,
       .off      = offsetof(dvr_config_t, dvr_config_name),
       .def.s    = "! New config",
@@ -861,7 +861,7 @@ const idclass_t dvr_config_class = {
     {
       .type     = PT_STR,
       .id       = "charset",
-      .name     = N_("Filename Charset"),
+      .name     = N_("Filename Character Set"),
       .off      = offsetof(dvr_config_t, dvr_charset),
       .set      = dvr_config_class_charset_set,
       .list     = dvr_config_class_charset_list,
index 6bb57d1b6fd177e74a656d680b9e41b3dc48d7fb..fc096de58e034486c4279f543e57cebdaa1d23cc 100644 (file)
@@ -1970,7 +1970,7 @@ dvr_entry_class_duration_list(void *o, const char *not_set, int max, int step, c
 static htsmsg_t *
 dvr_entry_class_extra_list(void *o, const char *lang)
 {
-  const char *msg = N_("Not set (use channel or DVR config)");
+  const char *msg = N_("Not set (use channel or DVR configuration)");
   return dvr_entry_class_duration_list(o, tvh_gettext_lang(lang, msg), 4*60, 1, lang);
 }
                                         
index 69cb994173c79ad03a6ad7b288ef973df61775ae..7ff5b7bf36b4ab1a648f56cd4ca61f692f7da05e 100644 (file)
@@ -609,7 +609,7 @@ const idclass_t dvr_timerec_entry_class = {
       .type     = PT_U32,
       .islist   = 1,
       .id       = "weekdays",
-      .name     = N_("Week Days"),
+      .name     = N_("Days of Week"),
       .set      = dvr_timerec_entry_class_weekdays_set,
       .get      = dvr_timerec_entry_class_weekdays_get,
       .list     = dvr_autorec_entry_class_weekdays_list,
index 00696f31ac177c85e597da631856f4a9cfe15efa..787eaa904bd2163a0666dfbc16b10d317847b8c8 100644 (file)
@@ -465,21 +465,21 @@ const idclass_t iptv_network_class = {
     {
       .type     = PT_U32,
       .id       = "max_streams",
-      .name     = N_("Max Input Streams"),
+      .name     = N_("Maximum Input Streams"),
       .off      = offsetof(iptv_network_t, in_max_streams),
       .def.i    = 0,
     },
     {
       .type     = PT_U32,
       .id       = "max_bandwidth",
-      .name     = N_("Max Bandwidth (Kbps)"),
+      .name     = N_("Maximum Bandwidth (Kbps)"),
       .off      = offsetof(iptv_network_t, in_max_bandwidth),
       .def.i    = 0,
     },
     {
       .type     = PT_U32,
       .id       = "max_timeout",
-      .name     = N_("Max timeout (seconds)"),
+      .name     = N_("Maximum timeout (seconds)"),
       .off      = offsetof(iptv_network_t, in_max_timeout),
       .def.i    = 15,
     },
index a39c98be5558263499cffb19c76cc9f3a07d9e73..80b4e20216fa9ded91d3d7225336e7f3a75ea679 100644 (file)
@@ -131,7 +131,7 @@ const idclass_t linuxdvb_frontend_class =
     {
       .type     = PT_BOOL,
       .id       = "old_status",
-      .name     = N_("Force old status"),
+      .name     = N_("Force Old Status"),
       .opts     = PO_ADVANCED,
       .off      = offsetof(linuxdvb_frontend_t, lfe_old_status),
     },
index ea9a8bd595f698069c155607e33dfd691521dfd0..c3705a6c3cd83f07f93d4ea288e3f1f7bf674241 100644 (file)
@@ -587,13 +587,13 @@ static struct linuxdvb_satconf_type linuxdvb_satconf_types[] = {
   },
   {
     .type  = "2port",
-    .name  = N_("2-port Switch (Universal LNB)"),
+    .name  = N_("2-Port Switch (Universal LNB)"),
     .idc   = &linuxdvb_satconf_2port_class,
     .ports = 2, 
   },
   {
     .type  = "4port",
-    .name  = N_("4-port Switch (Universal LNB)"),
+    .name  = N_("4-Port Switch (Universal LNB)"),
     .idc   = &linuxdvb_satconf_4port_class,
     .ports = 4, 
   },
index f27a5cc02e7a3b4750f90bbb89475786632c56d6..5c4f3bccb778222c90022504f3f8894c9529d770 100644 (file)
@@ -207,7 +207,7 @@ const idclass_t dvb_mux_dvbt_class =
   .ic_caption    = N_("Linux DVB-T Multiplex"),
   .ic_properties = (const property_t[]){
     {
-      MUX_PROP_STR("delsys", N_("Delivery System"), dvbt, delsys, N_("DVBT")),
+      MUX_PROP_STR("delsys", N_("Delivery System"), dvbt, delsys, N_("DVB-T")),
     },
     {
       .type     = PT_U32,
@@ -608,7 +608,7 @@ const idclass_t dvb_mux_dvbs_class =
     {
       .type     = PT_STR,
       .id       = "orbital",
-      .name     = N_("Orbital Pos."),
+      .name     = N_("Orbital Position"),
       .set      = dvb_mux_dvbs_class_orbital_set,
       .get      = dvb_mux_dvbs_class_orbital_get,
       .opts     = PO_ADVANCED | PO_RDONLY
index 8a76f3afeb2e7a59948144e2fb931d2e1a52547d..0899a2b1f14939557d5742fe15d18d15beaa2934 100644 (file)
@@ -235,7 +235,7 @@ const idclass_t mpegts_network_class =
     {
       .type     = PT_INT,
       .id       = "scanq_length",
-      .name     = N_("Scan Q length"),
+      .name     = N_("Scan Queue length"),
       .opts     = PO_RDONLY | PO_NOSAVE,
       .get      = mpegts_network_class_get_scanq_length,
     },
index 0c58b0de614c3ab8b152f6e09d167101cb0718e9..9b059fb6337d89d1b471d409e9f266b31021abc0 100644 (file)
@@ -74,9 +74,9 @@ static htsmsg_t *
 mpegts_service_pref_capid_lock_list ( void *o, const char *lang )
 {
   static const struct strtab tab[] = {
-    { N_("Off"),                0 },
-    { N_("On"),                 1 },
-    { N_("Only Pref. CA PID"),  2 },
+    { N_("Off"),                    0 },
+    { N_("On"),                     1 },
+    { N_("Only Preferred CA PID"),  2 },
   };
    return strtab2htsmsg(tab, 1, lang);
 }
@@ -183,14 +183,14 @@ const idclass_t mpegts_service_class =
     {
       .type     = PT_U16,
       .id       = "prefcapid",
-      .name     = N_("Pref. CA PID"),
+      .name     = N_("Preferred CA PID"),
       .off      = offsetof(mpegts_service_t, s_dvb_prefcapid),
       .opts     = PO_ADVANCED,
     },
     {
       .type     = PT_INT,
       .id       = "prefcapid_lock",
-      .name     = N_("Lock Pref. CA PID"),
+      .name     = N_("Lock Preferred CA PID"),
       .off      = offsetof(mpegts_service_t, s_dvb_prefcapid_lock),
       .opts     = PO_ADVANCED,
       .list     = mpegts_service_pref_capid_lock_list,
index 89799ca889a89279576a59201177b3c1ce7ee629..33b45110a886cdd4960c182d6bcb1eb1de56230f 100644 (file)
@@ -272,7 +272,7 @@ const idclass_t satip_device_class =
     {
       .type     = PT_BOOL,
       .id       = "disableworkarounds",
-      .name     = N_("Disable device-/firmware-specific workarounds"),
+      .name     = N_("Disable device/firmware-specific workarounds"),
       .opts     = PO_ADVANCED,
       .off      = offsetof(satip_device_t, sd_disable_workarounds),
     },
@@ -363,7 +363,7 @@ const idclass_t satip_device_class =
     {
       .type     = PT_STR,
       .id       = "configid",
-      .name     = N_("Config ID"),
+      .name     = N_("Configuration ID"),
       .opts     = PO_RDONLY | PO_NOSAVE,
       .off      = offsetof(satip_device_t, sd_info.configid),
     },
index 4b30d1de99d87089e8007c85648ae143cbb44b83..e642eb7765eb81cca1d3a02c07d10ab6b2d82283 100644 (file)
@@ -644,17 +644,17 @@ main(int argc, char **argv)
     { 'v', "version",   N_("Show version information"),OPT_BOOL, &opt_version },
 
     {   0, NULL,        N_("Service Configuration"),   OPT_BOOL, NULL         },
-    { 'c', "config",    N_("Alternate config path"),   OPT_STR,  &opt_config  },
-    { 'B', "nobackup",  N_("Don't backup config tree at upgrade"), OPT_BOOL, &opt_nobackup },
+    { 'c', "config",    N_("Alternate configuration path"), OPT_STR,  &opt_config  },
+    { 'B', "nobackup",  N_("Don't backup configuration tree at upgrade"), OPT_BOOL, &opt_nobackup },
     { 'f', "fork",      N_("Fork and run as daemon"),  OPT_BOOL, &opt_fork    },
     { 'u', "user",      N_("Run as user"),             OPT_STR,  &opt_user    },
     { 'g', "group",     N_("Run as group"),            OPT_STR,  &opt_group   },
-    { 'p', "pid",       N_("Alternate pid path"),      OPT_STR,  &opt_pidpath },
+    { 'p', "pid",       N_("Alternate PID path"),      OPT_STR,  &opt_pidpath },
     { 'C', "firstrun",  N_("If no user account exists then create one with\n"
                           "no username and no password. Use with care as\n"
                           "it will allow world-wide administrative access\n"
-                          "to your Tvheadend installation until you edit/create\n"
-                          "access-control from within the Tvheadend UI"),
+                          "to your Tvheadend installation until you create or edit\n"
+                          "the access-control from within the Tvheadend web interface."),
       OPT_BOOL, &opt_firstrun },
 #if ENABLE_DBUS_1
     { 'U', "dbus",      N_("Enable DBus"),
@@ -694,7 +694,7 @@ main(int argc, char **argv)
     {   0, NULL,        N_("Debug Options"),           OPT_BOOL, NULL         },
     { 'd', "stderr",    N_("Enable debug on stderr"),  OPT_BOOL, &opt_stderr  },
     { 's', "syslog",    N_("Enable debug to syslog"),  OPT_BOOL, &opt_syslog  },
-    { 'S', "nosyslog",  N_("Disable syslog (all msgs)"), OPT_BOOL, &opt_nosyslog },
+    { 'S', "nosyslog",  N_("Disable syslog (all messages)"), OPT_BOOL, &opt_nosyslog },
     { 'l', "logfile",   N_("Enable debug to file"),    OPT_STR,  &opt_logpath },
     {   0, "debug",     N_("Enable debug subsystems"),  OPT_STR,  &opt_log_debug },
 #if ENABLE_TRACE
index ae61d50ef6b5cca76498d36b00f0719842bf27e9..6d73f8131cd365ce133fe909f978f7e2f064c845 100644 (file)
@@ -425,7 +425,7 @@ streaming_code2txt(int code)
   case SM_CODE_MUX_NOT_ENABLED:
     return N_("Mux not enabled");
   case SM_CODE_NOT_FREE:
-    return N_("Adapter in use by other subscription");
+    return N_("Adapter in use by another subscription");
   case SM_CODE_TUNING_FAILED:
     return N_("Tuning failed");
   case SM_CODE_SVC_NOT_ENABLED:
index 22cff762e2a55be0429f5864c10d81eaf3a46f2f..3d556ae79313f3176969dc75376fb5b81161fb96 100644 (file)
@@ -51,7 +51,7 @@ tvheadend.cometPoller = function() {
             try {
                 tvheadend.comet.fireEvent(m.notificationClass, m);
             } catch (e) {
-                tvheadend.log(_('comet failure') + ' [e=' + e.message + ']');
+                tvheadend.log(_('Comet failure') + ' [e=' + e.message + ']');
             }
         }
         cometRequest.delay(100);
index 24ea80f8e31086fccb425b97a80c1f1f13a85f95..f91f4222ad7ee49f2461dc6451169f99a378f75e 100644 (file)
@@ -394,7 +394,7 @@ tvheadend.satipsrvconf = function(panel, index) {
     });
     var muxcnf = new Ext.form.NumberField({
          name: 'satip_muxcnf',
-         fieldLabel: _('Muxes Handling (0 = auto, 1 = keep, 2 = reject)')
+         fieldLabel: _('Mux Handling (0 = auto, 1 = keep, 2 = reject)')
     });
     var dvbs = new Ext.form.NumberField({
          name: 'satip_dvbs',
index 1897b56c20f7984ae9587856315ec058bb238bd5..53e4cb6f1062d2f0f8fde47f229a5ece3384ba26 100644 (file)
@@ -28,7 +28,7 @@ tvheadend.dvrDetails = function(uuid) {
             content += '<img class="x-epg-chicon" src="' + chicon + '">';
 
         if (duplicate)
-            content += '<div class="x-epg-meta"><font color="red"><div class="x-epg-prefix">' + _('Will be skipped') + '<br>' + _('because is rerun of:') + '</div>' + tvheadend.niceDate(duplicate * 1000) + '</font></div>';
+            content += '<div class="x-epg-meta"><font color="red"><div class="x-epg-prefix">' + _('Will be skipped') + '<br>' + _('because it is a rerun of:') + '</div>' + tvheadend.niceDate(duplicate * 1000) + '</font></div>';
 
         if (title)
           content += '<div class="x-epg-title">' + title + '</div>';
@@ -272,7 +272,7 @@ tvheadend.dvr_upcoming = function(panel, index) {
         selected: selected,
         beforeedit: beforeedit,
         help: function() {
-            new tvheadend.help(_('DVR-Upcoming/Current Recordings'), 'dvr_upcoming.html');
+            new tvheadend.help(_('DVR - Upcoming/Current Recordings'), 'dvr_upcoming.html');
         }
     });
 
@@ -352,7 +352,7 @@ tvheadend.dvr_finished = function(panel, index) {
         tbar: [downloadButton],
         selected: selected,
         help: function() {
-            new tvheadend.help(_('DVR-Finished Recordings'), 'dvr_finished.html');
+            new tvheadend.help(_('DVR - Finished Recordings'), 'dvr_finished.html');
         }
     });
 
@@ -433,7 +433,7 @@ tvheadend.dvr_failed = function(panel, index) {
         tbar: [downloadButton],
         selected: selected,
         help: function() {
-            new tvheadend.help(_('DVR-Failed Recordings'), 'dvr_failed.html');
+            new tvheadend.help(_('DVR - Failed Recordings'), 'dvr_failed.html');
         }
     });
 
@@ -474,8 +474,8 @@ tvheadend.autorec_editor = function(panel, index) {
 
     tvheadend.idnode_grid(panel, {
         url: 'api/dvr/autorec',
-        titleS: _('DVR AutoRec Entry'),
-        titleP: _('DVR AutoRec Entries'),
+        titleS: _('DVR Autorec Entry'),
+        titleP: _('DVR Autorec Entries'),
         iconCls: 'autoRec',
         tabIndex: index,
         columns: {
@@ -522,7 +522,7 @@ tvheadend.autorec_editor = function(panel, index) {
           direction: 'ASC'
         },
         help: function() {
-            new tvheadend.help(_('DVR AutoRec'), 'dvr_autorec.html');
+            new tvheadend.help(_('DVR Autorec'), 'dvr_autorec.html');
         }
     });
 
@@ -573,7 +573,7 @@ tvheadend.timerec_editor = function(panel, index) {
           direction: 'ASC'
         },
         help: function() {
-            new tvheadend.help(_('DVR TimeRec'), 'dvr_timerec.html');
+            new tvheadend.help(_('DVR Timerec'), 'dvr_timerec.html');
         }
     });
 
index a403e249ab1246d9b781b79433b552b6a741d7ab..9a119b3374b975a44bf12853f22b4a103a5ad3c1 100644 (file)
@@ -211,15 +211,13 @@ tvheadend.epgDetails = function(event) {
         buttons.push(new Ext.Button({
             handler: recordEvent,
             iconCls: 'rec',
-            tooltip: _('Record now this program'),
+            tooltip: _('Record this program now'),
             text: _('Record program')
         }));
         buttons.push(new Ext.Button({
             handler: recordSeries,
             iconCls: 'autoRec',
-            tooltip: _('Create an automatic recording entry for this program that will '
-                 + 'record all future programs that match '
-                 + 'the current query.'),
+            tooltip: _('Create an automatic recording rule to record all future programs that match the current query.'),
             text: event.serieslinkId ? _("Record series") : _("Autorec")
         }));
 
@@ -836,9 +834,7 @@ tvheadend.epg = function() {
     tvheadend.autorecButton = new Ext.Button({
         text: _('Create AutoRec'),
         iconCls: 'autoRec',
-        tooltip: _('Create an automatic recording entry that will '
-                 + 'record all future programs that match '
-                 + 'the current query.'),
+        tooltip: _('Create an automatic recording rule to record all future programs that match the current query.'),
         handler: createAutoRec
     });
 
@@ -858,7 +854,7 @@ tvheadend.epg = function() {
         {
             text: _('Watch TV'),
             iconCls: 'watchTv',
-            tooltip: _('Watch TV online in the window by web'),
+            tooltip: _('Watch live TV in a new browser window.'),
             handler: function() {
                 new tvheadend.VideoPlayer();
             }
index 6579d4757342e1e740c5b8c59337dd467f39b483..9090a5cbd93ef42cf49bb94857b80a011c18f2da 100644 (file)
@@ -297,7 +297,7 @@ tvheadend.epggrab = function(panel, index) {
 
     var otaepgButton = new Ext.Button({
         text: _("Trigger OTA EPG Grabber"),
-        tooltip: _('Tune over-the-air EPG muxes to grab new events now'),
+        tooltip: _('Tune to the over-the-air EPG muxes to grab new events now'),
         iconCls: 'find',
         handler: otaepgTrigger
     });
index f06d6787c5de54606d7070c4e8b1bbb12c2d4f33..eb737046e03d3e75d40a703ebf73b475df5a7f3f 100644 (file)
@@ -41,7 +41,7 @@ tvheadend.timeshift = function(panel, index) {
     });
 
     var timeshiftMaxPeriod = new Ext.form.NumberField({
-        fieldLabel: _('Max. Period (mins)'),
+        fieldLabel: _('Maximum Period (mins)'),
         name: 'timeshift_max_period',
         allowBlank: false,
         width: 300
@@ -54,14 +54,14 @@ tvheadend.timeshift = function(panel, index) {
     });
 
     var timeshiftMaxSize = new Ext.form.NumberField({
-        fieldLabel: _('Max. Size (MB)'),
+        fieldLabel: _('Maximum Size (MB)'),
         name: 'timeshift_max_size',
         allowBlank: false,
         width: 300
     });
 
     var timeshiftRamSize = new Ext.form.NumberField({
-        fieldLabel: _('Max. RAM Size (MB)'),
+        fieldLabel: _('Maximum RAM Size (MB)'),
         name: 'timeshift_ram_size',
         allowBlank: false,
         width: 250
index b6d16adfe8e90403d893164418e5b6c19ff1cc38..0b6ff6cb19f08ae3daa16f1934142c9858fa2e59 100644 (file)
@@ -89,7 +89,7 @@ tvheadend.AjaxConfirm = function(conf) {
 
 tvheadend.loading = function(on) {
     if (on)
-      Ext.getBody().mask(_('Loading... Please, wait...'), 'loading');
+      Ext.getBody().mask(_('Loading, please wait...'), 'loading');
     else
       Ext.getBody().unmask();
 };
index 183afac45abe282a038d983ae840c4ecf4cbf9ef..96a67525b3f11c0cf455f9867c36221f59d6b5a8 100644 (file)
@@ -54,8 +54,8 @@ tvheadend.tvhlog = function(panel, index) {
 
     var saveButton = new Ext.Button({
         text: _("Apply configuration (run-time only)"),
-        tooltip: _('Apply changes made bellow to the run-time configuration.') + '<br/>' +
-                 _('They will be lost on restart.'),
+        tooltip: _('Apply any changes made below to the run-time configuration.') + '<br/>' +
+                 _('They will be lost when the application next restarts.'),
         iconCls: 'apply',
         handler: saveChanges
     });
@@ -128,7 +128,7 @@ tvheadend.tvhlog = function(panel, index) {
             },
             waitMsg: _('Applying Data...'),
             failure: function(form, action) {
-                Ext.Msg.alert(_('Apply failed'), action.result.errormsg);
+                Ext.Msg.alert(_('Data application failed'), action.result.errormsg);
             }
         });
     }