Files
fe_portal_manage_frontend/src/locales/zh-CN/friendLink.ts

97 lines
4.8 KiB
TypeScript
Raw Normal View History

export default {
// 友情链接管理页面
'friendLink.title': '友情链接管理',
'friendLink.name': '名称',
'friendLink.nameEn': '英文名称',
'friendLink.url': '链接地址',
'friendLink.logo': '图标',
'friendLink.thumbnail': '缩略图',
'friendLink.sort': '排序',
'friendLink.status': '状态',
'friendLink.category': '所属分类',
'friendLink.operation': '操作',
'friendLink.add': '新增链接',
'friendLink.edit': '编辑链接',
'friendLink.delete': '删除链接',
'friendLink.batchDelete': '批量删除',
'friendLink.enable': '启用',
'friendLink.disable': '禁用',
'friendLink.enabled': '已启用',
'friendLink.disabled': '已禁用',
'friendLink.selectedCount': '已选择 {count} 项',
// 表单相关
'friendLink.form.name.required': '请输入链接名称',
'friendLink.form.name.placeholder': '请输入链接名称',
'friendLink.form.nameEn.required': '请输入英文名称',
'friendLink.form.nameEn.placeholder': '请输入英文名称',
'friendLink.form.category.required': '请选择所属分类',
'friendLink.form.category.placeholder': '请选择所属分类',
'friendLink.form.url.required': '请输入链接地址',
'friendLink.form.url.invalid': '请输入有效的URL地址',
'friendLink.form.url.placeholder': '请输入链接地址以http://或https://开头',
'friendLink.form.thumbnail.required': '请上传缩略图',
'friendLink.form.thumbnail.upload': '上传缩略图',
'friendLink.form.sort.required': '请输入排序值',
'friendLink.form.sort.placeholder': '请输入排序值,数字越小越靠前',
// 操作提示
'friendLink.delete.confirm.title': '删除确认',
'friendLink.delete.confirm.content': '确定要删除该友情链接吗?',
'friendLink.delete.success': '删除成功',
'friendLink.batchDelete.empty': '请选择要删除的项',
'friendLink.batchDelete.confirm.title': '批量删除确认',
'friendLink.batchDelete.confirm.content': '确定要删除选中的 {count} 项吗?',
'friendLink.batchDelete.success': '批量删除成功',
'friendLink.add.success': '添加成功',
'friendLink.update.success': '更新成功',
'friendLink.enable.success': '启用成功',
'friendLink.disable.success': '禁用成功',
'friendLink.enable.confirm.title': '启用确认',
'friendLink.enable.confirm.content': '确定要启用该友情链接吗?',
'friendLink.disable.confirm.title': '禁用确认',
'friendLink.disable.confirm.content': '确定要禁用该友情链接吗?',
2025-06-18 18:46:32 +08:00
'friendLink.detail.failed': '获取友情链接详情失败',
// 友情链接分类管理
'friendLink.category.title': '友情链接分类管理',
'friendLink.category.name': '分类名称',
'friendLink.category.level': '层级',
'friendLink.category.sort': '排序',
'friendLink.category.parentCategory': '父级分类',
'friendLink.category.operation': '操作',
'friendLink.category.add': '新增分类',
'friendLink.category.addChild': '新增子类',
'friendLink.category.edit': '编辑',
'friendLink.category.delete': '删除',
'friendLink.category.form.title.add': '新增分类',
'friendLink.category.form.title.addChild': '新增子分类',
'friendLink.category.form.title.edit': '编辑分类',
'friendLink.category.form.name': '分类名称',
'friendLink.category.form.name.placeholder': '请输入分类名称',
'friendLink.category.form.name.required': '请输入分类名称',
'friendLink.category.form.parentCategory': '父级分类',
'friendLink.category.form.parentCategory.placeholder': '请选择父级分类',
'friendLink.category.form.parentCategory.required': '请选择父级分类',
'friendLink.category.form.sort': '排序',
'friendLink.category.form.sort.placeholder': '请输入排序值,数字越小越靠前',
'friendLink.category.form.sort.required': '请输入排序值',
'friendLink.category.delete.confirm.title': '删除分类',
'friendLink.category.delete.confirm.content': '确定要删除分类"{name}"吗?',
'friendLink.category.delete.hasChildren': '该分类下有子分类,不能直接删除',
'friendLink.category.delete.success': '删除成功',
'friendLink.category.add.success': '添加成功',
'friendLink.category.update.success': '更新成功',
// 分类类型
'friendLink.category.type': '类型',
'friendLink.category.type.normal': '普通展示',
'friendLink.category.type.featured': '重点展示',
'friendLink.category.form.type': '分类类型',
'friendLink.category.form.type.placeholder': '请选择分类类型',
'friendLink.category.form.type.required': '请选择分类类型',
'friendLink.category.form.remark': '备注',
'friendLink.category.form.remark.placeholder': '请输入备注信息',
'friendLink.category.form.remark.required': '请输入备注信息',
};