Update of /cvsroot/wpdev/wolfpack/win
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv20437/win
Modified Files:
console_win.cpp
Log Message:
- Human_Stablemaster inherits from Human_vendors now
- Added wolfpack.tr to public Python API
- Some additional user visible strings from the core are tr()'ed
Index: console_win.cpp
===================================================================
RCS file: /cvsroot/wpdev/wolfpack/win/console_win.cpp,v
retrieving revision 1.30
retrieving revision 1.31
diff -C2 -d -r1.30 -r1.31
*** console_win.cpp 25 Sep 2004 21:15:47 -0000 1.30
--- console_win.cpp 25 Sep 2004 22:57:11 -0000 1.31
***************
*** 334,338 ****
Network::instance()->unlock();
! Console::instance()->send( QString( "Total Users Online: %1\n" ).arg( i ) );
break;
--- 334,338 ----
Network::instance()->unlock();
! Console::instance()->send( tr( "Total Users Online: %1\n" ).arg( i ) );
break;
***************
*** 643,647 ****
if ( returnValue_ != 0 )
{
! Console::instance()->send( ("\nThe server has been shut down. You can close this window now.\n") );
canClose = true;
}
--- 643,647 ----
if ( returnValue_ != 0 )
{
! Console::instance()->send( tr("\nThe server has been shut down. You can close this window now.\n") );
canClose = true;
}
|