]> git.sesse.net Git - vlc/commitdiff
Qt4: use translations in Add Node dialog
authorJakob Leben <jleben@videolan.org>
Tue, 18 Aug 2009 12:19:03 +0000 (14:19 +0200)
committerJakob Leben <jleben@videolan.org>
Tue, 18 Aug 2009 12:19:03 +0000 (14:19 +0200)
modules/gui/qt4/components/playlist/playlist_model.cpp

index be45ac84c27e42af5a215b19aa9ed433f6083c51..577fae6c0c24eaef49cbdcac7ae095efd1313f27 100644 (file)
@@ -1123,7 +1123,7 @@ void PLModel::popupAddNode()
 {
     bool ok;
     QString name = QInputDialog::getText( PlaylistDialog::getInstance( p_intf ),
-        QString( "Add node" ), QString( "Enter name for new node" ),
+        qtr( I_POP_ADD ), qtr( "Enter name for new node:" ),
         QLineEdit::Normal, QString(), &ok);
     if( !ok || name.isEmpty() ) return;
     PL_LOCK;