Пример #1
0
 /**
  * This function internationalize the labels using Yii::t()
  * @see CActiveRecord::getAttributeLabel()
  */
 public function getAttributeLabel($attribute)
 {
     $baseLabel = parent::getAttributeLabel($attribute);
     return Yii::t('waterrequest', $baseLabel);
 }
Пример #2
0
 /**
  * @param string $attribute
  * @return string
  */
 public function getAttributeLabel($attribute)
 {
     $baseLabel = parent::getAttributeLabel($attribute);
     return Yii::t('CheckoutForm', $baseLabel);
 }