diff --git a/cvideowidget.cpp b/cvideowidget.cpp
index b21c40b..9bcb3d0 100644
--- a/cvideowidget.cpp
+++ b/cvideowidget.cpp
@@ -25,6 +25,7 @@ cVideoWidget::~cVideoWidget()
void cVideoWidget::initUI()
{
ui->setupUi(this);
+ ui->m_lpInformationTab->setCurrentIndex(0);
m_lpVideoModel = new QStandardItemModel(0, 1);
QStringList headerLabels = QStringList() << tr("Video");
diff --git a/cvideowidget.ui b/cvideowidget.ui
index 981c4a4..e45ec0e 100644
--- a/cvideowidget.ui
+++ b/cvideowidget.ui
@@ -6,8 +6,8 @@
0
0
- 635
- 505
+ 1072
+ 734
@@ -63,74 +63,121 @@
0
0
- 354
- 485
+ 791
+ 714
-
-
-
- Fanart
-
-
-
-
-
-
-
-
+
+
-
+
+
+ 0
+
+
+
+ Basic
+
-
-
-
-
- -
-
-
- Poster
-
-
-
-
-
-
-
-
+
+
+ Extended
+
-
-
-
-
- -
-
-
- Thumb
-
-
-
-
-
-
-
-
+
+
+ Crew
+
-
-
-
-
- -
-
-
- Banner
-
-
-
-
-
-
-
-
+
+
+ Stream
+
-
-
-
+
+
+ -
+
+
-
+
+
+
+ 500
+ 0
+
+
+
+
+ 0
+ 0
+
+
+
+ Fanart
+
+
+
-
+
+
+
+
+
+
+
+
+
+ -
+
+
+ Poster
+
+
+
-
+
+
+
+
+
+
+
+
+
+ -
+
+
+ Thumb
+
+
+
-
+
+
+
+
+
+
+
+
+
+ -
+
+
+ Banner
+
+
+
-
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/main.cpp b/main.cpp
index 02abf7a..f46758a 100644
--- a/main.cpp
+++ b/main.cpp
@@ -1,10 +1,19 @@
#include "cmainwindow.h"
#include
+#include
+
int main(int argc, char *argv[])
{
- QApplication a(argc, argv);
- cMainWindow w;
+ QTranslator translator;
+
+ translator.load("qtKodiDB_de");
+
+ QApplication a(argc, argv);
+ a.installTranslator(&translator);
+
+ cMainWindow w;
+
w.showMaximized();
//w.show();
//w.resize(100, 100);
diff --git a/qtKodiDB.pro b/qtKodiDB.pro
index 694da44..28af8dc 100644
--- a/qtKodiDB.pro
+++ b/qtKodiDB.pro
@@ -11,6 +11,7 @@ greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
TARGET = qtKodiDB
TEMPLATE = app
+TRANSLATIONS = qtKodiDB_de.ts
SOURCES += main.cpp\
cmainwindow.cpp \