diff --git a/dashboard-ui/scripts/addpluginpage.js b/dashboard-ui/scripts/addpluginpage.js index 55e9375f94..2feb2c6f66 100644 --- a/dashboard-ui/scripts/addpluginpage.js +++ b/dashboard-ui/scripts/addpluginpage.js @@ -81,7 +81,15 @@ } else { $("#btnInstallDiv", page).hide(); $("#pSelectVersion", page).hide(); - $("#nonServerMsg", page).html("This plugin must be installed from " + pkg.targetSystem).show(); + var msg = "This plugin must be installed from "; + switch (pkg.targetSystem) { + case "MBClassic": + msg += "the MBClassic Configurator"; + break; + default: + msg += pkg.targetSystem; + } + $("#nonServerMsg", page).html(msg).show(); } if (pkg.shortDescription) {