Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Wizard: Some more texts..
  • Loading branch information
Mark Clarkstone authored and perexg committed Feb 19, 2016
1 parent eea9c0c commit 31de818
Showing 1 changed file with 28 additions and 5 deletions.
33 changes: 28 additions & 5 deletions src/wizard.c
Expand Up @@ -167,8 +167,10 @@ Welcome to Tvheadend, your TV streaming server and video recorder. This \
wizard will help you get up and running fast. Let's start by configuring \
the basic language settings. Please select the default user interface \
and EPG language(s).\n\n\
**This wizard should be run only on the initial setup. Please, cancel \
it, if you are not willing to touch the current configuration.**\
**This wizard should only be run on initial setup. Please cancel it if \
you're not willing to touch the current configuration, continuing in \
such cases can lead to misconfiguration and not all changes made thru \
this wizard will take affect.**\n\
\
\n\n**Notes**:\n \
* If you cannot see your preferred language in the language list and would \
Expand Down Expand Up @@ -678,8 +680,6 @@ streams using codecs supported by Tvheadend.\n\
be aware that many only allow you to use one tuner at a time. \
Selecting more than one tuner per device can thus result in unexpected \
behavior.\n\
* If you've configured Tvheadend before running this wizard, changes \
you make via this wizard may not be applied.\n\
"))


Expand Down Expand Up @@ -841,13 +841,15 @@ static const void *muxes_progress_get(void *o)
.type = PT_STR, \
.id = "network" STRINGIFY(num), \
.name = N_("Network"), \
.desc = N_("Name of the network."), \
.get = muxes_get_nvalue##num, \
.opts = PO_RDONLY, \
.group = num, \
}, { \
.type = PT_STR, \
.id = "networkid" STRINGIFY(num), \
.name = "Network", \
.desc = N_("ID of the network."), \
.get = muxes_get_idvalue##num, \
.set = muxes_set_idvalue##num, \
.opts = PO_PERSIST | PO_NOUI, \
Expand Down Expand Up @@ -942,7 +944,22 @@ MUXES_IPTV_FCN(6)
#endif

DESCRIPTION_FCN(muxes, N_("\
Assign predefined muxes to networks.\
Assign predefined muxes to networks. To save you from manually entering \
muxes Tvheadend includes predefined mux lists. Please select a list \
for each network below.\n\
\n\
**Notes**:\n\
* Select the closest transmitter if using an antenna (T), if using \
cable (C) select your provider, if using satellite (S) the orbital \
position your dish is pointing towards or if using IPTV enter \
the URL to your playlist.\n\
* If you're unsure as to which list(s) to select you may want to look \
online for details about the various television reception choices \
available in your area.\n\
* Networks already configured will not be shown below.\n\
* Selecting the wrong list may cause the scan (on the next page) to fail.\n\
* If you're really confused please come talk to us on \
[IRC](https://kiwiirc.com/client/chat.freenode.net/?nick=tvhhelp|?#hts).\n\
"))

wizard_page_t *wizard_muxes(const char *lang)
Expand Down Expand Up @@ -1135,20 +1152,26 @@ wizard_page_t *wizard_mapping(const char *lang)
.type = PT_BOOL,
.id = "mapall",
.name = N_("Map all services"),
.desc = N_("Automatically map all available services to "
"channels."),
.get = mapping_get_mapall,
.set = mapping_set_mapall,
},
{
.type = PT_BOOL,
.id = "provtags",
.name = N_("Create provider tags"),
.desc = N_("Create and associate a provider tag to created "
"channels."),
.get = mapping_get_provtags,
.set = mapping_set_provtags,
},
{
.type = PT_BOOL,
.id = "nettags",
.name = N_("Create network tags"),
.desc = N_("Create and associate a network tag to created "
"channels."),
.get = mapping_get_nettags,
.set = mapping_set_nettags,
},
Expand Down

0 comments on commit 31de818

Please sign in to comment.