From 55bd6c18babd47583ba4a1a3d64834c5d1f38565 Mon Sep 17 00:00:00 2001 From: Christophe Mutricy Date: Mon, 2 Feb 2009 23:04:10 +0000 Subject: [PATCH] i18n: Fix in the popup menu Pointed-By: Eric Lassauge --- modules/gui/qt4/components/playlist/playlist_model.cpp | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/modules/gui/qt4/components/playlist/playlist_model.cpp b/modules/gui/qt4/components/playlist/playlist_model.cpp index d2e07ce351..fd45e755a2 100644 --- a/modules/gui/qt4/components/playlist/playlist_model.cpp +++ b/modules/gui/qt4/components/playlist/playlist_model.cpp @@ -796,21 +796,21 @@ void PLModel::popup( QModelIndex & index, QPoint &point, QModelIndexList list ) PL_UNLOCK; current_selection = list; QMenu *menu = new QMenu; - menu->addAction( qfu(I_POP_PLAY), this, SLOT( popupPlay() ) ); - menu->addAction( qfu(I_POP_DEL), this, SLOT( popupDel() ) ); + menu->addAction( qtr(I_POP_PLAY), this, SLOT( popupPlay() ) ); + menu->addAction( qtr(I_POP_DEL), this, SLOT( popupDel() ) ); menu->addSeparator(); - menu->addAction( qfu(I_POP_STREAM), this, SLOT( popupStream() ) ); - menu->addAction( qfu(I_POP_SAVE), this, SLOT( popupSave() ) ); + menu->addAction( qtr(I_POP_STREAM), this, SLOT( popupStream() ) ); + menu->addAction( qtr(I_POP_SAVE), this, SLOT( popupSave() ) ); menu->addSeparator(); - menu->addAction( qfu(I_POP_INFO), this, SLOT( popupInfo() ) ); + menu->addAction( qtr(I_POP_INFO), this, SLOT( popupInfo() ) ); if( p_item->i_children > -1 ) { menu->addSeparator(); - menu->addAction( qfu(I_POP_SORT), this, SLOT( popupSort() ) ); - menu->addAction( qfu(I_POP_ADD), this, SLOT( popupAdd() ) ); + menu->addAction( qtr(I_POP_SORT), this, SLOT( popupSort() ) ); + menu->addAction( qtr(I_POP_ADD), this, SLOT( popupAdd() ) ); } menu->addSeparator(); - menu->addAction( qfu( I_POP_EXPLORE ), this, SLOT( popupExplore() ) ); + menu->addAction( qtr( I_POP_EXPLORE ), this, SLOT( popupExplore() ) ); menu->popup( point ); } else -- 2.11.4.GIT