import type { TranslationStrings } from '../types'; const perm: TranslationStrings = { 'perm.title': '权限设置', 'perm.subtitle': '控制谁可以在应用中执行操作', 'perm.saved': '权限设置已保存', 'perm.resetDefaults': '恢复默认', 'perm.customized': '已自定义', 'perm.level.admin': '仅管理员', 'perm.level.tripOwner': '旅行所有者', 'perm.level.tripMember': '旅行成员', 'perm.level.everybody': '所有人', 'perm.cat.trip': '旅行管理', 'perm.cat.members': '成员管理', 'perm.cat.files': '文件', 'perm.cat.content': '内容与日程', 'perm.cat.extras': '预算、行李与协作', 'perm.action.trip_create': '创建旅行', 'perm.action.trip_edit': '编辑旅行详情', 'perm.action.trip_delete': '删除旅行', 'perm.action.trip_archive': '归档 / 取消归档旅行', 'perm.action.trip_cover_upload': '上传封面图片', 'perm.action.member_manage': '添加 / 移除成员', 'perm.action.file_upload': '上传文件', 'perm.action.file_edit': '编辑文件元数据', 'perm.action.file_delete': '删除文件', 'perm.action.place_edit': '添加 / 编辑 / 删除地点', 'perm.action.day_edit': '编辑日程、备注与分配', 'perm.action.reservation_edit': '管理预订', 'perm.action.budget_edit': '管理预算', 'perm.action.packing_edit': '管理行李清单', 'perm.action.collab_edit': '协作(笔记、投票、聊天)', 'perm.action.share_manage': '管理分享链接', 'perm.actionHint.trip_create': '谁可以创建新旅行', 'perm.actionHint.trip_edit': '谁可以更改旅行名称、日期、描述和货币', 'perm.actionHint.trip_delete': '谁可以永久删除旅行', 'perm.actionHint.trip_archive': '谁可以归档或取消归档旅行', 'perm.actionHint.trip_cover_upload': '谁可以上传或更改封面图片', 'perm.actionHint.member_manage': '谁可以邀请或移除旅行成员', 'perm.actionHint.file_upload': '谁可以向旅行上传文件', 'perm.actionHint.file_edit': '谁可以编辑文件描述和链接', 'perm.actionHint.file_delete': '谁可以将文件移至回收站或永久删除', 'perm.actionHint.place_edit': '谁可以添加、编辑或删除地点', 'perm.actionHint.day_edit': '谁可以编辑日程、日程备注和地点分配', 'perm.actionHint.reservation_edit': '谁可以创建、编辑或删除预订', 'perm.actionHint.budget_edit': '谁可以创建、编辑或删除预算项目', 'perm.actionHint.packing_edit': '谁可以管理行李物品和包袋', 'perm.actionHint.collab_edit': '谁可以创建笔记、投票和发送消息', 'perm.actionHint.share_manage': '谁可以创建或删除公开分享链接', }; export default perm;