This is something we need to check in all translations. Occasionally the source phrase ends w/ a space. Need to make sure translations take this into account.
#include <QApplication>
#include "mainform.h"
int main(int argc, char *argv[])
{
QApplication app(argc, argv);
MyWindow *mainWin = new MyWindow;
mainWin->show();
return app.exec();
}