Commit a8625d7a authored by Erwan Tulou's avatar Erwan Tulou

help: fix comma wrongly stated when colon is actually the right delimiter

parent db056dd9
...@@ -78,7 +78,7 @@ ...@@ -78,7 +78,7 @@
#define VFILTER_TEXT N_("Video filter") #define VFILTER_TEXT N_("Video filter")
#define VFILTER_LONGTEXT N_( \ #define VFILTER_LONGTEXT N_( \
"Video filters will be applied to the video streams (after overlays " \ "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_TEXT N_("Audio encoder")
#define AENC_LONGTEXT N_( \ #define AENC_LONGTEXT N_( \
...@@ -102,7 +102,7 @@ ...@@ -102,7 +102,7 @@
#define AFILTER_TEXT N_("Audio filter") #define AFILTER_TEXT N_("Audio filter")
#define AFILTER_LONGTEXT N_( \ #define AFILTER_LONGTEXT N_( \
"Audio filters will be applied to the audio streams (after conversion " \ "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_TEXT N_("Subtitles encoder")
#define SENC_LONGTEXT N_( \ #define SENC_LONGTEXT N_( \
...@@ -116,7 +116,7 @@ ...@@ -116,7 +116,7 @@
#define SFILTER_LONGTEXT N_( \ #define SFILTER_LONGTEXT N_( \
"This allows you to add overlays (also known as \"subpictures\" on the "\ "This allows you to add overlays (also known as \"subpictures\" on the "\
"transcoded video stream. The subpictures produced by the filters will "\ "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" ) "list of subpicture modules" )
#define OSD_TEXT N_("OSD menu") #define OSD_TEXT N_("OSD menu")
......
...@@ -179,7 +179,7 @@ static const char *const ppsz_snap_formats[] = ...@@ -179,7 +179,7 @@ static const char *const ppsz_snap_formats[] =
#define EXTRAINTF_LONGTEXT N_( \ #define EXTRAINTF_LONGTEXT N_( \
"You can select \"additional interfaces\" for VLC. " \ "You can select \"additional interfaces\" for VLC. " \
"They will be launched in the background in addition to the default " \ "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\" ...)") "values are \"rc\" (remote control), \"http\", \"gestures\" ...)")
#define CONTROL_TEXT N_("Control interfaces") #define CONTROL_TEXT N_("Control interfaces")
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment