diff --git a/cockatrice/src/messagelogwidget.cpp b/cockatrice/src/messagelogwidget.cpp index ef1588ec..b910db3a 100644 --- a/cockatrice/src/messagelogwidget.cpp +++ b/cockatrice/src/messagelogwidget.cpp @@ -217,7 +217,7 @@ QPair MessageLogWidget::getFromStr(CardZone *zone, QString car QString startName = zone->getName(); if (startName == "table") - fromStr = tr(" from table"); + fromStr = tr(" from battlefield"); else if (startName == "grave") fromStr = tr(" from graveyard"); else if (startName == "rfg") @@ -303,11 +303,11 @@ void MessageLogWidget::doMoveCard(LogMoveCard &attributes) else finalStr = tr("%1 puts %2 into play%3."); } else if (targetName == "grave") - finalStr = tr("%1 puts %2%3 into graveyard."); + finalStr = isFemale(attributes.targetZone->getPlayer()) ? tr("%1 puts %2%3 into her graveyard.") : tr("%1 puts %2%3 into his graveyard."); else if (targetName == "rfg") finalStr = tr("%1 exiles %2%3."); else if (targetName == "hand") - finalStr = tr("%1 moves %2%3 to hand."); + finalStr = isFemale(attributes.targetZone->getPlayer()) ? tr("%1 moves %2%3 to her hand.") : tr("%1 moves %2%3 to his hand."); else if (targetName == "deck") { if (attributes.newX == -1) finalStr = isFemale(attributes.targetZone->getPlayer()) ? tr("%1 puts %2%3 into her library.") : tr("%1 puts %2%3 into his library.");