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
58efdeb9
Commit
58efdeb9
authored
Apr 08, 2009
by
Eric Lassauge
Committed by
Christophe Mutricy
Apr 08, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
qt4: i18n fixes
Signed-off-by:
Christophe Mutricy
<
xtophe@videolan.org
>
parent
c29fd5f9
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
4 deletions
+4
-4
modules/gui/qt4/components/open_panels.cpp
modules/gui/qt4/components/open_panels.cpp
+1
-1
modules/gui/qt4/dialogs/sout.cpp
modules/gui/qt4/dialogs/sout.cpp
+2
-2
modules/gui/qt4/dialogs/toolbar.cpp
modules/gui/qt4/dialogs/toolbar.cpp
+1
-1
No files found.
modules/gui/qt4/components/open_panels.cpp
View file @
58efdeb9
...
...
@@ -271,7 +271,7 @@ DiscOpenPanel::DiscOpenPanel( QWidget *_parent, intf_thread_t *_p_intf ) :
b_firstcdda
=
true
;
ui
.
browseDiscButton
->
setToolTip
(
qtr
(
I_DEVICE_TOOLTIP
));
ui
.
deviceCombo
->
setToolTip
(
I_DEVICE_TOOLTIP
);
ui
.
deviceCombo
->
setToolTip
(
qtr
(
I_DEVICE_TOOLTIP
)
);
#ifdef WIN32
/* Disc drives probing for Windows */
char
szDrives
[
512
];
...
...
modules/gui/qt4/dialogs/sout.cpp
View file @
58efdeb9
...
...
@@ -43,12 +43,12 @@ SoutDialog::SoutDialog( QWidget *parent, intf_thread_t *_p_intf, const QString&
/* UI stuff */
ui
.
setupUi
(
this
);
ui
.
inputBox
->
setMRL
(
inputMRL
);
ui
.
helpEdit
->
setPlainText
(
"This dialog will allow you to stream or "
ui
.
helpEdit
->
setPlainText
(
qtr
(
"This dialog will allow you to stream or "
"convert your media for use locally, on your private network, "
"or on the Internet.
\n
"
"You should start by checking that source matches what you want "
"your input to be and then press the
\"
Next
\"
"
"button to continue.
\n
"
);
"button to continue.
\n
"
)
);
ui
.
mrlEdit
->
setToolTip
(
qtr
(
"Stream output string.
\n
"
"This is automatically generated "
...
...
modules/gui/qt4/dialogs/toolbar.cpp
View file @
58efdeb9
...
...
@@ -346,7 +346,7 @@ WidgetListing::WidgetListing( intf_thread_t *p_intf, QWidget *_parent )
case
VOLUME_SPECIAL
:
{
QListWidgetItem
*
widgetItem
=
new
QListWidgetItem
(
this
);
widgetItem
->
setText
(
"Small Volume"
);
widgetItem
->
setText
(
qtr
(
"Small Volume"
)
);
widgetItem
->
setIcon
(
QIcon
(
":/volume-medium"
)
);
widgetItem
->
setData
(
Qt
::
UserRole
,
QVariant
(
i
)
);
addItem
(
widgetItem
);
...
...
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