if (tm >= 0)
snprintf(buf, sizeof(buf), "%02d:%02d", tm / 60, tm % 60);
else
- strcpy(buf, "Any");
+ strncpy(buf, N_("Any"), 16);
ret = buf;
return &ret;
}
dvr_config_t *cfg = (dvr_config_t *)self;
if (!dvr_config_is_default(cfg))
return cfg->dvr_config_name;
- return "(Default Profile)";
+ return N_("(Default Profile)");
}
static int
if (tm >= 0)
snprintf(buf, sizeof(buf), "%02d:%02d", tm / 60, tm % 60);
else
- strcpy(buf, "Any");
+ strncpy(buf, N_("Any"), 16);
ret = buf;
return &ret;
}
.ic_caption = N_("Linux DVB-S Multiplex"),
.ic_properties = (const property_t[]){
{
- MUX_PROP_STR("delsys", "Delivery System", dvbs, delsys, "DVBS"),
+ MUX_PROP_STR("delsys", N_("Delivery System"), dvbs, delsys, "DVBS"),
},
{
.type = PT_U32,
.set = dvb_mux_dvbs_class_symbol_rate_set,
},
{
- MUX_PROP_STR("polarisation", "Polarisation", dvbs, polarity, NULL)
+ MUX_PROP_STR("polarisation", N_("Polarisation"), dvbs, polarity, NULL)
},
{
.type = PT_STR,
.def.s = "AUTO",
},
{
- MUX_PROP_STR("fec", "FEC", dvbs, fec, "AUTO")
+ MUX_PROP_STR("fec", N_("FEC"), dvbs, fec, "AUTO")
},
{
.type = PT_STR,
satip_frontend_t *lfe = self, *lfe2;
satip_device_t *sd = lfe->sf_device;
htsmsg_t *m = htsmsg_create_list();
- htsmsg_add_str(m, NULL, "This Tuner");
+ htsmsg_add_str(m, NULL, N_("This Tuner"));
TAILQ_FOREACH(lfe2, &sd->sd_frontends, sf_link)
if (lfe2 != lfe && lfe2->sf_type == lfe->sf_type)
htsmsg_add_str(m, NULL, lfe2->mi_name);