]> git.sesse.net Git - vlc/commitdiff
Missing translations.
authorJean-Baptiste Kempf <jb@videolan.org>
Thu, 31 Jul 2008 16:24:17 +0000 (09:24 -0700)
committerJean-Baptiste Kempf <jb@videolan.org>
Thu, 31 Jul 2008 16:28:44 +0000 (09:28 -0700)
modules/gui/qt4/components/interface_widgets.cpp

index 49092171521e10b3be1349f1a3177f487601e35d..eeff71a7f42ee8e1c8f5c5ba882746aa76625bd4 100644 (file)
@@ -56,7 +56,7 @@
 
 #include <math.h>
 
-#define I_PLAY_TOOLTIP "Play\nIf the playlist is empty, open a media"
+#define I_PLAY_TOOLTIP N_("Play\nIf the playlist is empty, open a media")
 
 /**********************************************************************
  * Video Widget. A simple frame on which video is drawn
@@ -368,7 +368,7 @@ void AdvControlsWidget::fromAtoB()
     if( !timeA )
     {
         timeA = var_GetTime( THEMIM->getInput(), "time"  );
-        ABButton->setToolTip( "Click to set point B" );
+        ABButton->setToolTip( qtr( "Click to set point B" ) );
         ABButton->setIcon( QIcon( ":/atob_noa" ) );
         return;
     }
@@ -377,7 +377,7 @@ void AdvControlsWidget::fromAtoB()
         timeB = var_GetTime( THEMIM->getInput(), "time"  );
         var_SetTime( THEMIM->getInput(), "time" , timeA );
         ABButton->setIcon( QIcon( ":/atob" ) );
-        ABButton->setToolTip( "Stop the A to B loop" );
+        ABButton->setToolTip( qtr( "Stop the A to B loop" ) );
         return;
     }
     timeA = 0;