Fix word "Feedback" not being translated in error message
This does not violate the string freeze, the string is already present in PageMain.
#include "mainwindow.h"
#include <QApplication>
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
MainWindow w;
w.show();
return a.exec();
}