Index: moodle/course/lib.php
--- moodle/course/lib.php Base (1.538.2.80)
+++ moodle/course/lib.php Locally Modified (Based On 1.538.2.80)
@@ -1895,21 +1895,20 @@
     } else {
 
         echo '<tr>';
-
+        echo '<td class="category">';
         if ($depth) {
             $indent = $depth*20;
-            echo '<td class="category indentation" valign="top">';
-            print_spacer(10, $indent);
-            echo '</td>';
+            print_spacer(10, $indent, false);          
         }
 
-        echo '<td valign="top" class="category name">';
         echo '<a '.$catlinkcss.' href="'.$CFG->wwwroot.'/course/category.php?id='.$category->id.'">'. format_string($category->name).'</a>';
-        echo '</td>';
-        echo '<td valign="top" class="category number">';
         if (count($courses)) {
-           echo count($courses);
+            $strcourse = get_string('course');
+            if(count($courses) > 1) {
+                $strcourse = get_string('courses');
         }
+            echo ' - '. count($courses). ' '. $strcourse;
+        }
         echo '</td></tr>';
     }
     echo '</table>';
