Commit a5cf57fc authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Translate meta data category properly

parent 4a693e57
...@@ -353,7 +353,7 @@ static int Demux( demux_t *p_demux ) ...@@ -353,7 +353,7 @@ static int Demux( demux_t *p_demux )
#define SADD_INFO( type, field ) if( field ) { input_item_AddInfo( \ #define SADD_INFO( type, field ) if( field ) { input_item_AddInfo( \
p_input, "QuickTime Media Link", type, "%s", field ) ; } p_input, "QuickTime Media Link", type, "%s", field ) ; }
SADD_INFO( "href", psz_href ); SADD_INFO( "href", psz_href );
SADD_INFO( "mime type", psz_mimetype ); SADD_INFO( _("Mime"), psz_mimetype );
input_item_AddSubItem( p_current_input, p_input ); input_item_AddSubItem( p_current_input, p_input );
vlc_gc_decref( p_input ); vlc_gc_decref( p_input );
if( psz_qtnext ) if( psz_qtnext )
......
...@@ -403,11 +403,11 @@ static int DemuxStation( demux_t *p_demux ) ...@@ -403,11 +403,11 @@ static int DemuxStation( demux_t *p_demux )
free( psz_mrl ); free( psz_mrl );
#define SADD_INFO( type, field ) if( field ) { input_item_AddInfo( \ #define SADD_INFO( type, field ) if( field ) { input_item_AddInfo( \
p_input, _("Shoutcast"), _(type), "%s", field ) ; } p_input, _("Shoutcast"), gettext(type), "%s", field ) ; }
SADD_INFO( "Mime type", psz_mt ); SADD_INFO( N_("Mime"), psz_mt );
SADD_INFO( "Bitrate", psz_br ); SADD_INFO( N_("Bitrate"), psz_br );
SADD_INFO( "Listeners", psz_lc ); SADD_INFO( N_("Listeners"), psz_lc );
SADD_INFO( "Load", psz_load ); SADD_INFO( N_("Load"), psz_load );
if( psz_genre ) if( psz_genre )
input_item_SetGenre( p_input, psz_genre ); input_item_SetGenre( p_input, psz_genre );
if( psz_ct ) if( psz_ct )
......
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