From: tjhunt Date: Thu, 11 Sep 2008 08:49:42 +0000 (+0000) Subject: MDL-14129 missing language string. X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;h=e6b6b2bb73c96cae2468d0bed871fe029af5c5c4;p=moodle.git MDL-14129 missing language string. --- diff --git a/admin/modules.php b/admin/modules.php index b6afa1e4ce..1d3c566df5 100644 --- a/admin/modules.php +++ b/admin/modules.php @@ -87,7 +87,7 @@ } else { // Delete everything!! if ($delete == "forum") { - print_error("cannotdeleteforummudule", 'forum'); + print_error("cannotdeleteforummodule", 'forum'); } if (!$module = $DB->get_record("modules", array("name"=>$delete))) { diff --git a/lang/en_utf8/forum.php b/lang/en_utf8/forum.php index 8e9808f4ef..b430de8d59 100644 --- a/lang/en_utf8/forum.php +++ b/lang/en_utf8/forum.php @@ -32,6 +32,7 @@ $string['bynameondate'] = 'by $a->name - $a->date'; $string['cannotviewpostyet'] = 'You cannot read other students questions in this discussion yet because you haven\'t posted'; $string['cannotadddiscussion'] = 'Adding discussions to this forum requires group membership.'; $string['cannotadddiscussionall'] = 'You do not have permission to add a new discussion topic for all participants.'; +$string['cannotdeleteforummodule'] = 'You can not delete the forum module.'; $string['cannotsubscribe'] = 'Sorry, but you must be a group member to subscribe.'; $string['cannotunsubscribe'] = 'Could not unsubscribe you from that forum'; $string['cannotaddsubscriber'] = 'Could not add subscriber with id $a to this forum!';