Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
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
Commits
5d89e071
Commit
5d89e071
authored
Jul 24, 2008
by
Christophe Mutricy
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
qt: i18n fix
Spotted-by: Cristian Secară
parent
126902d3
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
modules/gui/qt4/menus.cpp
modules/gui/qt4/menus.cpp
+1
-1
modules/gui/qt4/menus.hpp
modules/gui/qt4/menus.hpp
+2
-2
No files found.
modules/gui/qt4/menus.cpp
View file @
5d89e071
...
...
@@ -591,7 +591,7 @@ QMenu *QVLCMenu::SDMenu( intf_thread_t *p_intf )
if
(
!
strcmp
(
*
ppsz_name
,
"podcast"
)
)
{
QAction
*
b
=
new
QAction
(
q
fu
(
"Configure podcasts..."
),
menu
);
QAction
*
b
=
new
QAction
(
q
tr
(
"Configure podcasts..."
),
menu
);
//b->setEnabled( a->isChecked() );
menu
->
addAction
(
b
);
CONNECT
(
b
,
triggered
(),
THEDP
,
podcastConfigureDialog
()
);
...
...
modules/gui/qt4/menus.hpp
View file @
5d89e071
...
...
@@ -32,9 +32,9 @@
/* Folder vs. Directory */
#if defined( WIN32 ) || defined(__APPLE__)
#define I_OPEN_FOLDER
"Open &Folder..."
#define I_OPEN_FOLDER
N_("Open &Folder...")
#else
#define I_OPEN_FOLDER
"Open D&irectory..."
#define I_OPEN_FOLDER
N_("Open D&irectory...")
#endif //WIN32
using
namespace
std
;
...
...
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