translation update for the release
(transplanted from 21f168609f53ffcd27db8c9d86399a2c9fc4894b)
#include <QApplication>
#include "mainform.h"
int main(int argc, char *argv[])
{
QApplication app(argc, argv);
MyWindow *mainWin = new MyWindow;
mainWin->show();
return app.exec();
}