Commit db8ce6ef authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

Qt: Sout strings modification.

parent 5bdf4e18
...@@ -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 modules 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 );
......
...@@ -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 "
......
...@@ -137,7 +137,7 @@ ...@@ -137,7 +137,7 @@
</rect> </rect>
</property> </property>
<attribute name="label"> <attribute name="label">
<string>_(&quot;Destination&quot;)</string> <string>_(&quot;Destinations&quot;)</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>_(&quot;Transcoding&quot;)</string> <string>_(&quot;Options&quot;)</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>_(&quot;Miscellaneous&quot;)</string> <string>_(&quot;Miscellaneous Options&quot;)</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">
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment