diff --git a/lib/adminlib.php b/lib/adminlib.php index 3aff810d88ee3..e13cf50548c52 100644 --- a/lib/adminlib.php +++ b/lib/adminlib.php @@ -4342,7 +4342,7 @@ public function load_choices() { if ($plugins = get_plugin_list('gradeexport')) { foreach($plugins as $plugin => $unused) { - $this->choices[$plugin] = get_string('modulename', 'gradeexport_'.$plugin); + $this->choices[$plugin] = get_string('pluginname', 'gradeexport_'.$plugin); } } return true; @@ -4514,7 +4514,7 @@ public function load_choices() { require_once($plugindir.'/lib.php'); $functionname = 'grade_report_'.$plugin.'_profilereport'; if (function_exists($functionname)) { - $this->choices[$plugin] = get_string('modulename', 'gradereport_'.$plugin); + $this->choices[$plugin] = get_string('pluginname', 'gradereport_'.$plugin); } } }