-
Notifications
You must be signed in to change notification settings - Fork 118
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #171 from BeeR13/master
A few corrections
- Loading branch information
Showing
7 changed files
with
30 additions
and
31 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,7 @@ | ||
<p> The Usergroup <?php echo $model; ?> has been successfully created </p> | ||
<?php | ||
echo Yum::t('The Usergroup {groupname} has been successfully created', array('groupname' => $model)) | ||
?> | ||
|
||
<?php echo CHtml::Button(Yii::t('app', 'Back'), array('id' => $relation.'_done')); ?><?php echo CHtml::Button(Yii::t('app', 'Add another Usergroup'), array('id' => $relation.'_create')); | ||
<?php | ||
echo CHtml::Button(Yum::t('Back'), array('id' => $relation.'_done')); | ||
echo CHtml::Button(Yum::t('Add another Usergroup'), array('id' => $relation.'_create')); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,19 @@ | ||
<?php | ||
$this->breadcrumbs=array( | ||
'Usergroups'=>array('index'), | ||
$model->title=>array('view','id'=>$model->id), | ||
Yii::t('app', 'Update'), | ||
Yum::t('Usergroups')=>array('index'), | ||
$model->title=>array('view','id'=>$model->id), | ||
Yum::t('Update') | ||
); | ||
|
||
$this->menu=array( | ||
array('label'=>Yii::t('app', 'List') . ' Usergroup', 'url'=>array('index')), | ||
array('label'=>Yii::t('app', 'Create') . ' Usergroup', 'url'=>array('create')), | ||
array('label'=>Yii::t('app', 'View') . ' Usergroup', 'url'=>array('view', 'id'=>$model->id)), | ||
array('label'=>Yii::t('app', 'Manage') . ' Usergroup', 'url'=>array('admin')), | ||
array('label'=>Yum::t('List Usergroup'), 'url'=>array('index')), | ||
array('label'=>Yum::t('Create Usergroup'), 'url'=>array('create')), | ||
array('label'=>Yum::t('View Usergroup'), 'url'=>array('view', 'id'=>$model->id)), | ||
array('label'=>Yum::t('Manage Usergroup'), 'url'=>array('admin')), | ||
); | ||
?> | ||
|
||
<h1> <?php echo Yii::t('app', 'Update');?> Usergroup #<?php echo $model->id; ?> </h1> | ||
<h1> <?php echo Yum::t('Update Usergroup'); ?> #<?php echo $model->id; ?> </h1> | ||
<?php | ||
$this->renderPartial('_form', array( | ||
'model'=>$model)); | ||
?> |