]> git.mjollnir.org Git - moodle.git/commitdiff
Fix language strings (records -> Entries)
authormoodler <moodler>
Tue, 11 Apr 2006 12:37:29 +0000 (12:37 +0000)
committermoodler <moodler>
Tue, 11 Apr 2006 12:37:29 +0000 (12:37 +0000)
mod/data/index.php

index a418cc79c4c187f70c7aedfca369683355124969..6ffef75cf6d095c6c404ce061bd76d13dc9f9270 100755 (executable)
     $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');
     }