Commit 4eb5aa9f authored by Christophe Mutricy's avatar Christophe Mutricy

i18n: Fix

parent 941cc25e
...@@ -573,7 +573,7 @@ void DialogsProvider::streamingDialog( QWidget *parent, QString mrl, ...@@ -573,7 +573,7 @@ void DialogsProvider::streamingDialog( QWidget *parent, QString mrl,
const char *psz_option = qtu( s->getMrl() ); const char *psz_option = qtu( s->getMrl() );
msg_Dbg( p_intf, "Sout mrl %s", psz_option ); msg_Dbg( p_intf, "Sout mrl %s", psz_option );
playlist_AddExt( THEPL, qtu( mrl ), "Streaming", playlist_AddExt( THEPL, qtu( mrl ), _("Streaming"),
PLAYLIST_APPEND | PLAYLIST_GO, PLAYLIST_END, PLAYLIST_APPEND | PLAYLIST_GO, PLAYLIST_END,
-1, 1, &psz_option, VLC_INPUT_OPTION_TRUSTED, true, pl_Unlocked ); -1, 1, &psz_option, VLC_INPUT_OPTION_TRUSTED, true, pl_Unlocked );
RecentsMRL::getInstance( p_intf )->addRecent( mrl ); RecentsMRL::getInstance( p_intf )->addRecent( mrl );
......
...@@ -1329,7 +1329,7 @@ void QVLCMenu::updateRecents( intf_thread_t *p_intf ) ...@@ -1329,7 +1329,7 @@ void QVLCMenu::updateRecents( intf_thread_t *p_intf )
recentsMenu->clear(); recentsMenu->clear();
if( !l.size() ) if( !l.size() )
{ {
action = recentsMenu->addAction( " - Empty - " ); action = recentsMenu->addAction( qtr(" - Empty - ") );
action->setEnabled( false ); action->setEnabled( false );
} }
else else
...@@ -1344,7 +1344,7 @@ void QVLCMenu::updateRecents( intf_thread_t *p_intf ) ...@@ -1344,7 +1344,7 @@ void QVLCMenu::updateRecents( intf_thread_t *p_intf )
} }
recentsMenu->addSeparator(); recentsMenu->addSeparator();
recentsMenu->addAction( "&Clear", rmrl, SLOT( clear() ) ); recentsMenu->addAction( qtr("&Clear"), rmrl, SLOT( clear() ) );
} }
} }
} }
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