Commit 5d89e071 authored by Christophe Mutricy's avatar Christophe Mutricy

qt: i18n fix

Spotted-by: Cristian Secară
parent 126902d3
...@@ -591,7 +591,7 @@ QMenu *QVLCMenu::SDMenu( intf_thread_t *p_intf ) ...@@ -591,7 +591,7 @@ QMenu *QVLCMenu::SDMenu( intf_thread_t *p_intf )
if( !strcmp( *ppsz_name, "podcast" ) ) if( !strcmp( *ppsz_name, "podcast" ) )
{ {
QAction *b = new QAction( qfu( "Configure podcasts..." ), menu ); QAction *b = new QAction( qtr( "Configure podcasts..." ), menu );
//b->setEnabled( a->isChecked() ); //b->setEnabled( a->isChecked() );
menu->addAction( b ); menu->addAction( b );
CONNECT( b, triggered(), THEDP, podcastConfigureDialog() ); CONNECT( b, triggered(), THEDP, podcastConfigureDialog() );
......
...@@ -32,9 +32,9 @@ ...@@ -32,9 +32,9 @@
/* Folder vs. Directory */ /* Folder vs. Directory */
#if defined( WIN32 ) || defined(__APPLE__) #if defined( WIN32 ) || defined(__APPLE__)
#define I_OPEN_FOLDER "Open &Folder..." #define I_OPEN_FOLDER N_("Open &Folder...")
#else #else
#define I_OPEN_FOLDER "Open D&irectory..." #define I_OPEN_FOLDER N_("Open D&irectory...")
#endif //WIN32 #endif //WIN32
using namespace std; using namespace std;
......
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