[vlc-commits] Qt: missing translation in the AspectRatio Box
    Jean-Baptiste Kempf 
    git at videolan.org
       
    Wed Feb 22 00:04:08 CET 2012
    
    
  
vlc | branch: master | Jean-Baptiste Kempf <jb at videolan.org> | Tue Feb 21 23:58:27 2012 +0100| [2c5bdf7a1a0ad96bb9d405654ebbb6270e7f44a2] | committer: Jean-Baptiste Kempf
Qt: missing translation in the AspectRatio Box
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=2c5bdf7a1a0ad96bb9d405654ebbb6270e7f44a2
---
 modules/gui/qt4/components/controller_widget.cpp |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/modules/gui/qt4/components/controller_widget.cpp b/modules/gui/qt4/components/controller_widget.cpp
index 17a29ad..cd4dd68 100644
--- a/modules/gui/qt4/components/controller_widget.cpp
+++ b/modules/gui/qt4/components/controller_widget.cpp
@@ -275,7 +275,7 @@ void AspectRatioComboBox::updateRatios() {
     vout_thread_t* p_vout = THEMIM->getVout();
     /* Disable if there is no vout */
     if( p_vout == NULL ) {
-        addItem("Aspect Ratio");
+        addItem( qtr("Aspect Ratio") );
         setDisabled( true );
         return;
     }
    
    
More information about the vlc-commits
mailing list