[vlc-commits] Qt: translate wizard buttons (fix #13753)

Francois Cartegnie git at videolan.org
Mon Jan 26 19:28:19 CET 2015


vlc/vlc-2.2 | branch: master | Francois Cartegnie <fcvlcdev at free.fr> | Sun Jan 25 18:05:07 2015 +0100| [15513a7e4aedea95c5662448f3e4db6f74aea267] | committer: Jean-Baptiste Kempf

Qt: translate wizard buttons (fix #13753)

(cherry picked from commit bf2b378cbabb55c864298a7368efcfa41c2aba76)
Signed-off-by: Jean-Baptiste Kempf <jb at videolan.org>

> http://git.videolan.org/gitweb.cgi/vlc/vlc-2.2.git/?a=commit;h=15513a7e4aedea95c5662448f3e4db6f74aea267
---

 modules/gui/qt4/dialogs/sout.cpp |    5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/modules/gui/qt4/dialogs/sout.cpp b/modules/gui/qt4/dialogs/sout.cpp
index b647bde..cb4fc1e 100644
--- a/modules/gui/qt4/dialogs/sout.cpp
+++ b/modules/gui/qt4/dialogs/sout.cpp
@@ -88,7 +88,10 @@ SoutDialog::SoutDialog( QWidget *parent, intf_thread_t *_p_intf, const QString&
     CB( localOutput ); CB( transcodeBox );
     CONNECT( ui.profileSelect, optionsChanged(), this, updateMRL() );
 
-    setButtonText( QWizard::FinishButton, "Stream" );
+    setButtonText( QWizard::BackButton, qtr("Back") );
+    setButtonText( QWizard::CancelButton, qtr("Cancel") );
+    setButtonText( QWizard::NextButton, qtr("Next") );
+    setButtonText( QWizard::FinishButton, qtr("Stream") );
 
 #undef CC
 #undef CS



More information about the vlc-commits mailing list