Go to the documentation of this file.00001
00010 #include "ScipPlayerWindow.h"
00011 #include <QApplication>
00012 #include <QTranslator>
00013 #include <QLocale>
00014
00015
00017 int main(int argc, char *argv[])
00018 {
00019 QApplication app(argc, argv);
00020
00021
00022 QString locale = QLocale::system().name();
00023 QTranslator translator;
00024 translator.load("ScipPlayer_" + locale);
00025 app.installTranslator(&translator);
00026
00027 ScipPlayerWindow window;
00028 window.show();
00029 return app.exec();
00030 }