Change Home in breadcrumbs

How do I change the Home word in the breadcrumbs at the top of each page?

By setting the homeLink - http://www.yiiframework.com/doc/api/1.1/CBreadcrumbs#homeLink-detail

Ok, I tried:


<?php $this->widget('zii.widgets.CBreadcrumbs', array(

	'links' => $this->breadcrumbs,

	'homeLink' => CHtml::link('HOME - My Way', Yii::app()->homeUrl),)); ?><!-- breadcrumbs -->



But nothing is showing up. Can by any chance this be set in: public $breadcrumbs=array(); ?

My bad, i forgot to add in links, all is well, thank you!