]> git.sesse.net Git - vlc/commitdiff
Don't set ridiculously long descriptions or descriptions with 'plugin' or 'module...
authorJean-Baptiste Kempf <jb@videolan.org>
Wed, 21 Jan 2009 14:30:21 +0000 (15:30 +0100)
committerJean-Baptiste Kempf <jb@videolan.org>
Wed, 21 Jan 2009 14:30:21 +0000 (15:30 +0100)
12 files changed:
modules/access/dvdread.c
modules/access/eyetv.m
modules/audio_filter/scaletempo.c
modules/audio_filter/spatializer/spatializer.cpp
modules/codec/tarkin.c
modules/codec/x264.c
modules/gui/wince/wince.cpp
modules/gui/wxwidgets/wxwidgets.cpp
modules/stream_out/raop.c
modules/video_output/snapshot.c
modules/video_output/vmem.c
modules/visualization/galaktos/plugin.c

index c17d0afd5a72fe4d598372e32a4338ed8898480d..295106dd1680a74e33e68f09cca1eccb62a322cc 100644 (file)
@@ -103,7 +103,7 @@ static void Close( vlc_object_t * );
 
 vlc_module_begin ()
     set_shortname( N_("DVD without menus") )
-    set_description( N_("DVDRead Input (DVD without menu support)") )
+    set_description( N_("DVDRead Input (no menu support)") )
     set_category( CAT_INPUT )
     set_subcategory( SUBCAT_INPUT_ACCESS )
     add_integer( "dvdread-angle", 1, NULL, ANGLE_TEXT,
index 33c06c3375994e2af9346c94643ef0b06587b648..34322fd0c0455560ba71c87619062c994cebad57 100644 (file)
@@ -65,7 +65,7 @@ static void Close( vlc_object_t * );
 
 vlc_module_begin ()
     set_shortname( "EyeTV" )
-    set_description( N_("EyeTV access module") )
+    set_description( N_("EyeTV input") )
     set_category( CAT_INPUT )
     set_subcategory( SUBCAT_INPUT_ACCESS )
 
index 9940737b8cbf262ce5cb2dba2a4946f431ae4eb8..9587bfb51dc8957beda51e310e2d6b5390f9f796 100644 (file)
@@ -44,7 +44,7 @@ static void DoWork( aout_instance_t *, aout_filter_t *,
                     aout_buffer_t *, aout_buffer_t * );
 
 vlc_module_begin ()
-    set_description( N_("Scale audio tempo in sync with playback rate") )
+    set_description( N_("Audio tempo scaler synched with rate") )
     set_shortname( N_("Scaletempo") )
     set_capability( "audio filter", 0 )
     set_category( CAT_AUDIO )
index 3eb1622038e3eaa59a01e15d1d7fc92d4edd3309..62e7b42a860c974677c928e35c81c01e721c374e 100644 (file)
@@ -62,7 +62,7 @@ static void Close( vlc_object_t * );
 #define DAMP_LONGTEXT ""
 
 vlc_module_begin ()
-    set_description( N_("spatializer") )
+    set_description( N_("Audio Spatializer") )
     set_shortname( N_("Spatializer" ) )
     set_capability( "audio filter", 0 )
     set_category( CAT_AUDIO )
index 2a35e496f3c2374315729c50df90efd9080c9b22..8c00db57632a8e8c4dc8642f74e835134011bfea 100644 (file)
@@ -77,7 +77,7 @@ static void tarkin_CopyPicture( decoder_t *, picture_t *, uint8_t *, int );
  * Module descriptor
  *****************************************************************************/
 vlc_module_begin ()
-    set_description( N_("Tarkin decoder module") )
+    set_description( N_("Tarkin decoder") )
     set_capability( "decoder", 100 )
     set_category( CAT_INPUT )
     set_subcategory( SUBCAT_INPUT_VCODEC )
index 6e749a7f0ce9ef8d3c76c12d9d9d757efc438b08..b4cc22c9a0cc59b4b4248d8e4974635c6813b279 100644 (file)
@@ -415,7 +415,7 @@ static const char *const direct_pred_list_text[] =
 #endif
 
 vlc_module_begin ()
-    set_description( N_("H.264/MPEG4 AVC encoder (using x264 library)"))
+    set_description( N_("H.264/MPEG4 AVC encoder (x264)"))
     set_capability( "encoder", 200 )
     set_callbacks( Open, Close )
     set_category( CAT_INPUT )
index a7a0356321d62e42cbca84d4f2f7da8df9874e11..50cbe780ff24064d82e9315a93987736c892d643 100644 (file)
@@ -64,7 +64,7 @@ static void ShowDialog( intf_thread_t *, int, int, intf_dialog_args_t * );
 
 vlc_module_begin ()
     set_shortname( "WinCE" )
-    set_description( (char *) _("WinCE interface module") )
+    set_description( (char *) _("WinCE interface") )
     set_capability( "interface", 100 )
     set_callbacks( Open, Close )
     add_shortcut( "wince" )
index 3062a865fa8381bb469241099183374416d8de7a..a2c696253c4d11c46b9044a49a817f07565cb0b2 100644 (file)
@@ -118,7 +118,7 @@ static const char *const psz_playlist_views[] = {
 
 vlc_module_begin ()
     set_shortname( "wxWidgets" )
-    set_description( N_("wxWidgets interface module") )
+    set_description( N_("wxWidgets interface") )
     set_category( CAT_INTERFACE )
     set_subcategory( SUBCAT_INTERFACE_MAIN )
     set_capability( "interface", 150 )
index b3a8b77f931d5c1e66e5b2b9b86b0b1173e9173a..5aeb7bc3071149aea57e2c38adfc84b03226ff66 100644 (file)
@@ -146,7 +146,7 @@ struct sout_stream_id_t
 
 vlc_module_begin();
     set_shortname( N_("RAOP") )
-    set_description( N_("Remote Audio Output Protocol streaming plugin") );
+    set_description( N_("Remote Audio Output Protocol stream output") );
     set_capability( "sout stream", 0 );
     add_shortcut( "raop" );
     set_category( CAT_SOUT );
index 09886bf089f278ec3caa9ed2d98835b6eb7f0c32..701afc79a42cb977c2974f096bb72e83abe94da2 100644 (file)
@@ -77,7 +77,7 @@ static void Display   ( vout_thread_t *, picture_t * );
 
 
 vlc_module_begin ()
-    set_description( N_( "Snapshot module" ) )
+    set_description( N_( "Snapshot output" ) )
     set_shortname( N_("Snapshot") )
 
     set_category( CAT_VIDEO )
index 9f23f92dcf3b913d66dab29ddea5ed3308a75064..f132021a2d8e5ef690a9d37753e8bfbafc0b080e 100644 (file)
@@ -72,7 +72,7 @@ static int  UnlockPicture ( vout_thread_t *, picture_t * );
 #define LT_DATA N_( "Data for the locking and unlocking functions" )
 
 vlc_module_begin ()
-    set_description( N_( "Video memory module" ) )
+    set_description( N_( "Video memory output" ) )
     set_shortname( N_("Video memory") )
 
     set_category( CAT_VIDEO )
index 99712ef1c7be6163d05593ec151ef5187194f6bc..8afebce560f118f284cb0310425f0098fea47d05 100644 (file)
@@ -45,7 +45,7 @@ static int  Open         ( vlc_object_t * );
 static void Close        ( vlc_object_t * );
 
 vlc_module_begin ()
-    set_description( N_("GaLaktos visualization plugin") )
+    set_description( N_("GaLaktos visualization") )
     set_capability( "visualization", 0 )
     set_callbacks( Open, Close )
     add_shortcut( "galaktos" )