]> git.sesse.net Git - vlc/commitdiff
use OK instead of Ok
authorJean-Baptiste Kempf <jb@videolan.org>
Wed, 9 Jul 2008 18:45:59 +0000 (11:45 -0700)
committerJean-Baptiste Kempf <jb@videolan.org>
Wed, 9 Jul 2008 20:08:05 +0000 (13:08 -0700)
Same as previous

modules/gui/qt4/components/open_panels.cpp
modules/gui/qt4/main_interface.cpp
src/interface/interaction.c

index 38635eb83d112b21481787bc3a7293e219140319..94e17c2738232d64a0769587aaffe23b273088c8 100644 (file)
@@ -1129,7 +1129,7 @@ void CaptureOpenPanel::advancedDialog()
 
     /* Button stuffs */
     QDialogButtonBox *advButtonBox = new QDialogButtonBox( adv );
-    QPushButton *closeButton = new QPushButton( qtr( "Ok" ) );
+    QPushButton *closeButton = new QPushButton( qtr( "OK" ) );
     QPushButton *cancelButton = new QPushButton( qtr( "Cancel" ) );
 
     CONNECT( closeButton, clicked(), adv, accept() );
index a95701a43335a0cb5c61567136697c7c54308521..278da48ab710c3780dcf0a4c69bf0a88885920bf 100644 (file)
@@ -521,7 +521,7 @@ int MainInterface::privacyDialog( QList<ConfigControl *> controls )
     CONFIG_GENERIC_NOBOOL( "qt-updates-days", Integer ); line++;
 #endif
 
-    QPushButton *ok = new QPushButton( qtr( "Ok" ) );
+    QPushButton *ok = new QPushButton( qtr( "OK" ) );
 
     gLayout->addWidget( ok, 2, 2 );
 
index 6eab001827b4cff34d3edcbedf960dc8527f7f5c..633ea49c085a1a83b46e32a08dcdb5293313159f 100644 (file)
@@ -276,7 +276,7 @@ int __intf_UserLoginPassword( vlc_object_t *p_this,
     p_new->i_type = INTERACT_DIALOG_TWOWAY;
     p_new->psz_title = strdup( psz_title );
     p_new->psz_description = strdup( psz_description );
-    p_new->psz_default_button = strdup( _("Ok" ) );
+    p_new->psz_default_button = strdup( _("OK" ) );
     p_new->psz_alternate_button = strdup( _("Cancel" ) );
 
     p_new->i_flags = DIALOG_LOGIN_PW_OK_CANCEL;