加载中...

Yii-架构- 语言包的使用


  1. 语言包目录
    1. /protected/messages/zh_cn/

  2. 语言包文件格式
    1. <?php
    2. /**
    3. * btt.php
    4. */
    5. return array (
    6. 'pre_pager' => '前一页面'
    7. 'Home' => '首页',
    8. 'The button type "{type}" is not supported.' => '按钮类型 "{type}" 不支持。',
    9. 'Are you sure you want to delete this item?' => '确定要删除这条数据吗?',
    10. 'Delete' => '删除',
    11. );

  3. 使用语言包
    1. print_r(Yii::t('btt','pre_pager'));


还没有评论.