From: Christophe Mutricy Date: Tue, 27 Apr 2010 22:23:01 +0000 (+0100) Subject: i18n fix X-Git-Tag: 1.2.0-pre1~6859 X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=ba394d11c884ee2cbf703d7b6cddccafa96cff74;p=vlc i18n fix --- diff --git a/modules/gui/qt4/components/extended_panels.cpp b/modules/gui/qt4/components/extended_panels.cpp index 3c1c990d7d..ceac89edf2 100644 --- a/modules/gui/qt4/components/extended_panels.cpp +++ b/modules/gui/qt4/components/extended_panels.cpp @@ -406,10 +406,10 @@ void ExtVideo::initComboBoxItems( QObject *widget ) { if( i_type == CONFIG_ITEM_INTEGER || 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] ); 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] ); } } diff --git a/modules/gui/qt4/dialogs/epg.cpp b/modules/gui/qt4/dialogs/epg.cpp index 0c1640b705..40980c7d38 100644 --- a/modules/gui/qt4/dialogs/epg.cpp +++ b/modules/gui/qt4/dialogs/epg.cpp @@ -73,7 +73,7 @@ EpgDialog::EpgDialog( intf_thread_t *_p_intf ): QVLCFrame( _p_intf ) 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 ); BUTTONACT( update, updateInfos() );