Fixed help strings

This commit is contained in:
moodler 2003-06-10 15:36:13 +00:00
parent 12905134ab
commit d7b97e437f
2 changed files with 8 additions and 4 deletions

View file

@ -39,6 +39,8 @@
$strtopicshow = get_string("topicshow", "", $strstudents); $strtopicshow = get_string("topicshow", "", $strstudents);
$strmarkthistopic = get_string("markthistopic"); $strmarkthistopic = get_string("markthistopic");
$strmarkedthistopic = get_string("markedthistopic"); $strmarkedthistopic = get_string("markedthistopic");
$strmoveup = get_string("moveup");
$strmovedown = get_string("movedown");
} }
@ -224,12 +226,12 @@
} }
if ($section > 1) { // Add a arrow to move section up if ($section > 1) { // Add a arrow to move section up
echo "<a href=\"view.php?id=$course->id&section=$section&move=-1\" title=\"$strtopicup\">". echo "<a href=\"view.php?id=$course->id&section=$section&move=-1\" title=\"$strmoveup\">".
"<img src=\"$pixpath/i/up.gif\" vspace=3 height=11 width=11 border=0></a><br />"; "<img src=\"$pixpath/i/up.gif\" vspace=3 height=11 width=11 border=0></a><br />";
} }
if ($section < $course->numsections) { // Add a arrow to move section down if ($section < $course->numsections) { // Add a arrow to move section down
echo "<a href=\"view.php?id=$course->id&section=$section&move=1\" title=\"$strtopicdown\">". echo "<a href=\"view.php?id=$course->id&section=$section&move=1\" title=\"$strmovedown\">".
"<img src=\"$pixpath/i/down.gif\" vspace=3 height=11 width=11 border=0></a><br />"; "<img src=\"$pixpath/i/down.gif\" vspace=3 height=11 width=11 border=0></a><br />";
} }

View file

@ -27,6 +27,8 @@
$strstudents = moodle_strtolower($course->students); $strstudents = moodle_strtolower($course->students);
$strweekhide = get_string("weekhide", "", $strstudents); $strweekhide = get_string("weekhide", "", $strstudents);
$strweekshow = get_string("weekshow", "", $strstudents); $strweekshow = get_string("weekshow", "", $strstudents);
$strmoveup = get_string("moveup");
$strmovedown = get_string("movedown");
} }
@ -217,12 +219,12 @@
} }
if ($section > 1) { // Add a arrow to move section up if ($section > 1) { // Add a arrow to move section up
echo "<a href=\"view.php?id=$course->id&section=$section&move=-1\" title=\"$strtopicup\">". echo "<a href=\"view.php?id=$course->id&section=$section&move=-1\" title=\"$strmoveup\">".
"<img src=\"$pixpath/t/up.gif\" vspace=3 height=11 width=11 border=0></a><br />"; "<img src=\"$pixpath/t/up.gif\" vspace=3 height=11 width=11 border=0></a><br />";
} }
if ($section < $course->numsections) { // Add a arrow to move section down if ($section < $course->numsections) { // Add a arrow to move section down
echo "<a href=\"view.php?id=$course->id&section=$section&move=1\" title=\"$strtopicdown\">". echo "<a href=\"view.php?id=$course->id&section=$section&move=1\" title=\"$strmovedown\">".
"<img src=\"$pixpath/t/down.gif\" vspace=3 height=11 width=11 border=0></a><br />"; "<img src=\"$pixpath/t/down.gif\" vspace=3 height=11 width=11 border=0></a><br />";
} }