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
89fafa9a
Commit
89fafa9a
authored
Nov 19, 2006
by
Christophe Mutricy
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
i18n fixes
parent
213f7a98
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
7 deletions
+7
-7
modules/gui/qt4/components/extended_panels.cpp
modules/gui/qt4/components/extended_panels.cpp
+1
-1
modules/gui/qt4/components/playlist/standardpanel.cpp
modules/gui/qt4/components/playlist/standardpanel.cpp
+5
-5
modules/gui/qt4/ui/equalizer.ui
modules/gui/qt4/ui/equalizer.ui
+1
-1
No files found.
modules/gui/qt4/components/extended_panels.cpp
View file @
89fafa9a
...
...
@@ -58,7 +58,7 @@ Equalizer::Equalizer( intf_thread_t *_p_intf, QWidget *_parent ) :
ui
.
preampSlider
->
setMaximum
(
400
);
for
(
int
i
=
0
;
i
<
NB_PRESETS
;
i
++
)
{
ui
.
presetsCombo
->
addItem
(
q
fu
(
preset_list_text
[
i
]
),
ui
.
presetsCombo
->
addItem
(
q
tr
(
preset_list_text
[
i
]
),
QVariant
(
i
)
);
}
CONNECT
(
ui
.
presetsCombo
,
activated
(
int
),
this
,
setPreset
(
int
)
);
...
...
modules/gui/qt4/components/playlist/standardpanel.cpp
View file @
89fafa9a
...
...
@@ -177,15 +177,15 @@ void StandardPLPanel::add()
if
(
currentRootId
==
THEPL
->
p_local_category
->
i_id
||
currentRootId
==
THEPL
->
p_local_onelevel
->
i_id
)
{
popup
->
addAction
(
"Add file"
,
THEDP
,
SLOT
(
simplePLAppendDialog
()
)
);
popup
->
addAction
(
"Advanced add"
,
THEDP
,
SLOT
(
PLAppendDialog
()
)
);
popup
->
addAction
(
qtr
(
"Add file"
)
,
THEDP
,
SLOT
(
simplePLAppendDialog
()
)
);
popup
->
addAction
(
qtr
(
"Advanced add"
)
,
THEDP
,
SLOT
(
PLAppendDialog
()
)
);
}
else
if
(
currentRootId
==
THEPL
->
p_ml_category
->
i_id
||
currentRootId
==
THEPL
->
p_ml_onelevel
->
i_id
)
{
popup
->
addAction
(
"Add file"
,
THEDP
,
SLOT
(
simpleMLAppendDialog
()
)
);
popup
->
addAction
(
"Advanced add"
,
THEDP
,
SLOT
(
MLAppendDialog
()
)
);
popup
->
addAction
(
"Directory"
,
THEDP
,
SLOT
(
openMLDirectory
()
)
);
popup
->
addAction
(
qtr
(
"Add file"
)
,
THEDP
,
SLOT
(
simpleMLAppendDialog
()
)
);
popup
->
addAction
(
qtr
(
"Advanced add"
)
,
THEDP
,
SLOT
(
MLAppendDialog
()
)
);
popup
->
addAction
(
qtr
(
"Directory"
)
,
THEDP
,
SLOT
(
openMLDirectory
()
)
);
}
popup
->
popup
(
QCursor
::
pos
()
);
}
...
...
modules/gui/qt4/ui/equalizer.ui
View file @
89fafa9a
...
...
@@ -60,7 +60,7 @@
<item>
<widget class="QLabel" name="label" >
<property name="text" >
<string>
Preset
</string>
<string>
_("Preset")
</string>
</property>
</widget>
</item>
...
...
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