语言无法改变杂货店



我正在使用杂货店CRUD使用Codeigniter,我用GC创建了一个表格,但是所需字段中的文本是英语的,我希望它用西班牙语。我阅读了不同的文档,但我拖了它,但行不通。
这是我的控制器

$this->crud->set_table('test'); 
$this->crud->set_language('spanish');    
$this->crud->set_subject('Test');
$this->crud->columns('id_test','test'); 
$this->crud->required_fields('test');
$output = $this->crud->render();
$data['contents'] = 'contents';
$data = array_merge($data, (array) $output); 
$this->load->view('template', $data);

在视图中,如这样

所需字段中的文字

预先感谢。

一个月后,我解决了问题。我在 system/language/中添加了一个文件夹西班牙语 form_validation_lang.php 。尽管我更改application/conf/conf.php 西班牙语

的默认语言

相关内容

  • 没有找到相关文章

最新更新