]> git.sesse.net Git - vlc/commitdiff
qt4: i18n fixes
authorEric Lassauge <lassauge@users.sourceforge.net>
Tue, 7 Apr 2009 23:51:03 +0000 (00:51 +0100)
committerChristophe Mutricy <xtophe@videolan.org>
Wed, 8 Apr 2009 00:31:06 +0000 (01:31 +0100)
Signed-off-by: Christophe Mutricy <xtophe@videolan.org>
modules/gui/qt4/components/open_panels.cpp
modules/gui/qt4/dialogs/sout.cpp
modules/gui/qt4/dialogs/toolbar.cpp

index a5c8e8dc35a57e0bb311503d30bb59f1d17da826..0cbb871306084d38148a91d831d0cd492d21dbd5 100644 (file)
@@ -271,7 +271,7 @@ DiscOpenPanel::DiscOpenPanel( QWidget *_parent, intf_thread_t *_p_intf ) :
     b_firstcdda = true;
 
     ui.browseDiscButton->setToolTip( qtr( I_DEVICE_TOOLTIP ));
-    ui.deviceCombo->setToolTip( I_DEVICE_TOOLTIP );
+    ui.deviceCombo->setToolTip( qtr(I_DEVICE_TOOLTIP) );
 
 #ifdef WIN32 /* Disc drives probing for Windows */
     char szDrives[512];
index d7a44f59e47fb2d36692afe2357090bc2a17af2b..ae56c2a6479601fa29501a86484a7942c3d2b6d2 100644 (file)
@@ -43,12 +43,12 @@ SoutDialog::SoutDialog( QWidget *parent, intf_thread_t *_p_intf, const QString&
     /* UI stuff */
     ui.setupUi( this );
     ui.inputBox->setMRL( inputMRL );
-    ui.helpEdit->setPlainText( "This dialog will allow you to stream or "
+    ui.helpEdit->setPlainText( qtr("This dialog will allow you to stream or "
             "convert your media for use locally, on your private network, "
             "or on the Internet.\n"
             "You should start by checking that source matches what you want "
             "your input to be and then press the \"Next\" "
-            "button to continue.\n" );
+            "button to continue.\n") );
 
     ui.mrlEdit->setToolTip ( qtr( "Stream output string.\n"
                 "This is automatically generated "
index 4755c294e80868bd91f4eed9088e2c6585409224..1d2bb2f0b8e12145e0d7555fef1db456b1763dbd 100644 (file)
@@ -346,7 +346,7 @@ WidgetListing::WidgetListing( intf_thread_t *p_intf, QWidget *_parent )
         case VOLUME_SPECIAL:
             {
                 QListWidgetItem *widgetItem = new QListWidgetItem( this );
-                widgetItem->setText( "Small Volume" );
+                widgetItem->setText( qtr("Small Volume") );
                 widgetItem->setIcon( QIcon( ":/volume-medium" ) );
                 widgetItem->setData( Qt::UserRole, QVariant( i ) );
                 addItem( widgetItem );