]> git.sesse.net Git - vlc/commitdiff
String review. Again.
authorJean-Baptiste Kempf <jb@videolan.org>
Wed, 9 Jul 2008 20:39:28 +0000 (13:39 -0700)
committerJean-Baptiste Kempf <jb@videolan.org>
Wed, 9 Jul 2008 20:40:21 +0000 (13:40 -0700)
modules/gui/qt4/dialogs/open.cpp
modules/gui/qt4/dialogs/podcast_configuration.cpp
modules/gui/qt4/dialogs/preferences.cpp
modules/gui/qt4/dialogs/vlm.cpp

index c3c5d9444325218fea960e452a75bb23f073fdf7..7ce95ebb799a63dfb2d71283637f84643b035c36 100644 (file)
@@ -99,7 +99,7 @@ OpenDialog::OpenDialog( QWidget *parent,
     cancelButton = new QPushButton( qtr( "&Cancel" ) );
 
     /* Select Button */
-    selectButton = new QPushButton( qtr( "Select" ) );
+    selectButton = new QPushButton( qtr( "&Select" ) );
 
     /* Menu for the Play button */
     QMenu * openButtonMenu = new QMenu( "Open" );
index 040600a963d9ff33b7442cab326f6691eb4fbb75..2b7fb7486deb58ddb0a317197c549346d2b958ef 100644 (file)
@@ -35,7 +35,7 @@ PodcastConfigDialog::PodcastConfigDialog( QWidget *parent, intf_thread_t *_p_int
     ui.setupUi( this );
 
     QPushButton *okButton = new QPushButton( qtr( "OK" ), this );
-    QPushButton *cancelButton = new QPushButton( qtr( "Cancel" ), this );
+    QPushButton *cancelButton = new QPushButton( qtr( "&Cancel" ), this );
     ui.okCancel->addButton( okButton, QDialogButtonBox::AcceptRole );
     ui.okCancel->addButton( cancelButton, QDialogButtonBox::RejectRole );
     CONNECT( ui.podcastAdd, clicked(), this, add() );
index 09a873f22efac55b9f60e20db98af81f3df40a63..aa57119f26e2d964dbd48f181c78418020d875a9 100644 (file)
@@ -62,7 +62,7 @@ PrefsDialog::PrefsDialog( QWidget *parent, intf_thread_t *_p_intf )
     types->setAlignment( Qt::AlignHCenter );
     QHBoxLayout *types_l = new QHBoxLayout;
     types_l->setSpacing( 3 ); types_l->setMargin( 3 );
-    small = new QRadioButton( qtr("Basic"), types );
+    small = new QRadioButton( qtr( "Simple" ), types );
     types_l->addWidget( small );
     all = new QRadioButton( qtr("All"), types ); types_l->addWidget( all );
     types->setLayout( types_l );
index afb1c7f66aecd40abc07f0edcc3d60cbd1c452ce..12bf3b4ded476bc24aaa28500ec64d334a55fe3f 100644 (file)
@@ -130,7 +130,7 @@ VLMDialog::VLMDialog( QWidget *parent, intf_thread_t *_p_intf ) : QVLCDialog( pa
         new QSpacerItem( 10, 10, QSizePolicy::Minimum, QSizePolicy::Expanding);
     vlmItemLayout->addItem( spacer );
 
-    QPushButton *importButton = new QPushButton( qtr(  "Import" ) );
+    QPushButton *importButton = new QPushButton( qtr( "Import" ) );
     ui.buttonBox->addButton( importButton, QDialogButtonBox::ActionRole );
 
     QPushButton *exportButton = new QPushButton( qtr( "Export" ) );
@@ -333,7 +333,7 @@ void VLMDialog::mediasPopulator()
 bool VLMDialog::importVLMConf()
 {
     QString openVLMConfFileName = QFileDialog::getOpenFileName(
-            this, qtr( "Choose a VLM configuration file to open..." ),
+            this, qtr( "Open a VLM Configuration File" ),
             qfu( config_GetHomeDir() ),
             qtr( "VLM conf (*.vlm) ;; All (*.*)" ) );