From: Erwan Tulou Date: Wed, 14 Apr 2010 08:44:17 +0000 (+0200) Subject: help: fix comma wrongly stated when colon is actually the right delimiter X-Git-Tag: 1.2.0-pre1~7059 X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=a8625d7a0d53914588782a501f0ec6430481dd45;p=vlc help: fix comma wrongly stated when colon is actually the right delimiter --- diff --git a/modules/stream_out/transcode/transcode.c b/modules/stream_out/transcode/transcode.c index e2ace26884..aee63266d2 100644 --- a/modules/stream_out/transcode/transcode.c +++ b/modules/stream_out/transcode/transcode.c @@ -78,7 +78,7 @@ #define VFILTER_TEXT N_("Video filter") #define VFILTER_LONGTEXT N_( \ "Video filters will be applied to the video streams (after overlays " \ - "are applied). You must enter a comma-separated list of filters." ) + "are applied). You can enter a colon-separated list of filters." ) #define AENC_TEXT N_("Audio encoder") #define AENC_LONGTEXT N_( \ @@ -102,7 +102,7 @@ #define AFILTER_TEXT N_("Audio filter") #define AFILTER_LONGTEXT N_( \ "Audio filters will be applied to the audio streams (after conversion " \ - "filters are applied). You must enter a comma-separated list of filters." ) + "filters are applied). You can enter a colon-separated list of filters." ) #define SENC_TEXT N_("Subtitles encoder") #define SENC_LONGTEXT N_( \ @@ -116,7 +116,7 @@ #define SFILTER_LONGTEXT N_( \ "This allows you to add overlays (also known as \"subpictures\" on the "\ "transcoded video stream. The subpictures produced by the filters will "\ - "be overlayed directly onto the video. You must specify a comma-separated "\ + "be overlayed directly onto the video. You can specify a colon-separated "\ "list of subpicture modules" ) #define OSD_TEXT N_("OSD menu") diff --git a/src/libvlc-module.c b/src/libvlc-module.c index e86326856a..b8802cf70a 100644 --- a/src/libvlc-module.c +++ b/src/libvlc-module.c @@ -179,7 +179,7 @@ static const char *const ppsz_snap_formats[] = #define EXTRAINTF_LONGTEXT N_( \ "You can select \"additional interfaces\" for VLC. " \ "They will be launched in the background in addition to the default " \ - "interface. Use a comma separated list of interface modules. (common " \ + "interface. Use a colon separated list of interface modules. (common " \ "values are \"rc\" (remote control), \"http\", \"gestures\" ...)") #define CONTROL_TEXT N_("Control interfaces")