Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Open sidebar
Gautam Chitnis
web-ui-redesign
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