Commit 8a966579 authored by Christophe Mutricy's avatar Christophe Mutricy

ALL: Fix a few strings for the prefs.

parent a37b818e
...@@ -76,7 +76,7 @@ static char *enc_hq_list_text[] = { N_("rd"), N_("bits"), N_("simple") }; ...@@ -76,7 +76,7 @@ static char *enc_hq_list_text[] = { N_("rd"), N_("bits"), N_("simple") };
* Module descriptor * Module descriptor
*****************************************************************************/ *****************************************************************************/
vlc_module_begin(); vlc_module_begin();
set_shortname( "ffmpeg"); set_shortname( "FFmpeg");
set_category( CAT_INPUT ); set_category( CAT_INPUT );
set_subcategory( SUBCAT_INPUT_SCODEC ); set_subcategory( SUBCAT_INPUT_SCODEC );
/* decoder main module */ /* decoder main module */
......
...@@ -95,6 +95,7 @@ static block_t *Encode( encoder_t *p_enc, picture_t *p_pict ); ...@@ -95,6 +95,7 @@ static block_t *Encode( encoder_t *p_enc, picture_t *p_pict );
vlc_module_begin(); vlc_module_begin();
set_category( CAT_INPUT ); set_category( CAT_INPUT );
set_subcategory( SUBCAT_INPUT_VCODEC ); set_subcategory( SUBCAT_INPUT_VCODEC );
set_shorname( "Theora" );
set_description( _("Theora video decoder") ); set_description( _("Theora video decoder") );
set_capability( "decoder", 100 ); set_capability( "decoder", 100 );
set_callbacks( OpenDecoder, CloseDecoder ); set_callbacks( OpenDecoder, CloseDecoder );
......
...@@ -61,6 +61,7 @@ ...@@ -61,6 +61,7 @@
#define LIMIT_LONGTEXT LIMIT_TEXT #define LIMIT_LONGTEXT LIMIT_TEXT
vlc_module_begin(); vlc_module_begin();
set_shorname( "Shoutcast");
set_description( _("Shoutcast radio listings") ); set_description( _("Shoutcast radio listings") );
set_category( CAT_PLAYLIST ); set_category( CAT_PLAYLIST );
set_subcategory( SUBCAT_PLAYLIST_SD ); set_subcategory( SUBCAT_PLAYLIST_SD );
......
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