Commit 1ad81b4b authored by Christophe Mutricy's avatar Christophe Mutricy

i18n fixes

parent ca827aa8
......@@ -91,8 +91,8 @@ AboutDialog::AboutDialog( intf_thread_t *_p_intf) : QVLCFrame( _p_intf )
thanksEdit->setReadOnly( true );
/* add the tabs to the Tabwidget */
tab->addTab( NULL, _( "Information" ) );
tab->addTab( NULL, _( "Authors" ) );
tab->addTab( NULL, qtr( "Information" ) );
tab->addTab( NULL, qtr( "Authors" ) );
tab->addTab( thanksEdit, qtr("Thanks") );
tab->addTab( licenseEdit, qtr("Distribution License") );
......
......@@ -300,7 +300,7 @@ void DialogsProvider::simpleOpenDialog()
**/
static void openDirectory( intf_thread_t* p_intf, bool pl, bool go )
{
QString dir = QFileDialog::getExistingDirectory ( 0, _("Open directory") );
QString dir = QFileDialog::getExistingDirectory ( 0, qtr("Open directory") );
if (!dir.isEmpty()) {
input_item_t *p_input = input_ItemNewExt( THEPL, qtu(dir), NULL,
0, NULL, -1 );
......
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