1234567891011121314151617181920212223242526272829303132 |
- <?php
- /**
- * 模块语言包-成绩
- * @author Devil
- * @blog http://gong.gg/
- * @version 0.0.1
- * @datetime 2016-12-01T21:51:08+0800
- */
- return array(
- // 添加/编辑
- 'fraction_add_name' => '成绩添加',
- 'fraction_edit_name' => '成绩编辑',
- 'fraction_score_id_text' => '期号',
- 'fraction_score_id_format' => '请选择成绩期号',
- 'fraction_score_id_error' => '成绩期号有误',
- 'fraction_subject_text' => '科目',
- 'fraction_subject_format' => '请选择科目',
- 'fraction_subject_error' => '科目分类有误',
- 'fraction_score_text' => '成绩',
- 'fraction_score_format' => '分数格式错误,纯数字,不能超过3位',
- 'fraction_student_error' => '该学生不存在',
- 'fraction_username_text' => '学生姓名',
- 'fraction_student_username_format' => '学生真实姓名',
- 'fraction_student_id_error' => '学生信息有误',
- 'fraction_score_level_text' => '等级',
- 'fraction_class_id_text' => '班级',
- 'fraction_comment_text' => '教师点评',
- 'fraction_comment_format' => '教师点评,不能超过255个字符',
- 'fraction_excel_import_tips' => '1、录入时间选填项,留空则使用当前导入时间。<br />2、所有数据字段以文本格式上传,如[ 成绩分数 ]',
- );
- ?>
|