diff -r e338ccbbe100 -r 22f541fbde32 QTfrontend/game.cpp --- a/QTfrontend/game.cpp Sun Jun 15 13:42:34 2014 +0200 +++ b/QTfrontend/game.cpp Mon Jun 16 00:24:26 2014 +0400 @@ -249,11 +249,12 @@ { int size = msg.size(); emit ErrorMessage( - QString("A Fatal ERROR occured! - The game engine had to stop.") - + "\n\n " + tr("We are very sorry for the inconvenience :(") - + "\n\n" + tr("If this keeps happening, please click the '%1' button in the main menu!") - .arg("Feedback") + "\n\n" - "Last two engine messages:\n" + QString().append(msg.mid(2)).left(size - 4)); + tr("A Fatal ERROR occured! - The game engine had to stop.\n\n" + "We are very sorry for the inconvenience :(\n\n" + "If this keeps happening, please click the '%1' button in the main menu!\n\n" + "Last two engine messages:\n%2") + .arg("Feedback") + .arg(QString::fromUtf8(msg.mid(2).left(size - 4)))); return; } case 'i':