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
2396250c
Commit
2396250c
authored
Sep 20, 2008
by
Christophe Mutricy
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
i18n fixes
parent
1132233a
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
7 deletions
+6
-7
modules/gui/qt4/dialogs/vlm.cpp
modules/gui/qt4/dialogs/vlm.cpp
+6
-7
No files found.
modules/gui/qt4/dialogs/vlm.cpp
View file @
2396250c
...
...
@@ -53,7 +53,6 @@
#include <QScrollArea>
#include <QFileDialog>
static
const
char
*
psz_type
[]
=
{
"Broadcast"
,
"Schedule"
,
"VOD"
};
VLMDialog
*
VLMDialog
::
instance
=
NULL
;
...
...
@@ -73,9 +72,9 @@ VLMDialog::VLMDialog( QWidget *parent, intf_thread_t *_p_intf ) : QVLCDialog( pa
ui
.
saveButton
->
hide
();
#define ADDMEDIATYPES( str, type ) ui.mediaType->addItem( qtr( str ), QVariant( type ) );
ADDMEDIATYPES
(
"Broadcast"
,
QVLM_Broadcast
);
ADDMEDIATYPES
(
"Schedule"
,
QVLM_Schedule
);
ADDMEDIATYPES
(
"Video On Demand ( VOD )"
,
QVLM_VOD
);
ADDMEDIATYPES
(
N_
(
"Broadcast"
)
,
QVLM_Broadcast
);
ADDMEDIATYPES
(
N_
(
"Schedule"
)
,
QVLM_Schedule
);
ADDMEDIATYPES
(
N_
(
"Video On Demand ( VOD )"
)
,
QVLM_VOD
);
#undef ADDMEDIATYPES
/* Schedule Stuffs */
...
...
@@ -526,7 +525,7 @@ VLMBroadcast::VLMBroadcast( QString _name, QString _input, QString _output,
:
VLMAWidget
(
_name
,
_input
,
_output
,
_enabled
,
_parent
,
QVLM_Broadcast
)
{
nameLabel
->
setText
(
"Broadcast: "
+
name
);
nameLabel
->
setText
(
qtr
(
"Broadcast: "
)
+
name
);
type
=
QVLM_Broadcast
;
b_looped
=
_looped
;
...
...
@@ -594,7 +593,7 @@ VLMSchedule::VLMSchedule( QString name, QString input, QString output,
bool
enabled
,
VLMDialog
*
parent
)
:
VLMAWidget
(
name
,
input
,
output
,
enabled
,
parent
,
QVLM_Schedule
)
{
nameLabel
->
setText
(
"Schedule: "
+
name
);
nameLabel
->
setText
(
qtr
(
"Schedule: "
)
+
name
);
schetime
=
_schetime
;
schedate
=
_schedate
;
rNumber
=
_scherepeatnumber
;
...
...
@@ -616,7 +615,7 @@ VLMVod::VLMVod( QString name, QString input, QString output,
bool
enabled
,
QString
_mux
,
VLMDialog
*
parent
)
:
VLMAWidget
(
name
,
input
,
output
,
enabled
,
parent
,
QVLM_VOD
)
{
nameLabel
->
setText
(
"VOD:"
+
name
);
nameLabel
->
setText
(
qtr
(
"VOD: "
)
+
name
);
mux
=
_mux
;
muxLabel
=
new
QLabel
;
...
...
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