Commit d9143693 authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

Don't set ridiculously long descriptions or descriptions with 'plugin' or 'module' in it.

parent 000076e7
......@@ -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,
......
......@@ -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 )
......
......@@ -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 )
......
......@@ -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 )
......
......@@ -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 )
......
......@@ -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 )
......
......@@ -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" )
......
......@@ -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 )
......
......@@ -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 );
......
......@@ -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 )
......
......@@ -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 )
......
......@@ -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" )
......
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