export default { title: '学期', subtitle: '学期管理', // 表格标题 table: { headers: { termName: '学期名称', studentName: '学生姓名', startDate: '开始日期', endDate: '结束日期', actions: '操作' }, // 数据表分页 pagination: { itemsPerPage: '每页项目数:', itemsPerPageAll: '全部', itemsPerPageText: '第 {start}-{end} 项,共 {total} 项', pageText: '第 {page} 页,共 {pages} 页', noDataText: '暂无数据', loadingText: '加载中...' } }, // 表单字段 form: { student: '学生', termName: '学期名称', startDate: '开始日期', endDate: '结束日期', termNamePlaceholder: '请输入学期名称', studentPlaceholder: '请选择学生' }, // 对话框标题 dialog: { add: '添加学期', edit: '编辑学期信息', delete: '确认删除' }, // 按钮文本 buttons: { addTerm: '添加学期' }, // 消息 messages: { createSuccess: '学期创建成功', updateSuccess: '学期信息更新成功', deleteSuccess: '学期 "{name}" 删除成功', createError: '创建失败,请重试', updateError: '保存失败,请重试', deleteError: '删除失败,请重试', loadError: '加载学期列表失败', unknownStudent: '未知学生' }, // 删除确认 deleteConfirmation: { title: '确认删除', message: '确定要删除此学期吗?', warning: '此操作无法撤销,请谨慎操作。' }, // 验证消息 validation: { studentRequired: '学生为必选项', termNameRequired: '学期名称为必填项', startDateRequired: '开始日期为必填项', endDateRequired: '结束日期为必填项' } }