You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
623 B
27 lines
623 B
/****************************************************************
|
|
**
|
|
** Translation tutorial 2
|
|
**
|
|
****************************************************************/
|
|
|
|
#include "mainwindow.h"
|
|
|
|
#include <ntqapplication.h>
|
|
#include <ntqstring.h>
|
|
#include <ntqtextcodec.h>
|
|
#include <ntqtranslator.h>
|
|
|
|
int main( int argc, char **argv )
|
|
{
|
|
TQApplication app( argc, argv );
|
|
|
|
TQTranslator translator( 0 );
|
|
translator.load( TQString("tt2_") + TQTextCodec::locale(), "." );
|
|
app.installTranslator( &translator );
|
|
|
|
MainWindow *mw = new MainWindow;
|
|
app.setMainWidget( mw );
|
|
mw->show();
|
|
return app.exec();
|
|
}
|