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
0333f05e
Commit
0333f05e
authored
Sep 16, 2011
by
Jean-Baptiste Kempf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Qt: clarify a text
Close #5321
parent
0d18d564
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
modules/gui/qt4/components/extended_panels.cpp
modules/gui/qt4/components/extended_panels.cpp
+6
-6
No files found.
modules/gui/qt4/components/extended_panels.cpp
View file @
0333f05e
...
...
@@ -1496,7 +1496,7 @@ SyncControls::SyncControls( intf_thread_t *_p_intf, QWidget *_parent ) :
AVLayout
->
addWidget
(
plusAV
,
0
,
3
,
1
,
1
);
QLabel
*
AVLabel
=
new
QLabel
;
AVLabel
->
setText
(
qtr
(
"Ad
vance of audio over video
:"
)
);
AVLabel
->
setText
(
qtr
(
"Ad
d a delay to the audio track
:"
)
);
AVLayout
->
addWidget
(
AVLabel
,
0
,
0
,
1
,
1
);
AVSpin
=
new
QDoubleSpinBox
;
...
...
@@ -1505,8 +1505,8 @@ SyncControls::SyncControls( intf_thread_t *_p_intf, QWidget *_parent ) :
AVSpin
->
setMinimum
(
-
600.0
);
AVSpin
->
setMaximum
(
600.0
);
AVSpin
->
setSingleStep
(
0.1
);
AVSpin
->
setToolTip
(
qtr
(
"A positive value
means that
\n
"
"the audio
i
s ahead of the video"
)
);
AVSpin
->
setToolTip
(
qtr
(
"A positive value
will delay
\n
"
"the audio
, when it wa
s ahead of the video"
)
);
AVSpin
->
setSuffix
(
" s"
);
AVLayout
->
addWidget
(
AVSpin
,
0
,
2
,
1
,
1
);
mainLayout
->
addWidget
(
AVBox
,
1
,
0
,
1
,
5
);
...
...
@@ -1529,7 +1529,7 @@ SyncControls::SyncControls( intf_thread_t *_p_intf, QWidget *_parent ) :
subsLayout
->
addWidget
(
plussubs
,
0
,
3
,
1
,
1
);
QLabel
*
subsLabel
=
new
QLabel
;
subsLabel
->
setText
(
qtr
(
"Ad
vance of subtitles over video
:"
)
);
subsLabel
->
setText
(
qtr
(
"Ad
d a delay to the subtitle track
:"
)
);
subsLayout
->
addWidget
(
subsLabel
,
0
,
0
,
1
,
1
);
subsSpin
=
new
QDoubleSpinBox
;
...
...
@@ -1538,8 +1538,8 @@ SyncControls::SyncControls( intf_thread_t *_p_intf, QWidget *_parent ) :
subsSpin
->
setMinimum
(
-
600.0
);
subsSpin
->
setMaximum
(
600.0
);
subsSpin
->
setSingleStep
(
0.1
);
subsSpin
->
setToolTip
(
qtr
(
"A positive value
means that
\n
"
"
the subtitles a
re ahead of the video"
)
);
subsSpin
->
setToolTip
(
qtr
(
"A positive value
will delay the
\n
"
"
subtitles, when they we
re ahead of the video"
)
);
subsSpin
->
setSuffix
(
" s"
);
subsLayout
->
addWidget
(
subsSpin
,
0
,
2
,
1
,
1
);
...
...
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