From 702424ae72964dd15dd23681a9549e712b0093b0 Mon Sep 17 00:00:00 2001 From: moodler Date: Tue, 11 Apr 2006 12:37:29 +0000 Subject: [PATCH] Fix language strings (records -> Entries) --- mod/data/index.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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'); } -- 2.39.5