From: Clément Stenac Date: Sun, 27 Nov 2005 15:57:28 +0000 (+0000) Subject: Imrpove description of http-continuous (Closes:#409) X-Git-Tag: 0.9.0-test0~13172 X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=af908f4e2ce97a30383108bf10b5348899ee8f51;p=vlc Imrpove description of http-continuous (Closes:#409) --- diff --git a/modules/access/http.c b/modules/access/http.c index 371f56520b..f97099a0db 100644 --- a/modules/access/http.c +++ b/modules/access/http.c @@ -62,13 +62,15 @@ static void Close( vlc_object_t * ); "in case it was untimely closed.") #define CONTINUOUS_TEXT N_("Continuous stream") -#define CONTINUOUS_LONGTEXT N_("Enable this option to read a file that is " \ - "being constantly updated (for example, a JPG file on a server)") +#define CONTINUOUS_LONGTEXT N_("This allows you to read a file that is " \ + "being constantly updated (for example, a JPG file on a server)." \ + "You should not globally enable this option as it will break all other " \ + "types of HTTP streams." ) vlc_module_begin(); set_description( _("HTTP input") ); set_capability( "access2", 0 ); - set_shortname( _( "HTTP/HTTPS" ) ); + set_shortname( _( "HTTP(S)" ) ); set_category( CAT_INPUT ); set_subcategory( SUBCAT_INPUT_ACCESS );