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 executable Wähle Exe @@ -55,12 +55,34 @@ Benutze Launcher - + Choose the game directory Wä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 command Wähle Befehl @@ -558,18 +580,13 @@ Game LIBRARY - BIBLIOTHEK + BIBLIOTHEK No 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; }