SVN commit 972403 by coates: Fixed an inaccurate statusbar message. "This game is lost. No moves remain." => "Solver: This game is lost." We're currently in string freeze, but after discussing with Pino, it was decided to break the freeze. The current text was commited by me, do to an incorrect assumption about the meaning of the message. Sorry, folks. CCMAIL: kde-i18n-doc  M  +1 -1      pwidget.cpp --- trunk/KDE/kdegames/kpat/pwidget.cpp #972402:972403 @@ -662,7 +662,7 @@  void pWidget::slotGameLost()  { -    solverStatus->setText(i18n("This game is lost. No moves remain.")); +    solverStatus->setText(i18n("Solver: This game is lost."));  }  void pWidget::slotUpdateMoves(int moves)