From 566e4c08ad3227357c68ea496369f9b2c93935b0 Mon Sep 17 00:00:00 2001 From: Jean-Baptiste Kempf Date: Thu, 31 Jul 2008 09:24:17 -0700 Subject: [PATCH] Missing translations. --- modules/gui/qt4/components/interface_widgets.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/modules/gui/qt4/components/interface_widgets.cpp b/modules/gui/qt4/components/interface_widgets.cpp index 4909217152..eeff71a7f4 100644 --- a/modules/gui/qt4/components/interface_widgets.cpp +++ b/modules/gui/qt4/components/interface_widgets.cpp @@ -56,7 +56,7 @@ #include -#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; -- 2.39.2