From: Peter BaĊĦista Date: Tue, 17 Jan 2023 07:46:08 +0000 (+0100) Subject: Add descriptions to the existing Unicable configuration fields X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=377c108194292abdaf71ff26b7527412c4f7a0aa;p=thirdparty%2Ftvheadend.git Add descriptions to the existing Unicable configuration fields --- diff --git a/src/input/mpegts/linuxdvb/linuxdvb_en50494.c b/src/input/mpegts/linuxdvb/linuxdvb_en50494.c index 19b62eb10..7beced5a9 100644 --- a/src/input/mpegts/linuxdvb/linuxdvb_en50494.c +++ b/src/input/mpegts/linuxdvb/linuxdvb_en50494.c @@ -148,19 +148,22 @@ const idclass_t linuxdvb_en50494_class = .type = PT_U16, .id = "position", .name = N_("Position"), + .desc = N_("Position ID."), .off = offsetof(linuxdvb_en50494_t, le_position), .list = linuxdvb_en50494_position_list, }, { .type = PT_U16, .id = "frequency", - .name = N_("Frequency"), + .name = N_("Frequency (MHz)"), + .desc = N_("User Band Frequency (in MHz)."), .off = offsetof(linuxdvb_en50494_t, le_frequency), }, { .type = PT_U16, .id = "id", .name = N_("SCR (ID)"), + .desc = N_("SCR (Satellite Channel Router) ID."), .off = offsetof(linuxdvb_en50494_t, le_id), .list = linuxdvb_en50494_id_list, }, @@ -168,6 +171,7 @@ const idclass_t linuxdvb_en50494_class = .type = PT_U16, .id = "pin", .name = N_("PIN"), + .desc = N_("PIN."), .off = offsetof(linuxdvb_en50494_t, le_pin), .list = linuxdvb_en50494_pin_list, }, @@ -186,19 +190,22 @@ const idclass_t linuxdvb_en50607_class = .type = PT_U16, .id = "position", .name = N_("Position"), + .desc = N_("Position ID."), .off = offsetof(linuxdvb_en50494_t, le_position), .list = linuxdvb_en50494_position_list, }, { .type = PT_U16, .id = "frequency", - .name = N_("Frequency"), + .name = N_("Frequency (MHz)"), + .desc = N_("User Band Frequency (in MHz)."), .off = offsetof(linuxdvb_en50494_t, le_frequency), }, { .type = PT_U16, .id = "id", .name = N_("SCR (ID)"), + .desc = N_("SCR (Satellite Channel Router) ID."), .off = offsetof(linuxdvb_en50494_t, le_id), .list = linuxdvb_en50607_id_list, }, @@ -206,6 +213,7 @@ const idclass_t linuxdvb_en50607_class = .type = PT_U16, .id = "pin", .name = N_("PIN"), + .desc = N_("PIN."), .off = offsetof(linuxdvb_en50494_t, le_pin), .list = linuxdvb_en50494_pin_list, }, diff --git a/src/input/mpegts/linuxdvb/linuxdvb_satconf.c b/src/input/mpegts/linuxdvb/linuxdvb_satconf.c index ffbfe0f69..6a007a78d 100644 --- a/src/input/mpegts/linuxdvb/linuxdvb_satconf.c +++ b/src/input/mpegts/linuxdvb/linuxdvb_satconf.c @@ -543,7 +543,7 @@ const idclass_t linuxdvb_satconf_en50494_class = .type = PT_U16, .id = "frequency", .name = N_("Frequency (MHz)"), - .desc = N_("Frequency (in MHz)."), + .desc = N_("User Band Frequency (in MHz)."), .get = linuxdvb_satconf_class_en50494_freq_get, .set = linuxdvb_satconf_class_en50494_freq_set, .opts = PO_NOSAVE, @@ -607,7 +607,7 @@ const idclass_t linuxdvb_satconf_en50607_class = .type = PT_U16, .id = "frequency", .name = N_("Frequency (MHz)"), - .desc = N_("Frequency (in MHz)."), + .desc = N_("User Band Frequency (in MHz)."), .get = linuxdvb_satconf_class_en50494_freq_get, .set = linuxdvb_satconf_class_en50494_freq_set, .opts = PO_NOSAVE,