From: Jean-Baptiste Kempf Date: Tue, 29 Jul 2008 18:26:52 +0000 (-0700) Subject: Fix Tooltips and accelerators, since we need to update po. X-Git-Tag: 0.9.0-test3~160 X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=80bed63ec08fa7759871ebb4c79ad3af522dba29;p=vlc Fix Tooltips and accelerators, since we need to update po. --- diff --git a/include/vlc_intf_strings.h b/include/vlc_intf_strings.h index 01e7c3a4cf..cb24a2f3e8 100644 --- a/include/vlc_intf_strings.h +++ b/include/vlc_intf_strings.h @@ -34,15 +34,15 @@ /******************* Menus *****************/ -#define I_MENU_INFO N_("Media Information...") -#define I_MENU_CODECINFO N_("Codec Information...") -#define I_MENU_MSG N_("Messages...") -#define I_MENU_EXT N_("Extended Settings...") -#define I_MENU_GOTOTIME N_("Go to Specific Time...") -#define I_MENU_BOOKMARK N_("Bookmarks...") -#define I_MENU_VLM N_("VLM Configuration...") - -#define I_MENU_ABOUT N_("About...") +#define I_MENU_INFO N_("Media &Information...") +#define I_MENU_CODECINFO N_("&Codec Information...") +#define I_MENU_MSG N_("&Messages...") +#define I_MENU_EXT N_("&Extended Settings...") +#define I_MENU_GOTOTIME N_("Go to Specific &Time...") +#define I_MENU_BOOKMARK N_("&Bookmarks...") +#define I_MENU_VLM N_("&VLM Configuration...") + +#define I_MENU_ABOUT N_("&About...") /* Playlist popup */ #define I_POP_PLAY N_("Play") diff --git a/modules/gui/qt4/main_interface.cpp b/modules/gui/qt4/main_interface.cpp index 1a2384273a..2c488db3f2 100644 --- a/modules/gui/qt4/main_interface.cpp +++ b/modules/gui/qt4/main_interface.cpp @@ -293,10 +293,13 @@ inline void MainInterface::createStatusBar() timeLabel = new TimeLabel; timeLabel->setText( " --:--/--:-- " ); timeLabel->setAlignment( Qt::AlignRight | Qt::AlignVCenter ); + timeLabel->setToolTip( qtr( "Toggle between elapsed and remaining time" ) ); nameLabel = new QLabel; nameLabel->setTextInteractionFlags( Qt::TextSelectableByMouse | Qt::TextSelectableByKeyboard ); speedLabel = new SpeedLabel( p_intf, "1.00x" ); + speedLabel->setToolTip( + qtr( "Current playback speed.\nRight click to adjust" ) ); speedLabel->setContextMenuPolicy ( Qt::CustomContextMenu ); /* Styling those labels */ diff --git a/modules/gui/qt4/menus.cpp b/modules/gui/qt4/menus.cpp index 5908752c20..22d60faebe 100644 --- a/modules/gui/qt4/menus.cpp +++ b/modules/gui/qt4/menus.cpp @@ -352,14 +352,12 @@ QMenu *QVLCMenu::ToolsMenu( intf_thread_t *p_intf, if( mi ) { QAction *act= - menu->addAction( QIcon( ":/playlist_menu" ), - qtr( "Playlist..." ), mi, SLOT( togglePlaylist() ), - qtr( "Ctrl+L" ) ); + menu->addAction( QIcon( ":/playlist_menu" ), qtr( "Play&list..." ), + mi, SLOT( togglePlaylist() ), qtr( "Ctrl+L" ) ); act->setData( "_static_" ); } - addDPStaticEntry( menu, qtr( I_MENU_EXT ), "", - ":/settings", SLOT( extendedDialog() ), - "Ctrl+E" ); + addDPStaticEntry( menu, qtr( I_MENU_EXT ), "", ":/settings", + SLOT( extendedDialog() ), "Ctrl+E" ); menu->addSeparator(); @@ -374,7 +372,7 @@ QMenu *QVLCMenu::ToolsMenu( intf_thread_t *p_intf, if( mi ) { /* Minimal View */ - QAction *action = menu->addAction( qtr( "Minimal View..." ), mi, + QAction *action = menu->addAction( qtr( "Mi&nimal View..." ), mi, SLOT( toggleMinimalView() ), qtr( "Ctrl+H" ) ); action->setCheckable( true ); action->setData( "_static_" ); @@ -383,13 +381,13 @@ QMenu *QVLCMenu::ToolsMenu( intf_thread_t *p_intf, minimalViewAction = action; /* HACK for minimalView */ /* FullScreen View */ - action = menu->addAction( qtr( "Fullscreen Interface" ), mi, + action = menu->addAction( qtr( "&Fullscreen Interface" ), mi, SLOT( toggleFullScreen() ), QString( "F11" ) ); action->setCheckable( true ); action->setData( "_static_" ); /* Advanced Controls */ - action = menu->addAction( qtr( "Advanced Controls" ), mi, + action = menu->addAction( qtr( "&Advanced Controls" ), mi, SLOT( toggleAdvanced() ) ); action->setCheckable( true ); action->setData( "_static_" ); @@ -420,7 +418,7 @@ QMenu *QVLCMenu::ToolsMenu( intf_thread_t *p_intf, #endif menu->addSeparator(); - addDPStaticEntry( menu, qtr( "Preferences..." ), "", + addDPStaticEntry( menu, qtr( "&Preferences..." ), "", ":/preferences", SLOT( prefsDialog() ), "Ctrl+P" ); return menu; } @@ -509,7 +507,7 @@ QMenu *QVLCMenu::VideoMenu( intf_thread_t *p_intf, QMenu *current ) ACT_ADD( current, "crop", qtr( "&Crop" ) ); ACT_ADD( current, "video-on-top", qtr( "Always &On Top" ) ); /* ACT_ADD( current, "directx-wallpaper", qtr( "DirectX Wallpaper" ) ); */ - ACT_ADD( current, "video-snapshot", qtr( "Snapshot" ) ); + ACT_ADD( current, "video-snapshot", qtr( "Snapsh&ot" ) ); /* ACT_ADD( current, "ffmpeg-pp-q", qtr( "Decoder" ) ); */ } @@ -548,7 +546,7 @@ QMenu *QVLCMenu::NavigMenu( intf_thread_t *p_intf, QMenu *menu ) menu->addSeparator(); ACT_ADD( menu, "bookmark", qtr( "&Bookmarks" ) ); - ACT_ADD( menu, "title", qtr( "&Title" ) ); + ACT_ADD( menu, "title", qtr( "T&itle" ) ); ACT_ADD( menu, "chapter", qtr( "&Chapter" ) ); ACT_ADD( menu, "program", qtr( "&Program" ) ); ACT_ADD( menu, "navigation", qtr( "&Navigation" ) ); @@ -613,10 +611,10 @@ QMenu *QVLCMenu::SDMenu( intf_thread_t *p_intf ) QMenu *QVLCMenu::HelpMenu( QMenu *current ) { QMenu *menu = new QMenu( current ); - addDPStaticEntry( menu, qtr( "Help..." ) , "", + addDPStaticEntry( menu, qtr( "&Help..." ) , "", ":/help", SLOT( helpDialog() ), "F1" ); #ifdef UPDATE_CHECK - addDPStaticEntry( menu, qtr( "Check for Updates..." ) , "", "", + addDPStaticEntry( menu, qtr( "Check for &Updates..." ) , "", "", SLOT( updateDialog() ), ""); #endif menu->addSeparator();