rename from update to check (#2505)

This commit is contained in:
Zach H 2017-03-18 18:46:19 -04:00 committed by GitHub
parent 2048aac387
commit 127a91147c
3 changed files with 7 additions and 7 deletions

View file

@ -332,7 +332,7 @@ void MainWindow::loginError(Response::ResponseCode r, QString reasonStr, quint32
formattedMissingFeatures = "Missing Features: ";
for (int i = 0; i < missingFeatures.size(); ++i)
formattedMissingFeatures.append(QString("\n %1").arg(QChar(0x2022)) + " " + missingFeatures.value(i) );
formattedMissingFeatures.append("\nTo update your client, go to Help -> Update Cockatrice.");
formattedMissingFeatures.append("\nTo update your client, go to Help -> Check for Updates.");
QMessageBox msgBox;
msgBox.setIcon(QMessageBox::Critical);
@ -545,7 +545,7 @@ void MainWindow::retranslateUi()
aEditTokens->setText(tr("Edit &tokens..."));
aAbout->setText(tr("&About Cockatrice"));
aUpdate->setText(tr("&Update Cockatrice"));
aUpdate->setText(tr("Check for Updates"));
aViewLog->setText(tr("View &debug log"));
helpMenu->setTitle(tr("&Help"));
aCheckCardUpdates->setText(tr("Check for card updates..."));
@ -977,7 +977,7 @@ void MainWindow::refreshShortcuts()
void MainWindow::notifyUserAboutUpdate()
{
QMessageBox::information(this, tr("Information"), tr("This server supports additional features that your client doesn't have.\nThis is most likely not a problem, but this message might mean there is a new version of Cockatrice available or this server is running a custom or pre-release version.\n\nTo update your client, go to Help -> Update Cockatrice."));
QMessageBox::information(this, tr("Information"), tr("This server supports additional features that your client doesn't have.\nThis is most likely not a problem, but this message might mean there is a new version of Cockatrice available or this server is running a custom or pre-release version.\n\nTo update your client, go to Help -> Check for Updates."));
}
void MainWindow::actOpenCustomFolder()