[vlmc-devel] MainWindow: Add missing tr() calls

Hugo Beauzée-Luyssen git at videolan.org
Mon Feb 29 01:21:11 CET 2016


vlmc | branch: master | Hugo Beauzée-Luyssen <hugo at beauzee.fr> | Mon Feb 29 01:19:31 2016 +0100| [57b2d95ad81396d837c93437ccb36dc7a81d570e] | committer: Hugo Beauzée-Luyssen

MainWindow: Add missing tr() calls

> https://code.videolan.org/videolan/vlmc/commit/57b2d95ad81396d837c93437ccb36dc7a81d570e
---

 src/Gui/MainWindow.cpp | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/Gui/MainWindow.cpp b/src/Gui/MainWindow.cpp
index 76db582..0277234 100644
--- a/src/Gui/MainWindow.cpp
+++ b/src/Gui/MainWindow.cpp
@@ -151,9 +151,9 @@ MainWindow::retranslateUi()
 {
     m_dockedUndoView->setWindowTitle( tr( "History" ) );
     m_dockedEffectsList->setWindowTitle( tr( "Effects List" ) );
-    m_dockedLibrary->setWindowTitle( "Media Library" );
-    m_dockedClipPreview->setWindowTitle( "Clip Preview" );
-    m_dockedProjectPreview->setWindowTitle( "Project Preview" );
+    m_dockedLibrary->setWindowTitle( tr( "Media Library" ) );
+    m_dockedClipPreview->setWindowTitle( tr( "Clip Preview" ) );
+    m_dockedProjectPreview->setWindowTitle( tr( "Project Preview" ) );
 }
 
 void



More information about the Vlmc-devel mailing list