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

Use gettext() as per gettext standard for non-constant parameters

parent ce1718c4
...@@ -288,7 +288,7 @@ static inline const char *config_CategoryNameGet( int i_value ) ...@@ -288,7 +288,7 @@ static inline const char *config_CategoryNameGet( int i_value )
{ {
if( categories_array[i].i_id == i_value ) if( categories_array[i].i_id == i_value )
{ {
return _(categories_array[i].psz_name); return gettext(categories_array[i].psz_name);
} }
i++; i++;
} }
...@@ -303,7 +303,7 @@ static inline const char *config_CategoryHelpGet( int i_value ) ...@@ -303,7 +303,7 @@ static inline const char *config_CategoryHelpGet( int i_value )
{ {
if( categories_array[i].i_id == i_value ) if( categories_array[i].i_id == i_value )
{ {
return _(categories_array[i].psz_help); return gettext(categories_array[i].psz_help);
} }
i++; i++;
} }
......
...@@ -3265,7 +3265,7 @@ static void PMTSetupEsTeletext( demux_t *p_demux, ts_pid_t *pid, ...@@ -3265,7 +3265,7 @@ static void PMTSetupEsTeletext( demux_t *p_demux, ts_pid_t *pid,
{ {
p_fmt->subs.teletext.i_magazine = -1; p_fmt->subs.teletext.i_magazine = -1;
p_fmt->subs.teletext.i_page = 0; p_fmt->subs.teletext.i_page = 0;
p_fmt->psz_description = strdup( _(ppsz_teletext_type[1]) ); p_fmt->psz_description = strdup( gettext(ppsz_teletext_type[1]) );
dvbpsi_descriptor_t *p_dr; dvbpsi_descriptor_t *p_dr;
p_dr = PMTEsFindDescriptor( p_es, 0x46 ); p_dr = PMTEsFindDescriptor( p_es, 0x46 );
...@@ -3320,7 +3320,7 @@ static void PMTSetupEsTeletext( demux_t *p_demux, ts_pid_t *pid, ...@@ -3320,7 +3320,7 @@ static void PMTSetupEsTeletext( demux_t *p_demux, ts_pid_t *pid,
/* */ /* */
const ts_teletext_page_t *p = &p_page[i]; const ts_teletext_page_t *p = &p_page[i];
p_es->fmt.psz_language = strndup( p->p_iso639, 3 ); p_es->fmt.psz_language = strndup( p->p_iso639, 3 );
p_es->fmt.psz_description = strdup(_(ppsz_teletext_type[p->i_type])); p_es->fmt.psz_description = strdup(gettext(ppsz_teletext_type[p->i_type]));
p_es->fmt.subs.teletext.i_magazine = p->i_magazine; p_es->fmt.subs.teletext.i_magazine = p->i_magazine;
p_es->fmt.subs.teletext.i_page = p->i_page; p_es->fmt.subs.teletext.i_page = p->i_page;
......
...@@ -780,7 +780,7 @@ static int DemuxRecVideo( demux_t *p_demux, ty_rec_hdr_t *rec_hdr, block_t *p_bl ...@@ -780,7 +780,7 @@ static int DemuxRecVideo( demux_t *p_demux, ty_rec_hdr_t *rec_hdr, block_t *p_bl
continue; continue;
es_format_Init( &fmt, SPU_ES, fcc[i] ); es_format_Init( &fmt, SPU_ES, fcc[i] );
fmt.psz_description = strdup( _(ppsz_description[i]) ); fmt.psz_description = strdup( gettext(ppsz_description[i]) );
fmt.i_group = TY_ES_GROUP; fmt.i_group = TY_ES_GROUP;
p_sys->p_cc[i] = es_out_Add( p_demux->out, &fmt ); p_sys->p_cc[i] = es_out_Add( p_demux->out, &fmt );
es_format_Clean( &fmt ); es_format_Clean( &fmt );
......
...@@ -86,7 +86,7 @@ struct intf_sys_t ...@@ -86,7 +86,7 @@ struct intf_sys_t
#define THEMIM MainInputManager::getInstance( p_intf ) #define THEMIM MainInputManager::getInstance( p_intf )
#define qfu( i ) QString::fromUtf8( i ) #define qfu( i ) QString::fromUtf8( i )
#define qtr( i ) QString::fromUtf8( _(i) ) #define qtr( i ) QString::fromUtf8( gettext(i) )
#define qtu( i ) ((i).toUtf8().constData()) #define qtu( i ) ((i).toUtf8().constData())
#define CONNECT( a, b, c, d ) connect( a, SIGNAL( b ), c, SLOT(d) ) #define CONNECT( a, b, c, d ) connect( a, SIGNAL( b ), c, SLOT(d) )
......
...@@ -186,7 +186,8 @@ static input_item_t * CreateInputItemFromShoutItem( services_discovery_t *p_sd, ...@@ -186,7 +186,8 @@ static input_item_t * CreateInputItemFromShoutItem( services_discovery_t *p_sd,
{ {
int i; int i;
/* Create the item */ /* Create the item */
input_item_t *p_input = input_item_New( p_sd, p_item->psz_url, _(p_item->psz_name) ); input_item_t *p_input = input_item_New( p_sd, p_item->psz_url,
gettext(p_item->psz_name) );
/* Copy options */ /* Copy options */
for( i = 0; p_item->ppsz_options[i] != NULL; i++ ) for( i = 0; p_item->ppsz_options[i] != NULL; i++ )
......
...@@ -375,7 +375,7 @@ config_Write (FILE *file, const char *type, const char *desc, ...@@ -375,7 +375,7 @@ config_Write (FILE *file, const char *type, const char *desc,
if (desc == NULL) if (desc == NULL)
desc = "?"; desc = "?";
if (fprintf (file, "# %s (%s)\n%s%s=", desc, _(type), if (fprintf (file, "# %s (%s)\n%s%s=", desc, gettext (type),
comment ? "#" : "", name) < 0) comment ? "#" : "", name) < 0)
return -1; return -1;
......
...@@ -1205,8 +1205,10 @@ static void EsOutProgramMeta( es_out_t *out, int i_group, vlc_meta_t *p_meta ) ...@@ -1205,8 +1205,10 @@ static void EsOutProgramMeta( es_out_t *out, int i_group, vlc_meta_t *p_meta )
char ** ppsz_all_keys = vlc_dictionary_all_keys( &p_meta->extra_tags ); char ** ppsz_all_keys = vlc_dictionary_all_keys( &p_meta->extra_tags );
for( i = 0; ppsz_all_keys[i]; i++ ) for( i = 0; ppsz_all_keys[i]; i++ )
{ {
input_Control( p_input, INPUT_ADD_INFO, psz_cat, _(ppsz_all_keys[i]), input_Control( p_input, INPUT_ADD_INFO, psz_cat,
vlc_dictionary_value_for_key( &p_meta->extra_tags, ppsz_all_keys[i] ) ); gettext(ppsz_all_keys[i]),
vlc_dictionary_value_for_key( &p_meta->extra_tags,
ppsz_all_keys[i] ) );
free( ppsz_all_keys[i] ); free( ppsz_all_keys[i] );
} }
free( ppsz_all_keys ); free( ppsz_all_keys );
...@@ -2756,7 +2758,8 @@ static void EsOutUpdateInfo( es_out_t *out, es_out_id_t *es, const es_format_t * ...@@ -2756,7 +2758,8 @@ static void EsOutUpdateInfo( es_out_t *out, es_out_id_t *es, const es_format_t *
char *psz_value = vlc_dictionary_value_for_key( &p_meta->extra_tags, psz_key ); char *psz_value = vlc_dictionary_value_for_key( &p_meta->extra_tags, psz_key );
if( psz_value ) if( psz_value )
input_Control( p_input, INPUT_ADD_INFO, psz_cat, _(psz_key), _(psz_value) ); input_Control( p_input, INPUT_ADD_INFO, psz_cat,
gettext(psz_key), gettext(psz_value) );
free( psz_key ); free( psz_key );
} }
free( ppsz_all_keys ); free( ppsz_all_keys );
......
...@@ -2038,7 +2038,7 @@ static void DeinterlaceEnable( vout_thread_t *p_vout ) ...@@ -2038,7 +2038,7 @@ static void DeinterlaceEnable( vout_thread_t *p_vout )
for( int i = 0; p_deinterlace_mode[i].psz_mode; i++ ) for( int i = 0; p_deinterlace_mode[i].psz_mode; i++ )
{ {
val.psz_string = (char*)p_deinterlace_mode[i].psz_mode; val.psz_string = (char*)p_deinterlace_mode[i].psz_mode;
text.psz_string = (char*)_(p_deinterlace_mode[i].psz_description); text.psz_string = (char*)gettext(p_deinterlace_mode[i].psz_description);
var_Change( p_vout, "deinterlace", VLC_VAR_ADDCHOICE, &val, &text ); var_Change( p_vout, "deinterlace", VLC_VAR_ADDCHOICE, &val, &text );
} }
var_AddCallback( p_vout, "deinterlace", DeinterlaceCallback, NULL ); var_AddCallback( p_vout, "deinterlace", DeinterlaceCallback, NULL );
......
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