2015-06-27 15:08:58 +00:00
|
|
|
<?php
|
|
|
|
/* @var $this TranslationController */
|
|
|
|
/* @var $data Translation */
|
|
|
|
?>
|
|
|
|
|
|
|
|
<div class="view">
|
|
|
|
|
|
|
|
<b><?php echo CHtml::encode($data->getAttributeLabel('id')); ?>:</b>
|
|
|
|
<?php echo CHtml::link(CHtml::encode($data->id), array('view', 'id'=>$data->id)); ?>
|
|
|
|
<br />
|
|
|
|
|
|
|
|
<b><?php echo CHtml::encode($data->getAttributeLabel('name')); ?>:</b>
|
|
|
|
<?php echo CHtml::encode($data->name); ?>
|
|
|
|
<br />
|
|
|
|
|
|
|
|
<b><?php echo CHtml::encode($data->getAttributeLabel('textEn')); ?>:</b>
|
|
|
|
<?php echo CHtml::encode($data->textEn); ?>
|
|
|
|
<br />
|
|
|
|
|
|
|
|
<b><?php echo CHtml::encode($data->getAttributeLabel('textRu')); ?>:</b>
|
|
|
|
<?php echo CHtml::encode($data->textRu); ?>
|
|
|
|
<br />
|
|
|
|
|
|
|
|
<b><?php echo CHtml::encode($data->getAttributeLabel('textZh')); ?>:</b>
|
|
|
|
<?php echo CHtml::encode($data->textZh); ?>
|
|
|
|
<br />
|
|
|
|
|
2015-07-02 08:37:15 +00:00
|
|
|
<b><?php echo CHtml::encode($data->getAttributeLabel('textEnUp')); ?>:</b>
|
|
|
|
<?php echo CHtml::encode($data->textEnUp); ?>
|
|
|
|
<br />
|
|
|
|
|
|
|
|
<b><?php echo CHtml::encode($data->getAttributeLabel('textRuUp')); ?>:</b>
|
|
|
|
<?php echo CHtml::encode($data->textRuUp); ?>
|
|
|
|
<br />
|
|
|
|
|
|
|
|
<b><?php echo CHtml::encode($data->getAttributeLabel('textZhUp')); ?>:</b>
|
|
|
|
<?php echo CHtml::encode($data->textZhUp); ?>
|
|
|
|
<br />
|
2015-06-27 15:08:58 +00:00
|
|
|
|
|
|
|
</div>
|