Yii-架构- 语言包的使用

来源:互联网 发布:mysql打开数据库 编辑:程序博客网 时间:2024/05/10 07:52
  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'));