--- loncom/interface/lonbulletin.pm 2016/02/26 21:44:39 1.68 +++ loncom/interface/lonbulletin.pm 2020/09/08 23:54:40 1.69 @@ -1,7 +1,7 @@ # The LearningOnline Network # Bulletin Board Handler # -# $Id: lonbulletin.pm,v 1.68 2016/02/26 21:44:39 raeburn Exp $ +# $Id: lonbulletin.pm,v 1.69 2020/09/08 23:54:40 raeburn Exp $ # # Copyright Michigan State University Board of Trustees # @@ -323,12 +323,14 @@ sub groupboard_breadcrumbs { if ($grouppagelink) { push(@{$brcrum}, {href=>$grouppagelink, - text=>"$ucgpterm: $description", - title=>"Go to group's home page"}, + text=>&mt('Group').": $description", + title=>&mt("Go to group's home page"), + no_mt=>1,}, ); } else { push(@{$brcrum}, - {text=>"$ucgpterm: $description",} + {text=>&mt('Group').": $description", + no_mt=>1,} ); } push(@{$brcrum}, @@ -337,7 +339,8 @@ sub groupboard_breadcrumbs { title=>"Display group discussion boards"}, {href=>"$boardurl", text=>"$boardtitle", - title=>"$boardtitle"}, + title=>"$boardtitle", + no_mt=>1}, ); return $brcrum; }