Changed strings referencing a set to say sets/cards.

This commit is contained in:
Ira Aspen 2016-02-07 01:41:35 +00:00
parent b5363f47ab
commit 9d3c4f20a1
2 changed files with 6 additions and 6 deletions

View file

@ -10,12 +10,12 @@ DlgAddSet::DlgAddSet(QWidget *parent, bool success) : QDialog(parent) {
if (success) {
setWindowTitle(tr("Success"));
status->setText(QString("Set added to Cockatrice."));
restart->setText(QString("You must restart Cockatrice to use the new set."));
status->setText(QString("Sets/cards added to Cockatrice."));
restart->setText(QString("You must restart Cockatrice to use the new sets/cards."));
}
else {
setWindowTitle(tr("Failed"));
status->setText(QString("Set failed to import."));
status->setText(QString("Sets/cards failed to import."));
}
QDialogButtonBox *buttonBox = new QDialogButtonBox(this);