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
128338ce
Commit
128338ce
authored
Jun 28, 2007
by
Jean-Baptiste Kempf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Qt4 - Dialogs. String Changes, reviewed by tonsofpcs
parent
74be690b
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
7 deletions
+7
-7
modules/gui/qt4/dialogs/errors.cpp
modules/gui/qt4/dialogs/errors.cpp
+1
-1
modules/gui/qt4/dialogs/extended.cpp
modules/gui/qt4/dialogs/extended.cpp
+3
-3
modules/gui/qt4/dialogs/gototime.cpp
modules/gui/qt4/dialogs/gototime.cpp
+3
-3
No files found.
modules/gui/qt4/dialogs/errors.cpp
View file @
128338ce
...
...
@@ -45,7 +45,7 @@ ErrorsDialog::ErrorsDialog( intf_thread_t *_p_intf ) : QVLCFrame( _p_intf )
messages
=
new
QTextEdit
();
messages
->
setReadOnly
(
true
);
messages
->
setHorizontalScrollBarPolicy
(
Qt
::
ScrollBarAlwaysOff
);
stopShowing
=
new
QCheckBox
(
qtr
(
"
Don't show further
errors"
)
);
stopShowing
=
new
QCheckBox
(
qtr
(
"
Hide future
errors"
)
);
layout
->
addWidget
(
messages
,
0
,
0
,
1
,
3
);
layout
->
addWidget
(
stopShowing
,
1
,
0
);
...
...
modules/gui/qt4/dialogs/extended.cpp
View file @
128338ce
...
...
@@ -42,13 +42,13 @@ ExtendedDialog::ExtendedDialog( intf_thread_t *_p_intf ): QVLCFrame( _p_intf )
l
->
addWidget
(
tab
);
setWindowTitle
(
qtr
(
"
Extended control
s"
)
);
setWindowTitle
(
qtr
(
"
Adjustments and Effect
s"
)
);
Equalizer
*
foo
=
new
Equalizer
(
p_intf
,
this
);
tab
->
addTab
(
foo
,
qtr
(
"Equalizer"
)
);
tab
->
addTab
(
foo
,
qtr
(
"
Graphic
Equalizer"
)
);
ExtVideo
*
bar
=
new
ExtVideo
(
p_intf
,
this
);
tab
->
addTab
(
bar
,
qtr
(
"Video
e
ffects"
)
);
tab
->
addTab
(
bar
,
qtr
(
"Video
Adjustments and E
ffects"
)
);
}
ExtendedDialog
::~
ExtendedDialog
()
...
...
modules/gui/qt4/dialogs/gototime.cpp
View file @
128338ce
...
...
@@ -41,7 +41,7 @@ GotoTimeDialog *GotoTimeDialog::instance = NULL;
GotoTimeDialog
::
GotoTimeDialog
(
intf_thread_t
*
_p_intf
)
:
QVLCFrame
(
_p_intf
)
{
setWindowFlags
(
Qt
::
Tool
);
setWindowTitle
(
qtr
(
"Go to
T
ime"
)
);
setWindowTitle
(
qtr
(
"Go to
t
ime"
)
);
resize
(
260
,
160
);
QGridLayout
*
mainLayout
=
new
QGridLayout
(
this
);
...
...
@@ -54,11 +54,11 @@ GotoTimeDialog::GotoTimeDialog( intf_thread_t *_p_intf) : QVLCFrame( _p_intf )
buttonBox
->
addButton
(
gotoButton
,
QDialogButtonBox
::
AcceptRole
);
buttonBox
->
addButton
(
cancelButton
,
QDialogButtonBox
::
RejectRole
);
QGroupBox
*
timeGroupBox
=
new
QGroupBox
(
qtr
(
"Time"
)
)
;
QGroupBox
*
timeGroupBox
=
new
QGroupBox
;
QGridLayout
*
boxLayout
=
new
QGridLayout
(
timeGroupBox
);
QLabel
*
timeIntro
=
new
QLabel
(
"
Enter below the desired time you want to go in the media.
"
);
QLabel
(
"
Go to time:
"
);
timeIntro
->
setWordWrap
(
true
);
timeIntro
->
setAlignment
(
Qt
::
AlignCenter
);
...
...
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