diff --git a/cockatrice/src/userlist.cpp b/cockatrice/src/userlist.cpp index b7a52a4c..d438f5f5 100644 --- a/cockatrice/src/userlist.cpp +++ b/cockatrice/src/userlist.cpp @@ -125,19 +125,19 @@ void BanDialog::okClicked() if (nameBanCheckBox->isChecked()) if (nameBanEdit->text() == ""){ - QMessageBox::critical(this, tr("Error"), tr("You must have at value in the name ban when selecting the name ban checkbox.")); + QMessageBox::critical(this, tr("Error"), tr("You must have a value in the name ban when selecting the name ban checkbox.")); return; } if (ipBanCheckBox->isChecked()) if (ipBanEdit->text() == ""){ - QMessageBox::critical(this, tr("Error"), tr("You must have at value in the ip ban when selecting the ip ban checkbox.")); + QMessageBox::critical(this, tr("Error"), tr("You must have a value in the ip ban when selecting the ip ban checkbox.")); return; } if (idBanCheckBox->isChecked()) if (idBanCheckBox->text() == ""){ - QMessageBox::critical(this, tr("Error"), tr("You must have at value in the clientid ban when selecting the clientid ban checkbox.")); + QMessageBox::critical(this, tr("Error"), tr("You must have a value in the clientid ban when selecting the clientid ban checkbox.")); return; } diff --git a/cockatrice/src/window_main.cpp b/cockatrice/src/window_main.cpp index 58c4bcfc..59e5e142 100644 --- a/cockatrice/src/window_main.cpp +++ b/cockatrice/src/window_main.cpp @@ -813,5 +813,5 @@ void MainWindow::refreshShortcuts() void MainWindow::notifyUserAboutUpdate() { - QMessageBox::information(this, tr("Information"), tr("Your client appears to be missing features that the server supports.\nThis usually means that your client version is out of date,pleae check to see if there is a new client available for download.")); + QMessageBox::information(this, tr("Information"), tr("Your client appears to be missing features that the server supports.\nThis usually means that your client version is out of date, please check to see if there is a new client available for download.")); }