56 lines
2.3 KiB
TypeScript
56 lines
2.3 KiB
TypeScript
export default {
|
|
// 页面标题
|
|
"system.dict.page.title": "字典管理",
|
|
"system.dict.page.description": "管理系统字典类型,配置数据字典项",
|
|
|
|
// 字典类型
|
|
"system.dict.id": "ID",
|
|
"system.dict.name": "字典名称",
|
|
"system.dict.name.required": "字典名称不能为空",
|
|
"system.dict.code": "字典编码",
|
|
"system.dict.code.required": "字典编码不能为空",
|
|
"system.dict.renderType": "渲染类型",
|
|
"system.dict.renderType.required": "渲染类型不能为空",
|
|
"system.dict.renderType.text": "纯文本",
|
|
"system.dict.renderType.tag": "标签",
|
|
"system.dict.renderType.badge": "徽标",
|
|
"system.dict.renderType.switch": "开关",
|
|
"system.dict.status": "状态",
|
|
"system.dict.status.required": "状态不能为空",
|
|
"system.dict.status.normal": "正常",
|
|
"system.dict.status.disabled": "停用",
|
|
"system.dict.sort": "排序",
|
|
"system.dict.describe": "描述",
|
|
"system.dict.createdAt": "创建时间",
|
|
"system.dict.updatedAt": "更新时间",
|
|
|
|
// 字典数据
|
|
"system.dict.item.id": "ID",
|
|
"system.dict.item.label": "字典标签",
|
|
"system.dict.item.label.required": "字典标签不能为空",
|
|
"system.dict.item.value": "字典键值",
|
|
"system.dict.item.value.required": "字典键值不能为空",
|
|
"system.dict.item.color": "颜色",
|
|
"system.dict.item.isDefault": "是否默认",
|
|
"system.dict.item.isDefault.required": "是否默认不能为空",
|
|
"system.dict.item.isDefault.yes": "是",
|
|
"system.dict.item.isDefault.no": "否",
|
|
"system.dict.item.status": "状态",
|
|
"system.dict.item.status.required": "状态不能为空",
|
|
"system.dict.item.status.normal": "正常",
|
|
"system.dict.item.status.disabled": "停用",
|
|
"system.dict.item.sort": "排序",
|
|
"system.dict.item.createTime": "创建时间",
|
|
"system.dict.item.updateTime": "更新时间",
|
|
|
|
// 操作
|
|
"system.dict.refreshCache": "刷新缓存",
|
|
"system.dict.refreshSuccess": "字典缓存刷新成功",
|
|
"system.dict.manageItems": "字典数据",
|
|
"system.dict.itemManagement": "字典数据管理",
|
|
"system.dict.item.createSuccess": "字典数据新增成功",
|
|
"system.dict.item.updateSuccess": "字典数据更新成功",
|
|
"system.dict.backToList": "返回列表",
|
|
"system.dict.selectDictFirst": "请从字典列表中选择要管理的字典",
|
|
};
|