diff options
author | Michael Roitzsch <mroi@users.sourceforge.net> | 2004-04-10 15:45:10 +0000 |
---|---|---|
committer | Michael Roitzsch <mroi@users.sourceforge.net> | 2004-04-10 15:45:10 +0000 |
commit | 6bb42cf0a4ce6535361afed7960ae4460867c82d (patch) | |
tree | f80885de0325e722abf6f622eef1e7dd6e14c355 /src/input/input_v4l.c | |
parent | 63681076719e7ff1aad40c63ce4d1bcb0f77ef1b (diff) | |
download | xine-lib-6bb42cf0a4ce6535361afed7960ae4460867c82d.tar.gz xine-lib-6bb42cf0a4ce6535361afed7960ae4460867c82d.tar.bz2 |
improving config help strings
CVS patchset: 6383
CVS date: 2004/04/10 15:45:10
Diffstat (limited to 'src/input/input_v4l.c')
-rw-r--r-- | src/input/input_v4l.c | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/src/input/input_v4l.c b/src/input/input_v4l.c index 2789777f2..17ff3c06f 100644 --- a/src/input/input_v4l.c +++ b/src/input/input_v4l.c @@ -1918,8 +1918,9 @@ static void *init_video_class (xine_t *xine, void *data) config->register_string (config, "input.v4l_video_device_path", VIDEO_DEV, - _("path to the v4l video device"), - NULL, 10, NULL, NULL); + _("v4l video device"), + _("The path to your Video4Linux video device."), + 10, NULL, NULL); return this; } @@ -1943,8 +1944,9 @@ static void *init_radio_class (xine_t *xine, void *data) config->register_string (config, "input.v4l_radio_device_path", RADIO_DEV, - _("path to the v4l radio device"), - NULL, 10, NULL, NULL); + _("v4l radio device"), + _("The path to your Video4Linux radio device."), + 10, NULL, NULL); return this; } |