I'm trying the change the breadcrumb in drupal to show in danish language through the template.php in my theme but i doesn't change it on the site. I've flushed the cache.
This is what i've put in the template.php
<?php
function modeindeks_breadcrumb($variables) {
$breadcrumb = $variables['breadcrumb'];
if (!empty($breadcrumb)) {
// Provide a navigational heading to give context for breadcrumb links to
// screen-reader users. Make the heading invisible with .element-invisible.
$output = '<h2 class="polle">' . t('Du er her') . '</h2>';
$output .= '<div class="breadcrumb">' . implode(' › ', $breadcrumb) . '</div>';
return $output;
}
}
?>
The link to the page www.modeindeks.com