Commit 62fae3a7 authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

Use Header capitalisation for dialogs titles.

parent 64417a25
...@@ -1102,7 +1102,7 @@ void CaptureOpenPanel::advancedDialog() ...@@ -1102,7 +1102,7 @@ void CaptureOpenPanel::advancedDialog()
/* New Adv Prop dialog */ /* New Adv Prop dialog */
adv = new QDialog( this ); adv = new QDialog( this );
adv->setWindowTitle( qtr( "Advanced options..." ) ); adv->setWindowTitle( qtr( "Advanced Options" ) );
/* A main Layout with a Frame */ /* A main Layout with a Frame */
QVBoxLayout *mainLayout = new QVBoxLayout( adv ); QVBoxLayout *mainLayout = new QVBoxLayout( adv );
......
...@@ -37,7 +37,7 @@ BookmarksDialog::BookmarksDialog( intf_thread_t *_p_intf ):QVLCFrame( _p_intf ) ...@@ -37,7 +37,7 @@ BookmarksDialog::BookmarksDialog( intf_thread_t *_p_intf ):QVLCFrame( _p_intf )
{ {
setWindowFlags( Qt::Tool ); setWindowFlags( Qt::Tool );
setWindowOpacity( config_GetFloat( p_intf, "qt-opacity" ) ); setWindowOpacity( config_GetFloat( p_intf, "qt-opacity" ) );
setWindowTitle( qtr( "Edit bookmark" ) ); setWindowTitle( qtr( "Edit Bookmarks" ) );
QGridLayout *layout = new QGridLayout( this ); QGridLayout *layout = new QGridLayout( this );
......
...@@ -43,7 +43,7 @@ GotoTimeDialog::GotoTimeDialog( QWidget *parent, intf_thread_t *_p_intf) ...@@ -43,7 +43,7 @@ GotoTimeDialog::GotoTimeDialog( QWidget *parent, intf_thread_t *_p_intf)
: QVLCDialog( parent, _p_intf ) : QVLCDialog( parent, _p_intf )
{ {
setWindowFlags( Qt::Tool ); setWindowFlags( Qt::Tool );
setWindowTitle( qtr( "Go to time" ) ); setWindowTitle( qtr( "Go to Time" ) );
QGridLayout *mainLayout = new QGridLayout( this ); QGridLayout *mainLayout = new QGridLayout( this );
mainLayout->setSizeConstraint( QLayout::SetFixedSize ); mainLayout->setSizeConstraint( QLayout::SetFixedSize );
......
...@@ -52,7 +52,7 @@ MediaInfoDialog::MediaInfoDialog( intf_thread_t *_p_intf, ...@@ -52,7 +52,7 @@ MediaInfoDialog::MediaInfoDialog( intf_thread_t *_p_intf,
b_cleaned = true; b_cleaned = true;
i_runs = 0; i_runs = 0;
setWindowTitle( qtr( "Media information" ) ); setWindowTitle( qtr( "Media Information" ) );
resize( 600 , 480 ); resize( 600 , 480 );
/* TabWidgets and Tabs creation */ /* TabWidgets and Tabs creation */
......
...@@ -96,7 +96,7 @@ SoutDialog* SoutDialog::instance = NULL; ...@@ -96,7 +96,7 @@ SoutDialog* SoutDialog::instance = NULL;
SoutDialog::SoutDialog( QWidget *parent, intf_thread_t *_p_intf, SoutDialog::SoutDialog( QWidget *parent, intf_thread_t *_p_intf,
bool _transcode_only ) : QVLCDialog( parent, _p_intf ) bool _transcode_only ) : QVLCDialog( parent, _p_intf )
{ {
setWindowTitle( qtr( "Stream output" ) ); setWindowTitle( qtr( "Stream Output" ) );
b_transcode_only = _transcode_only; b_transcode_only = _transcode_only;
......
...@@ -467,7 +467,7 @@ int MainInterface::privacyDialog( QList<ConfigControl *> controls ) ...@@ -467,7 +467,7 @@ int MainInterface::privacyDialog( QList<ConfigControl *> controls )
{ {
QDialog *privacy = new QDialog(); QDialog *privacy = new QDialog();
privacy->setWindowTitle( qtr( "Privacy and Network policies" ) ); privacy->setWindowTitle( qtr( "Privacy and Network Policies" ) );
QGridLayout *gLayout = new QGridLayout( privacy ); QGridLayout *gLayout = new QGridLayout( privacy );
......
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