Commit ba394d11 authored by Christophe Mutricy's avatar Christophe Mutricy

i18n fix

parent b5617204
...@@ -406,10 +406,10 @@ void ExtVideo::initComboBoxItems( QObject *widget ) ...@@ -406,10 +406,10 @@ void ExtVideo::initComboBoxItems( QObject *widget )
{ {
if( i_type == CONFIG_ITEM_INTEGER if( i_type == CONFIG_ITEM_INTEGER
|| i_type == CONFIG_ITEM_BOOL ) || i_type == CONFIG_ITEM_BOOL )
combobox->addItem( qfu( p_item->ppsz_list_text[i_index] ), combobox->addItem( qtr( p_item->ppsz_list_text[i_index] ),
p_item->pi_list[i_index] ); p_item->pi_list[i_index] );
else if( i_type == CONFIG_ITEM_STRING ) else if( i_type == CONFIG_ITEM_STRING )
combobox->addItem( qfu( p_item->ppsz_list_text[i_index] ), combobox->addItem( qtr( p_item->ppsz_list_text[i_index] ),
p_item->ppsz_list[i_index] ); p_item->ppsz_list[i_index] );
} }
} }
......
...@@ -73,7 +73,7 @@ EpgDialog::EpgDialog( intf_thread_t *_p_intf ): QVLCFrame( _p_intf ) ...@@ -73,7 +73,7 @@ EpgDialog::EpgDialog( intf_thread_t *_p_intf ): QVLCFrame( _p_intf )
CONNECT( epg, itemSelectionChanged( EPGEvent *), this, showEvent( EPGEvent *) ); CONNECT( epg, itemSelectionChanged( EPGEvent *), this, showEvent( EPGEvent *) );
QPushButton *update = new QPushButton( "Update" ); //Temporary to test QPushButton *update = new QPushButton( qtr( "Update" ) ); //Temporary to test
layout->addWidget( update, 0, Qt::AlignRight ); layout->addWidget( update, 0, Qt::AlignRight );
BUTTONACT( update, updateInfos() ); BUTTONACT( update, updateInfos() );
......
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