From: Jean-Baptiste Kempf Date: Sun, 15 Mar 2009 01:12:51 +0000 (+0100) Subject: Qt: don't use "Open a Media" X-Git-Tag: 1.0.0-pre1~94 X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=0571ef72ef6bb50e46c1118404143e68f2eef3e7;p=vlc Qt: don't use "Open a Media" --- diff --git a/modules/gui/qt4/components/controller.hpp b/modules/gui/qt4/components/controller.hpp index d3eafc29ab..38919f2258 100644 --- a/modules/gui/qt4/components/controller.hpp +++ b/modules/gui/qt4/components/controller.hpp @@ -33,7 +33,7 @@ #include #include -#define I_PLAY_TOOLTIP N_("Play\nIf the playlist is empty, open a media") +#define I_PLAY_TOOLTIP N_("Play\nIf the playlist is empty, open a medium") #define MAIN_TB1_DEFAULT "64;39;64;38;65" #define MAIN_TB2_DEFAULT "0-2;64;3;1;4;64;7;10;9;64-4;37;65;35-4" @@ -104,7 +104,7 @@ static const QString nameL[BUTTON_MAX] = { "Play", "Stop", "Open", "Frame By Frame", "Trickplay Reverse", "Step backward" , "Step forward", "Quit" }; static const QString tooltipL[BUTTON_MAX] = { I_PLAY_TOOLTIP, - _("Stop playback"), _("Open a media"), + _("Stop playback"), _("Open a medium"), _("Previous media in the playlist"), _("Next media in the playlist"), _("Slower"), _("Faster"), _("Toggle the video in fullscreen"), _("Toggle the video out fullscreen"), diff --git a/modules/gui/qt4/dialogs/open.cpp b/modules/gui/qt4/dialogs/open.cpp index 16508e1543..1646093e36 100644 --- a/modules/gui/qt4/dialogs/open.cpp +++ b/modules/gui/qt4/dialogs/open.cpp @@ -87,7 +87,7 @@ OpenDialog::OpenDialog( QWidget *parent, /* Basic Creation of the Window */ ui.setupUi( this ); - setWindowTitle( qtr( "Open a Media" ) ); + setWindowTitle( qtr( "Open Media" ) ); /* Tab definition and creation */ fileOpenPanel = new FileOpenPanel( this, p_intf );