Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-gpu
Commits
a09da968
Commit
a09da968
authored
Jan 24, 2009
by
Jean-Baptiste Kempf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Qt: Menus updates. Change position and removal of ...
parent
ee759771
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
18 additions
and
14 deletions
+18
-14
include/vlc_intf_strings.h
include/vlc_intf_strings.h
+9
-9
modules/gui/qt4/menus.cpp
modules/gui/qt4/menus.cpp
+9
-5
No files found.
include/vlc_intf_strings.h
View file @
a09da968
...
...
@@ -39,15 +39,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_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_ABOUT N_("&About")
/* Playlist popup */
#define I_POP_PLAY N_("Play")
...
...
@@ -82,7 +82,7 @@
#define I_PL_SEARCH N_("Search")
#define I_PL_FILTER N_("Search Filter")
#define I_PL_SD N_("
Additional &Sources"
)
#define I_PL_SD N_("
&Services Discovery"
)
/*************** Preferences *************/
...
...
modules/gui/qt4/menus.cpp
View file @
a09da968
...
...
@@ -360,26 +360,30 @@ QMenu *QVLCMenu::ToolsMenu( intf_thread_t *p_intf )
addDPStaticEntry
(
menu
,
qtr
(
I_MENU_EXT
),
":/settings"
,
SLOT
(
extendedDialog
()
),
"Ctrl+E"
);
addDPStaticEntry
(
menu
,
qtr
(
I_MENU_MSG
),
":/messages"
,
SLOT
(
messagesDialog
()
),
"Ctrl+M"
);
addDPStaticEntry
(
menu
,
qtr
(
I_MENU_INFO
)
,
":/info"
,
SLOT
(
mediaInfoDialog
()
),
"Ctrl+I"
);
addDPStaticEntry
(
menu
,
qtr
(
I_MENU_CODECINFO
)
,
":/info"
,
SLOT
(
mediaCodecDialog
()
),
"Ctrl+J"
);
addDPStaticEntry
(
menu
,
qtr
(
I_MENU_BOOKMARK
),
""
,
SLOT
(
bookmarksDialog
()
),
"Ctrl+B"
);
#ifdef ENABLE_VLM
addDPStaticEntry
(
menu
,
qtr
(
I_MENU_VLM
),
""
,
SLOT
(
vlmDialog
()
),
"Ctrl+W"
);
#endif
addDPStaticEntry
(
menu
,
qtr
(
I_MENU_MSG
),
":/messages"
,
SLOT
(
messagesDialog
()
),
"Ctrl+M"
);
addDPStaticEntry
(
menu
,
qtr
(
"Plu&gins and extensions"
),
""
,
SLOT
(
pluginDialog
()
)
);
menu
->
addSeparator
();
addDPStaticEntry
(
menu
,
qtr
(
"Customi&ze Interface..."
),
":/preferences"
,
SLOT
(
toolbarDialog
()
)
);
addDPStaticEntry
(
menu
,
qtr
(
"&Preferences
...
"
),
addDPStaticEntry
(
menu
,
qtr
(
"&Preferences"
),
":/preferences"
,
SLOT
(
prefsDialog
()
),
"Ctrl+P"
);
return
menu
;
...
...
@@ -714,7 +718,7 @@ void QVLCMenu::PopupMenuStaticEntries( QMenu *menu )
menu->addMenu( toolsmenu );
#endif
QMenu
*
openmenu
=
new
QMenu
(
qtr
(
"Open"
),
menu
);
QMenu
*
openmenu
=
new
QMenu
(
qtr
(
"Open
Media
"
),
menu
);
addDPStaticEntry
(
openmenu
,
qtr
(
"&Open File..."
),
":/file-asym"
,
SLOT
(
openFileDialog
()
)
);
addDPStaticEntry
(
openmenu
,
qtr
(
I_OPEN_FOLDER
),
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment