Commit 998bed84 authored by Felix Paul Kühne's avatar Felix Paul Kühne

* ALL: removed l10n of various untranslatable strings such as 'ffmpeg' or 'Vorbis'

parent b3c3a1c1
......@@ -76,7 +76,7 @@ static char *enc_hq_list_text[] = { N_("rd"), N_("bits"), N_("simple") };
* Module descriptor
*****************************************************************************/
vlc_module_begin();
set_shortname( _("Ffmpeg"));
set_shortname( "ffmpeg");
set_category( CAT_INPUT );
set_subcategory( SUBCAT_INPUT_SCODEC );
/* decoder main module */
......@@ -86,7 +86,7 @@ vlc_module_begin();
/*add_requirement( ALTIVEC );*/
set_capability( "decoder", 71 );
#else
set_description( _("Ffmpeg audio/video decoder/encoder ((MS)MPEG4,SVQ1,H263,WMV,WMA)") );
set_description( _("ffmpeg audio/video decoder/encoder ((MS)MPEG4,SVQ1,H263,WMV,WMA)") );
set_capability( "decoder", 70 );
#endif
set_section( N_("Decoding") , NULL );
......
......@@ -60,7 +60,7 @@ static block_t *Encode ( encoder_t *, aout_buffer_t * );
"By default the encoding is CBR." )
vlc_module_begin();
set_shortname( _("Toolame"));
set_shortname( "toolame");
set_description( _("Libtoolame audio encoder") );
set_capability( "encoder", 50 );
set_callbacks( OpenEncoder, CloseEncoder );
......
......@@ -141,7 +141,7 @@ static block_t *Encode ( encoder_t *, aout_buffer_t * );
"Allows you to force a constant bitrate encoding (CBR)." )
vlc_module_begin();
set_shortname( _("Vorbis"));
set_shortname( "Vorbis" );
set_description( _("Vorbis audio decoder") );
#ifdef MODULE_NAME_IS_tremor
set_capability( "decoder", 90 );
......
......@@ -63,7 +63,7 @@ static int MouseEvent( vlc_object_t *, char const *,
#define THRESHOLD_LONGTEXT N_( "Height of the zone triggering the interface" )
vlc_module_begin();
set_shortname( _("Showintf"));
set_shortname( "Showintf" );
set_category( CAT_INTERFACE );
set_subcategory( SUBCAT_INTERFACE_CONTROL );
add_integer( "showintf-threshold", 10, NULL, THRESHOLD_TEXT, THRESHOLD_LONGTEXT, VLC_TRUE );
......
......@@ -82,7 +82,7 @@ static void Close( vlc_object_t * );
#define TELNETPWD_LONGTEXT N_( "Default to admin" )
vlc_module_begin();
set_shortname( _("Telnet"));
set_shortname( "Telnet" );
set_category( CAT_INTERFACE );
set_subcategory( SUBCAT_INTERFACE_GENERAL );
add_integer( "telnet-port", 4212, NULL, TELNETPORT_TEXT,
......
......@@ -115,7 +115,7 @@ static int Open ( vlc_object_t * );
static void Close( vlc_object_t * );
vlc_module_begin();
set_shortname( _("Matroska") );
set_shortname( "Matroska" );
set_description( _("Matroska stream demuxer" ) );
set_capability( "demux2", 50 );
set_callbacks( Open, Close );
......
......@@ -102,7 +102,7 @@ static void Close ( vlc_object_t * );
vlc_module_begin();
set_description( _("MPEG Transport Stream demuxer") );
set_shortname ( _("MPEG-TS") );
set_shortname ( "MPEG-TS" );
set_category( CAT_INPUT );
set_subcategory( SUBCAT_INPUT_DEMUX );
......
......@@ -86,7 +86,7 @@ vlc_module_begin();
add_bool( "macosx-fill", 0, NULL, FILL_TEXT, FILL_LONGTEXT,
VLC_TRUE );
add_submodule();
set_description( _("Mac OS X OpenGL") );
set_description( "Mac OS X OpenGL" );
set_capability( "opengl provider", 100 );
set_callbacks( E_(OpenVideoGL), E_(CloseVideoGL) );
vlc_module_end();
......
......@@ -104,7 +104,7 @@ vlc_module_begin();
#else
int i_score = getenv( "DISPLAY" ) == NULL ? 15 : 150;
#endif
set_shortname( (char*) _("wxWindows"));
set_shortname( (char*) "wxWindows" );
set_description( (char *) _("wxWindows interface module") );
set_category( CAT_INTERFACE );
set_subcategory( SUBCAT_INTERFACE_GENERAL );
......
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