]> git.sesse.net Git - vlc/commitdiff
Use Header capitalisation for dialogs titles.
authorJean-Baptiste Kempf <jb@videolan.org>
Wed, 9 Jul 2008 18:40:23 +0000 (11:40 -0700)
committerJean-Baptiste Kempf <jb@videolan.org>
Wed, 9 Jul 2008 20:08:05 +0000 (13:08 -0700)
modules/gui/qt4/components/open_panels.cpp
modules/gui/qt4/dialogs/bookmarks.cpp
modules/gui/qt4/dialogs/gototime.cpp
modules/gui/qt4/dialogs/mediainfo.cpp
modules/gui/qt4/dialogs/sout.cpp
modules/gui/qt4/main_interface.cpp

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