From 62557bbace8fcdafe2bdf620c8dcb757ac71120d Mon Sep 17 00:00:00 2001 From: Jean-Baptiste Kempf Date: Wed, 9 Jul 2008 11:45:59 -0700 Subject: [PATCH] use OK instead of Ok Same as previous --- modules/gui/qt4/components/open_panels.cpp | 2 +- modules/gui/qt4/main_interface.cpp | 2 +- src/interface/interaction.c | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/modules/gui/qt4/components/open_panels.cpp b/modules/gui/qt4/components/open_panels.cpp index 38635eb83d..94e17c2738 100644 --- a/modules/gui/qt4/components/open_panels.cpp +++ b/modules/gui/qt4/components/open_panels.cpp @@ -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() ); diff --git a/modules/gui/qt4/main_interface.cpp b/modules/gui/qt4/main_interface.cpp index a95701a433..278da48ab7 100644 --- a/modules/gui/qt4/main_interface.cpp +++ b/modules/gui/qt4/main_interface.cpp @@ -521,7 +521,7 @@ int MainInterface::privacyDialog( QList 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 ); diff --git a/src/interface/interaction.c b/src/interface/interaction.c index 6eab001827..633ea49c08 100644 --- a/src/interface/interaction.c +++ b/src/interface/interaction.c @@ -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; -- 2.39.2