]> git.sesse.net Git - vlc/commitdiff
Qt: don't use "Open a Media"
authorJean-Baptiste Kempf <jb@videolan.org>
Sun, 15 Mar 2009 01:12:51 +0000 (02:12 +0100)
committerJean-Baptiste Kempf <jb@videolan.org>
Sun, 15 Mar 2009 01:12:51 +0000 (02:12 +0100)
modules/gui/qt4/components/controller.hpp
modules/gui/qt4/dialogs/open.cpp

index d3eafc29ab8068bd7fb659df9e6bd1d95b4b439f..38919f22581b0af6a92680a2ec83ad1d1e248bf3 100644 (file)
@@ -33,7 +33,7 @@
 #include <QFrame>
 #include <QString>
 
-#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"),
index 16508e1543d7b4c217ab8f9039aaf75d14b1f05d..1646093e36dcf4b9a6c625e52f1781ac43e92328 100644 (file)
@@ -87,7 +87,7 @@ OpenDialog::OpenDialog( QWidget *parent,
 
     /* Basic Creation of the Window */
     ui.setupUi( this );
-    setWindowTitle( qtr( "Open Media" ) );
+    setWindowTitle( qtr( "Open Media" ) );
 
     /* Tab definition and creation */
     fileOpenPanel    = new FileOpenPanel( this, p_intf );