]> git.mjollnir.org Git - moodle.git/commitdiff
Fixed help strings
authormoodler <moodler>
Tue, 10 Jun 2003 15:36:13 +0000 (15:36 +0000)
committermoodler <moodler>
Tue, 10 Jun 2003 15:36:13 +0000 (15:36 +0000)
course/topics.php
course/weeks.php

index a9c9994cb4538fe7a2affe2ed62cb132c88285d8..fff056cd562de59f286dfc97b2c4293236aa4830 100644 (file)
@@ -39,6 +39,8 @@
         $strtopicshow = get_string("topicshow", "", $strstudents);
         $strmarkthistopic = get_string("markthistopic");
         $strmarkedthistopic = get_string("markedthistopic");
+        $strmoveup = get_string("moveup");
+        $strmovedown = get_string("movedown");
     }
 
 
             }
 
             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 />";
             }
 
             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 />";
             }
 
index ba60deb6e5fe440d9f57d5e638eb597b71cce6bb..741fd9076a38d27e16905f1e6e408c5ea90a5661 100644 (file)
@@ -27,6 +27,8 @@
         $strstudents = moodle_strtolower($course->students);
         $strweekhide = get_string("weekhide", "", $strstudents);
         $strweekshow = get_string("weekshow", "", $strstudents);
+        $strmoveup = get_string("moveup");
+        $strmovedown = get_string("movedown");
     }
 
 
             }
 
             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 />";
             }
 
             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 />";
             }