加载中...

Yii-架构- 语言包的使用


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

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

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


还没有评论.