changed "Ok" to "OK"

Signed-off-by: oosh <ovtennakoon@gmail.com>
This commit is contained in:
oosh 2026-04-09 23:29:39 +10:00
parent 194b72f180
commit f2c5916205
2 changed files with 2 additions and 2 deletions

View file

@ -106,7 +106,7 @@ InstallLoaderDialog::InstallLoaderDialog(PackProfile* profile, const QString& ui
buttons->setOrientation(Qt::Horizontal);
buttons->setStandardButtons(QDialogButtonBox::Cancel | QDialogButtonBox::Ok);
buttons->button(QDialogButtonBox::Ok)->setText(tr("Ok"));
buttons->button(QDialogButtonBox::Ok)->setText(tr("OK"));
buttons->button(QDialogButtonBox::Cancel)->setText(tr("Cancel"));
connect(buttons, &QDialogButtonBox::accepted, this, &QDialog::accept);
connect(buttons, &QDialogButtonBox::rejected, this, &QDialog::reject);

View file

@ -69,7 +69,7 @@ VersionSelectDialog::VersionSelectDialog(BaseVersionList* vlist, QString title,
m_buttonBox->setOrientation(Qt::Horizontal);
m_buttonBox->setStandardButtons(QDialogButtonBox::Cancel | QDialogButtonBox::Ok);
m_buttonBox->button(QDialogButtonBox::Ok)->setText(tr("Ok"));
m_buttonBox->button(QDialogButtonBox::Ok)->setText(tr("OK"));
m_buttonBox->button(QDialogButtonBox::Cancel)->setText(tr("Cancel"));
m_horizontalLayout->addWidget(m_buttonBox);