From: moodler Date: Tue, 11 Apr 2006 12:37:29 +0000 (+0000) Subject: Fix language strings (records -> Entries) X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;h=702424ae72964dd15dd23681a9549e712b0093b0;p=moodle.git Fix language strings (records -> Entries) --- diff --git a/mod/data/index.php b/mod/data/index.php index a418cc79c4..6ffef75cf6 100755 --- a/mod/data/index.php +++ b/mod/data/index.php @@ -51,17 +51,17 @@ $strweek = get_string('week'); $strtopic = get_string('topic'); $strdescription = get_string("description"); - $strnumrecords = get_string('numrecords', 'data'); + $strentries = get_string('entries', 'data'); $strnumnotapproved = get_string('numnotapproved', 'data'); if ($course->format == 'weeks') { - $table->head = array ($strweek, $strname, $strdescription, $strnumrecords, $strnumnotapproved); + $table->head = array ($strweek, $strname, $strdescription, $strentries, $strnumnotapproved); $table->align = array ('center', 'center', 'center', 'center', 'center'); } else if ($course->format == 'topics') { - $table->head = array ($strtopic, $strname, $strdescription, $strnumrecords, $strnumnotapproved); + $table->head = array ($strtopic, $strname, $strdescription, $strentries, $strnumnotapproved); $table->align = array ('center', 'center', 'center', 'center', 'center'); } else { - $table->head = array ($strname, $strdescription, $strnumrecords, $strnumnotapproved); + $table->head = array ($strname, $strdescription, $strentries, $strnumnotapproved); $table->align = array ('center', 'center', 'center', 'center'); }