Changes
                            
    Title
    unchanged
    Setting and maintaining the language in Application (i18n)
    Category
    unchanged
    Tutorials
    Yii version
    unchanged
    
    Tags
    changed
    i18n, translation
    Content
    changed
    [...]
{
        $currentLang = Yii::app()->language;
        $this->render('langBox', array('currentLang' => $currentLang));
    }
}
?>
 
```
**components/views/langBox.php**
```php
<?php
 
<?= CHtml::form()
; ?>
    <div id="langdrop">
        <?
=php echo CHtml::dropDownList('_lang', $currentLang, array(
            'en_us' => 'English', 'is_is' => 'Icelandic'), array('submit' => ''))
; ?>
    </div>
<
/form>
 
 
```
 
?php echo CHtml::endForm(); ?>
 
```
 
 
See also
 
------------------
 
- [Here](http://www.yiiframework.com/wiki/208/how-to-use-an-application-behavior-to-maintain-runtime-configuration/ "How to use an application behavior to maintain runtime configuration") is another approach using behaviors.
 
 
Links
 
-----
 
- [Chinese version](http://www.itkuaixun.com/bbs/thread-203-1-1.html "Chinese version")