From 7db7b7fb06c5604eae1cc66b835c6863230644b3 Mon Sep 17 00:00:00 2001 From: tooomm Date: Thu, 21 May 2015 15:17:52 +0200 Subject: [PATCH] expanded wording of name conflicts for tokens /2 - removed space - fixed wording --- cockatrice/src/dlg_edit_tokens.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cockatrice/src/dlg_edit_tokens.cpp b/cockatrice/src/dlg_edit_tokens.cpp index aeee97b8..4f2b6372 100644 --- a/cockatrice/src/dlg_edit_tokens.cpp +++ b/cockatrice/src/dlg_edit_tokens.cpp @@ -136,7 +136,7 @@ void DlgEditTokens::actAddToken() do { name = QInputDialog::getText(this, tr("Add token"), tr("Please enter the name of the token:")); if (!name.isEmpty() && cardDatabaseModel->getDatabase()->getCard(name, false)) { - QMessageBox::critical(this, tr("Error"), tr("The chosen name conflicts with an existing card or token.\n Make sure to enable the 'token set' in 'Edit sets...' dialog to display them correctly.")); + QMessageBox::critical(this, tr("Error"), tr("The chosen name conflicts with an existing card or token.\nMake sure to enable the 'token set' in the 'Edit sets...' dialog to display them correctly.")); askAgain = true; } else askAgain = false;