mirror of
https://github.com/moodle/moodle.git
synced 2025-08-05 00:46:50 +02:00
Fixed help strings
This commit is contained in:
parent
12905134ab
commit
d7b97e437f
2 changed files with 8 additions and 4 deletions
|
@ -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§ion=$section&move=-1\" title=\"$strtopicup\">".
|
echo "<a href=\"view.php?id=$course->id§ion=$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§ion=$section&move=1\" title=\"$strtopicdown\">".
|
echo "<a href=\"view.php?id=$course->id§ion=$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 />";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -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§ion=$section&move=-1\" title=\"$strtopicup\">".
|
echo "<a href=\"view.php?id=$course->id§ion=$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§ion=$section&move=1\" title=\"$strtopicdown\">".
|
echo "<a href=\"view.php?id=$course->id§ion=$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 />";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue