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
db8ce6ef
Commit
db8ce6ef
authored
Mar 15, 2009
by
Jean-Baptiste Kempf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Qt: Sout strings modification.
parent
5bdf4e18
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
20 additions
and
14 deletions
+20
-14
modules/gui/qt4/components/sout/sout_widgets.cpp
modules/gui/qt4/components/sout/sout_widgets.cpp
+11
-6
modules/gui/qt4/dialogs/sout.cpp
modules/gui/qt4/dialogs/sout.cpp
+6
-5
modules/gui/qt4/ui/sout.ui
modules/gui/qt4/ui/sout.ui
+3
-3
No files found.
modules/gui/qt4/components/sout/sout_widgets.cpp
View file @
db8ce6ef
...
@@ -86,7 +86,7 @@ FileDestBox::FileDestBox( QWidget *_parent ) : VirtualDestBox( _parent )
...
@@ -86,7 +86,7 @@ FileDestBox::FileDestBox( QWidget *_parent ) : VirtualDestBox( _parent )
QGridLayout
*
layout
=
new
QGridLayout
(
this
);
QGridLayout
*
layout
=
new
QGridLayout
(
this
);
QLabel
*
fileOutput
=
new
QLabel
(
QLabel
*
fileOutput
=
new
QLabel
(
qtr
(
"This module
s outputs to a file on your disk
."
),
this
);
qtr
(
"This module
writes the transcoded stream to a file
."
),
this
);
layout
->
addWidget
(
fileOutput
,
0
,
0
,
1
,
-
1
);
layout
->
addWidget
(
fileOutput
,
0
,
0
,
1
,
-
1
);
QLabel
*
fileLabel
=
new
QLabel
(
qtr
(
"Filename"
),
this
);
QLabel
*
fileLabel
=
new
QLabel
(
qtr
(
"Filename"
),
this
);
...
@@ -134,7 +134,8 @@ HTTPDestBox::HTTPDestBox( QWidget *_parent ) : VirtualDestBox( _parent )
...
@@ -134,7 +134,8 @@ HTTPDestBox::HTTPDestBox( QWidget *_parent ) : VirtualDestBox( _parent )
QGridLayout
*
layout
=
new
QGridLayout
(
this
);
QGridLayout
*
layout
=
new
QGridLayout
(
this
);
QLabel
*
httpOutput
=
new
QLabel
(
QLabel
*
httpOutput
=
new
QLabel
(
qtr
(
"This modules streams on the networks with the HTTP protocol."
),
this
);
qtr
(
"This module outputs the transcoded stream to a network via HTTP."
),
this
);
layout
->
addWidget
(
httpOutput
,
0
,
0
,
1
,
-
1
);
layout
->
addWidget
(
httpOutput
,
0
,
0
,
1
,
-
1
);
QLabel
*
HTTPLabel
=
new
QLabel
(
qtr
(
"Address"
),
this
);
QLabel
*
HTTPLabel
=
new
QLabel
(
qtr
(
"Address"
),
this
);
...
@@ -177,7 +178,8 @@ MMSHDestBox::MMSHDestBox( QWidget *_parent ) : VirtualDestBox( _parent )
...
@@ -177,7 +178,8 @@ MMSHDestBox::MMSHDestBox( QWidget *_parent ) : VirtualDestBox( _parent )
QGridLayout
*
layout
=
new
QGridLayout
(
this
);
QGridLayout
*
layout
=
new
QGridLayout
(
this
);
QLabel
*
mmshOutput
=
new
QLabel
(
QLabel
*
mmshOutput
=
new
QLabel
(
qtr
(
"This modules streams on the networks with the mms: protocol."
),
this
);
qtr
(
"This module outputs the transcoded stream to a network "
" via the mms protocol."
),
this
);
layout
->
addWidget
(
mmshOutput
,
0
,
0
,
1
,
-
1
);
layout
->
addWidget
(
mmshOutput
,
0
,
0
,
1
,
-
1
);
QLabel
*
MMSHLabel
=
new
QLabel
(
qtr
(
"Address"
),
this
);
QLabel
*
MMSHLabel
=
new
QLabel
(
qtr
(
"Address"
),
this
);
...
@@ -220,7 +222,8 @@ UDPDestBox::UDPDestBox( QWidget *_parent ) : VirtualDestBox( _parent )
...
@@ -220,7 +222,8 @@ UDPDestBox::UDPDestBox( QWidget *_parent ) : VirtualDestBox( _parent )
QGridLayout
*
layout
=
new
QGridLayout
(
this
);
QGridLayout
*
layout
=
new
QGridLayout
(
this
);
QLabel
*
udpOutput
=
new
QLabel
(
QLabel
*
udpOutput
=
new
QLabel
(
qtr
(
"This modules streams on the networks with the UDP protocol."
),
this
);
qtr
(
"This module outputs the transcoded stream to a network via UDP."
),
this
);
layout
->
addWidget
(
udpOutput
,
0
,
0
,
1
,
-
1
);
layout
->
addWidget
(
udpOutput
,
0
,
0
,
1
,
-
1
);
QLabel
*
UDPLabel
=
new
QLabel
(
qtr
(
"Address"
),
this
);
QLabel
*
UDPLabel
=
new
QLabel
(
qtr
(
"Address"
),
this
);
...
@@ -265,7 +268,8 @@ RTPDestBox::RTPDestBox( QWidget *_parent ) : VirtualDestBox( _parent )
...
@@ -265,7 +268,8 @@ RTPDestBox::RTPDestBox( QWidget *_parent ) : VirtualDestBox( _parent )
QGridLayout
*
layout
=
new
QGridLayout
(
this
);
QGridLayout
*
layout
=
new
QGridLayout
(
this
);
QLabel
*
rtpOutput
=
new
QLabel
(
QLabel
*
rtpOutput
=
new
QLabel
(
qtr
(
"This modules streams on the networks with the RTP protocol."
),
this
);
qtr
(
"This module outputs the transcoded stream to a network via RTP."
),
this
);
layout
->
addWidget
(
rtpOutput
,
0
,
0
,
1
,
-
1
);
layout
->
addWidget
(
rtpOutput
,
0
,
0
,
1
,
-
1
);
QLabel
*
RTPLabel
=
new
QLabel
(
qtr
(
"Address"
),
this
);
QLabel
*
RTPLabel
=
new
QLabel
(
qtr
(
"Address"
),
this
);
...
@@ -340,7 +344,8 @@ ICEDestBox::ICEDestBox( QWidget *_parent ) : VirtualDestBox( _parent )
...
@@ -340,7 +344,8 @@ ICEDestBox::ICEDestBox( QWidget *_parent ) : VirtualDestBox( _parent )
QGridLayout
*
layout
=
new
QGridLayout
(
this
);
QGridLayout
*
layout
=
new
QGridLayout
(
this
);
QLabel
*
iceOutput
=
new
QLabel
(
QLabel
*
iceOutput
=
new
QLabel
(
qtr
(
"This modules streams using IceCast."
),
this
);
qtr
(
"This module outputs the transcoded stream to an Icecast server."
),
this
);
layout
->
addWidget
(
iceOutput
,
0
,
0
,
1
,
-
1
);
layout
->
addWidget
(
iceOutput
,
0
,
0
,
1
,
-
1
);
QLabel
*
ICELabel
=
new
QLabel
(
qtr
(
"Address"
),
this
);
QLabel
*
ICELabel
=
new
QLabel
(
qtr
(
"Address"
),
this
);
...
...
modules/gui/qt4/dialogs/sout.cpp
View file @
db8ce6ef
...
@@ -45,11 +45,12 @@ SoutDialog::SoutDialog( QWidget *parent, intf_thread_t *_p_intf, QString inputMR
...
@@ -45,11 +45,12 @@ SoutDialog::SoutDialog( QWidget *parent, intf_thread_t *_p_intf, QString inputMR
/* UI stuff */
/* UI stuff */
ui
.
setupUi
(
this
);
ui
.
setupUi
(
this
);
ui
.
inputBox
->
setMRL
(
inputMRL
);
ui
.
inputBox
->
setMRL
(
inputMRL
);
ui
.
helpEdit
->
setPlainText
(
"This dialog will allow you to stream or convert "
ui
.
helpEdit
->
setPlainText
(
"This dialog will allow you to stream or "
"your media, locally, on your private network or on the "
"convert your media for use locally, on your private network, "
"Internet.
\n
"
"or on the Internet.
\n
"
"You should start by checking that your input matches what you "
"You should start by checking that source matches what you want "
"want and go on with the
\"
Next
\"
button.
\n
"
);
"your input to be and then press the
\"
Next
\"
"
"button to continue.
\n
"
);
ui
.
mrlEdit
->
setToolTip
(
qtr
(
"Stream output string.
\n
"
ui
.
mrlEdit
->
setToolTip
(
qtr
(
"Stream output string.
\n
"
"This is automatically generated "
"This is automatically generated "
...
...
modules/gui/qt4/ui/sout.ui
View file @
db8ce6ef
...
@@ -137,7 +137,7 @@
...
@@ -137,7 +137,7 @@
</rect>
</rect>
</property>
</property>
<attribute
name=
"label"
>
<attribute
name=
"label"
>
<string>
_(
"
Destination
"
)
</string>
<string>
_(
"
Destination
s
"
)
</string>
</attribute>
</attribute>
<layout
class=
"QGridLayout"
name=
"gridLayout_6"
>
<layout
class=
"QGridLayout"
name=
"gridLayout_6"
>
<item
row=
"0"
column=
"0"
colspan=
"3"
>
<item
row=
"0"
column=
"0"
colspan=
"3"
>
...
@@ -270,13 +270,13 @@
...
@@ -270,13 +270,13 @@
</rect>
</rect>
</property>
</property>
<attribute
name=
"label"
>
<attribute
name=
"label"
>
<string>
_(
"
Transcoding
"
)
</string>
<string>
_(
"
Options
"
)
</string>
</attribute>
</attribute>
<layout
class=
"QGridLayout"
name=
"gridLayout_2"
>
<layout
class=
"QGridLayout"
name=
"gridLayout_2"
>
<item
row=
"0"
column=
"0"
colspan=
"2"
>
<item
row=
"0"
column=
"0"
colspan=
"2"
>
<widget
class=
"QGroupBox"
name=
"groupBox_3"
>
<widget
class=
"QGroupBox"
name=
"groupBox_3"
>
<property
name=
"title"
>
<property
name=
"title"
>
<string>
_(
"
Miscellaneous
"
)
</string>
<string>
_(
"
Miscellaneous
Options
"
)
</string>
</property>
</property>
<layout
class=
"QGridLayout"
name=
"gridLayout_4"
>
<layout
class=
"QGridLayout"
name=
"gridLayout_4"
>
<item
row=
"0"
column=
"0"
colspan=
"3"
>
<item
row=
"0"
column=
"0"
colspan=
"3"
>
...
...
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