--- template.php	2009-03-12 21:36:12.000000000 +0000
+++ templateNew.php	2009-03-24 11:26:20.421579300 +0000

@@ -323,7 +323,7 @@ function rootcandy_breadcrumb($breadcrum
      * the other direction once it detects a right-to-left page. So no need to
      * reverse the array, and no need to use reversed-direction arrows.
      */
-    return '<div class="breadcrumb">'. implode(' » ', $breadcrumb) .'</div>';
+    return '<div class="breadcrumb">'. str_replace('Administer', t('Dashboard'), implode(' » ', $breadcrumb)) .'</div>';
   }
 }
 
@@ -381,6 +381,14 @@ function _rootcandy_links($links, $attri
   return $output;
 }
 
+function rootcandy_menu_item_link($link) {
+    if($link['href'] == 'admin'){
+        $link['title'] = t('Dashboard');
+    }
+
+    return theme_menu_item_link($link);
+}
+
 function _rootcandy_countmatches($arrayone, $arraytwo) {
   $matches = 0;
   foreach($arraytwo as $i => $part) {
