diff --git a/classes/simulationsInstaller.php b/classes/simulationsInstaller.php index 3510505..15b1dcd 100755 --- a/classes/simulationsInstaller.php +++ b/classes/simulationsInstaller.php @@ -90,7 +90,11 @@ class_exists($this->recipe['matcher']['name']) ); } else { $this->feedback['needed'][basename($itemparamsfile)]['error'][] = - get_string('simulationnoinstallerfilefound', 'tool_wbinstaller'); + get_string( + 'simulationnoinstallerfilefound', + 'tool_wbinstaller', + $this->recipe['matcher']['name'] + ); } } } diff --git a/lang/de/tool_wbinstaller.php b/lang/de/tool_wbinstaller.php index 7b4714a..7f4d84e 100755 --- a/lang/de/tool_wbinstaller.php +++ b/lang/de/tool_wbinstaller.php @@ -73,7 +73,7 @@ $string['questionsuccesinstall'] = 'Die Fragen wurden erfolgreich hochgeladen.'; $string['simulationfilefound'] = 'Die Simulationsdatei wurde gefunden.'; $string['simulationinstallerfilefound'] = 'Simulations-Installer {$a} gefunden.'; -$string['simulationnoinstallerfilefound'] = 'Es wurde kein Installer gefunden. Die Datei kann nicht installiert werden!'; +$string['simulationnoinstallerfilefound'] = 'Der Installer {$a} wurde nicht gefunden. Falls der Installer in diesem Rezept ist, muss das Rezept ein zweites Mal ausgeführt werden damit die Daten importiert werden.'; $string['simulationinstallersuccess'] = 'Der angegebene Installer {$a} wurde gefunden und verwendet.'; $string['installervalidbase'] = 'Der Base64-String ist nicht gültig.'; $string['installerdecodebase'] = 'Fehler beim Dekodieren des Base64-Inhalts oder der Inhalt ist leer.'; diff --git a/lang/en/tool_wbinstaller.php b/lang/en/tool_wbinstaller.php index 41cb98d..34eefa4 100755 --- a/lang/en/tool_wbinstaller.php +++ b/lang/en/tool_wbinstaller.php @@ -73,7 +73,7 @@ $string['questionsuccesinstall'] = 'Successfully uploaded the questions.'; $string['simulationfilefound'] = 'Found the simulation file.'; $string['simulationinstallerfilefound'] = 'Found simulation installer {$a}.'; -$string['simulationnoinstallerfilefound'] = 'No installer was found. The file cannot be installed!'; +$string['simulationnoinstallerfilefound'] = 'The installer {$a} was not found. If the installer is inside this recipe you need to install the recipe again as the installe is available the second time!'; $string['simulationinstallersuccess'] = 'The given installer {$a} was found and used'; $string['installervalidbase'] = 'The base64 string is not valid.'; $string['installerdecodebase'] = 'Failed to decode base64 content or the content is empty.';