[vlc-devel] commit: Missing translations. (Jean-Baptiste Kempf )
git version control
git at videolan.org
Thu Jul 31 18:26:46 CEST 2008
vlc | branch: master | Jean-Baptiste Kempf <jb at videolan.org> | Thu Jul 31 09:24:17 2008 -0700| [566e4c08ad3227357c68ea496369f9b2c93935b0]
Missing translations.
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=566e4c08ad3227357c68ea496369f9b2c93935b0
---
modules/gui/qt4/components/interface_widgets.cpp | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/modules/gui/qt4/components/interface_widgets.cpp b/modules/gui/qt4/components/interface_widgets.cpp
index 4909217..eeff71a 100644
--- a/modules/gui/qt4/components/interface_widgets.cpp
+++ b/modules/gui/qt4/components/interface_widgets.cpp
@@ -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;
More information about the vlc-devel
mailing list