german translation update
PS:
* I also merged in the typo fixes by nemo and hasufell
* Sorry it took so looooong for this to actually get committed
-sheepluva
#include <QApplication>
#include "mainform.h"
int main(int argc, char *argv[])
{
QApplication app(argc, argv);
MyWindow *mainWin = new MyWindow;
mainWin->show();
return app.exec();
}