]> git.sesse.net Git - vlc/blobdiff - modules/demux/livedotcom.cpp
String review, as promised :)
[vlc] / modules / demux / livedotcom.cpp
index fff8ac750119cad66ee389ce0f9db5ca2a6611ff..5489349b7b3c6020ef2cce88a1be4aa2a55681e4 100644 (file)
@@ -2,7 +2,7 @@
  * live.cpp : live.com support.
  *****************************************************************************
  * Copyright (C) 2003 VideoLAN
- * $Id: livedotcom.cpp,v 1.17 2004/02/23 20:45:52 fenrir Exp $
+ * $Id$
  *
  * Authors: Laurent Aimar <fenrir@via.ecp.fr>
  *
@@ -53,7 +53,7 @@ static void AccessClose( vlc_object_t * );
 
 #define CACHING_TEXT N_("Caching value (ms)")
 #define CACHING_LONGTEXT N_( \
-    "Allows you to modify the default caching value for rtsp streams. This " \
+    "Allows you to modify the default caching value for RTSP streams. This " \
     "value should be set in miliseconds units." )
 
 vlc_module_begin();
@@ -69,8 +69,8 @@ vlc_module_begin();
         set_capability( "access", 0 );
         set_callbacks( AccessOpen, AccessClose );
         add_bool( "rtsp-tcp", 0, NULL,
-                  N_("Use rtp over rtsp (tcp)"),
-                  N_("Use rtp over rtsp (tcp)"), VLC_TRUE );
+                  N_("Use RTP over RTSP (TCP)"),
+                  N_("Use RTP over RTSP (TCP)"), VLC_TRUE );
         add_integer( "rtsp-caching", 4 * DEFAULT_PTS_DELAY / 1000, NULL,
             CACHING_TEXT, CACHING_LONGTEXT, VLC_TRUE );
 vlc_module_end();