-
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.
Translate method change from Yii to Yum
- Loading branch information
BeeR
committed
Jan 13, 2014
1 parent
3abb4a9
commit bb2cf09
Showing
1 changed file
with
6 additions
and
2 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
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')); |