diff --git a/FusionLang_de.qm b/FusionLang_de.qm
index 9f57cdc..538e6a2 100644
Binary files a/FusionLang_de.qm and b/FusionLang_de.qm differ
diff --git a/FusionLang_de.ts b/FusionLang_de.ts
index 171037a..2600c4f 100644
--- a/FusionLang_de.ts
+++ b/FusionLang_de.ts
@@ -25,7 +25,7 @@
-
+ Choose executableWähle Exe
@@ -55,12 +55,34 @@
Benutze Launcher
-
+ Choose the game directoryWähle Spiel-Verzeichnis
-
+
+
+
+ Please fill all fields!
+ Bitte alle Felder ausfüllen!
+
+
+
+ You have to fill the name-field!
+ Ein Name muss angegeben werden!
+
+
+
+ You have to set an executable!
+ Eine ausführbare Datei muss angegeben werden!
+
+
+
+ You have to set a path!
+ Ein Pfad muss angegeben werden!
+
+
+ Choose commandWähle Befehl
@@ -558,18 +580,13 @@ Game
LIBRARY
- BIBLIOTHEK
+ BIBLIOTHEKNo games in List.Keine Spiele gefunden.
-
-
- lbl_lastPlayed
-
- COMMUNITY
diff --git a/addgamedialog.cpp b/addgamedialog.cpp
index d305247..4fceeee 100644
--- a/addgamedialog.cpp
+++ b/addgamedialog.cpp
@@ -59,17 +59,17 @@ void AddGameDialog::on_buttonBox_accepted()
game.setName(ui->gameNameEdit->text());
if(game.getName().length() <= 0) {
- QMessageBox::warning(this, "Please fill all fields!", "You have to fill the name-field!", QMessageBox::Ok);
+ QMessageBox::warning(this, tr("Please fill all fields!"), tr("You have to fill the name-field!"), QMessageBox::Ok);
return;
}
if(game.getExe().length() <= 0) {
- QMessageBox::warning(this, "Please fill all fields!", "You have to set an executable!", QMessageBox::Ok);
+ QMessageBox::warning(this, tr("Please fill all fields!"), tr("You have to set an executable!"), QMessageBox::Ok);
return;
}
if(game.getPath().length() <= 0) {
- QMessageBox::warning(this, "Please fill all fields!", "You have to set a path!", QMessageBox::Ok);
+ QMessageBox::warning(this, tr("Please fill all fields!"), tr("You have to set a path!"), QMessageBox::Ok);
return;
}