@allbluecn/shared 0.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (95) hide show
  1. package/package.json +117 -0
  2. package/src/constants/perf.ts +21 -0
  3. package/src/i18n/client.ts +32 -0
  4. package/src/i18n/config.ts +104 -0
  5. package/src/i18n/detect.ts +43 -0
  6. package/src/i18n/locales/en/agents.json +134 -0
  7. package/src/i18n/locales/en/apps.json +6 -0
  8. package/src/i18n/locales/en/auth.json +88 -0
  9. package/src/i18n/locales/en/billing.json +78 -0
  10. package/src/i18n/locales/en/chat.json +194 -0
  11. package/src/i18n/locales/en/common.json +203 -0
  12. package/src/i18n/locales/en/dashboard.json +38 -0
  13. package/src/i18n/locales/en/design.json +70 -0
  14. package/src/i18n/locales/en/desktop.json +35 -0
  15. package/src/i18n/locales/en/display.json +37 -0
  16. package/src/i18n/locales/en/editor.json +304 -0
  17. package/src/i18n/locales/en/enterprise.json +1 -0
  18. package/src/i18n/locales/en/invite.json +11 -0
  19. package/src/i18n/locales/en/knowledge.json +451 -0
  20. package/src/i18n/locales/en/mindmap.json +28 -0
  21. package/src/i18n/locales/en/prd.json +43 -0
  22. package/src/i18n/locales/en/projects.json +133 -0
  23. package/src/i18n/locales/en/settings.json +375 -0
  24. package/src/i18n/locales/en/share.json +20 -0
  25. package/src/i18n/locales/en/story.json +785 -0
  26. package/src/i18n/locales/en/tags.json +42 -0
  27. package/src/i18n/locales/en/workspace.json +90 -0
  28. package/src/i18n/locales/zh/agents.json +134 -0
  29. package/src/i18n/locales/zh/apps.json +6 -0
  30. package/src/i18n/locales/zh/auth.json +88 -0
  31. package/src/i18n/locales/zh/billing.json +78 -0
  32. package/src/i18n/locales/zh/chat.json +194 -0
  33. package/src/i18n/locales/zh/common.json +203 -0
  34. package/src/i18n/locales/zh/dashboard.json +38 -0
  35. package/src/i18n/locales/zh/design.json +70 -0
  36. package/src/i18n/locales/zh/desktop.json +35 -0
  37. package/src/i18n/locales/zh/display.json +37 -0
  38. package/src/i18n/locales/zh/editor.json +304 -0
  39. package/src/i18n/locales/zh/enterprise.json +1 -0
  40. package/src/i18n/locales/zh/invite.json +11 -0
  41. package/src/i18n/locales/zh/knowledge.json +451 -0
  42. package/src/i18n/locales/zh/mindmap.json +28 -0
  43. package/src/i18n/locales/zh/prd.json +43 -0
  44. package/src/i18n/locales/zh/projects.json +133 -0
  45. package/src/i18n/locales/zh/settings.json +375 -0
  46. package/src/i18n/locales/zh/share.json +20 -0
  47. package/src/i18n/locales/zh/story.json +785 -0
  48. package/src/i18n/locales/zh/tags.json +42 -0
  49. package/src/i18n/locales/zh/workspace.json +90 -0
  50. package/src/i18n/server.ts +18 -0
  51. package/src/i18n/types.ts +5 -0
  52. package/src/index.ts +90 -0
  53. package/src/infrastructure/ai/adapter.ts +59 -0
  54. package/src/infrastructure/ai/cli-detector.ts +64 -0
  55. package/src/infrastructure/ip-location.ts +76 -0
  56. package/src/infrastructure/references/engine.ts +104 -0
  57. package/src/infrastructure/ua-parser.ts +107 -0
  58. package/src/interfaces/ai.ts +38 -0
  59. package/src/interfaces/avatar.ts +22 -0
  60. package/src/interfaces/module.ts +60 -0
  61. package/src/interfaces/references.ts +44 -0
  62. package/src/interfaces/transport.ts +26 -0
  63. package/src/lib/annotation-template.ts +33 -0
  64. package/src/lib/comment-utils.ts +47 -0
  65. package/src/lib/datetime.ts +115 -0
  66. package/src/lib/desktop-detect.ts +27 -0
  67. package/src/lib/outline-utils.ts +57 -0
  68. package/src/lib/pacer.ts +96 -0
  69. package/src/lib/prd/stack-layout.ts +53 -0
  70. package/src/lib/prd-tree-utils.ts +94 -0
  71. package/src/lib/prototype-registry.ts +24 -0
  72. package/src/lib/query-client-seam.ts +14 -0
  73. package/src/lib/share-events.ts +78 -0
  74. package/src/lib/sidebar-utils.ts +21 -0
  75. package/src/lib/stores/prd-canvas-store.ts +69 -0
  76. package/src/lib/tag-colors.ts +35 -0
  77. package/src/lib/time-format.ts +50 -0
  78. package/src/modules/ai-providers/constants.ts +79 -0
  79. package/src/modules/ai-providers/index.ts +21 -0
  80. package/src/modules/ai-providers/seed-data.ts +222 -0
  81. package/src/modules/ai-providers/types.ts +95 -0
  82. package/src/modules/billing/feature-registry.ts +63 -0
  83. package/src/modules/billing/plan-features-schema.ts +11 -0
  84. package/src/modules/billing/resource-registry.ts +80 -0
  85. package/src/modules/definitions/plugin.module.ts +38 -0
  86. package/src/modules/definitions/prd.module.ts +45 -0
  87. package/src/modules/definitions/prototype.module.ts +38 -0
  88. package/src/modules/dependencies/index.ts +186 -0
  89. package/src/modules/register-defaults.ts +27 -0
  90. package/src/modules/registry.ts +53 -0
  91. package/src/server-seam.ts +51 -0
  92. package/src/types/outline.ts +26 -0
  93. package/src/types/prd.ts +90 -0
  94. package/src/types/prototype.ts +12 -0
  95. package/src/virtual.d.ts +4 -0
@@ -0,0 +1,42 @@
1
+ {
2
+ "title": "Tags",
3
+ "description": "Tag management is under development",
4
+ "detail": {
5
+ "title": "Tag Detail",
6
+ "description": "Tag detail page is under development"
7
+ },
8
+ "settings": {
9
+ "title": "Tag Settings",
10
+ "description": "Manage your tags: add, remove, recolor, drag to reorder"
11
+ },
12
+ "emptyTitle": "No tags yet",
13
+ "emptyDesc": "Create your first tag to organize PRDs",
14
+ "createTag": "New Tag",
15
+ "editTag": "Edit Tag",
16
+ "nameLabel": "Name",
17
+ "colorLabel": "Color",
18
+ "nameRequired": "Please enter a name",
19
+ "nameConflict": "This name already exists",
20
+ "saveFailed": "Save failed",
21
+ "saving": "Saving...",
22
+ "save": "Save",
23
+ "cancel": "Cancel",
24
+ "delete": "Delete",
25
+ "deleted": "Deleted",
26
+ "deleteFailed": "Delete failed",
27
+ "updated": "Updated",
28
+ "created": "Created",
29
+ "sortFailed": "Sort failed",
30
+ "confirmDeleteTitle": "Delete tag \"{{name}}\"?",
31
+ "confirmDeleteDesc": "Associated PRDs will retain this tag and it will reappear when restored.",
32
+ "selector": {
33
+ "placeholder": "Select tags",
34
+ "searchPlaceholder": "Search or create...",
35
+ "createTag": "Create \"{{name}}\""
36
+ },
37
+ "colorPicker": {
38
+ "selectColor": "Select color {{color}}"
39
+ },
40
+ "edit": "Edit",
41
+ "removeTag": "Remove {{name}}"
42
+ }
@@ -0,0 +1,90 @@
1
+ {
2
+ "title": "Workspace",
3
+ "list": {
4
+ "title": "Workspaces",
5
+ "subtitle": "Manage your projects, team collaboration, and requirements",
6
+ "create": "New Workspace",
7
+ "emptyTitle": "No workspaces yet",
8
+ "emptyDescription": "Create your first workspace and start collaborating",
9
+ "noDescription": "No description",
10
+ "projects": "Projects",
11
+ "members": "Members"
12
+ },
13
+ "createWorkspace": {
14
+ "title": "New Workspace",
15
+ "description": "Create a workspace to manage projects, requirements, and team members",
16
+ "nameLabel": "Workspace Name *",
17
+ "namePlaceholder": "Enter workspace name",
18
+ "nameRequired": "Please enter a workspace name",
19
+ "descriptionLabel": "Description",
20
+ "descriptionPlaceholder": "Brief description (optional)",
21
+ "cancel": "Cancel",
22
+ "creating": "Creating...",
23
+ "create": "Create",
24
+ "createFailed": "Create failed",
25
+ "upgradeTitle": "Workspace limit reached",
26
+ "upgradeDescription": "Free accounts can create 1 workspace. Upgrade to Pro for unlimited workspaces and all advanced features.",
27
+ "upgradeAction": "Upgrade to Pro"
28
+ },
29
+ "detail": {
30
+ "noDescription": "No description",
31
+ "projects": "Projects",
32
+ "members": "Members",
33
+ "createProject": "New Project",
34
+ "emptyProjectsTitle": "No projects yet",
35
+ "emptyProjectsDescription": "Create your first project in this workspace"
36
+ },
37
+ "settings": {
38
+ "back": "Back to Workspace",
39
+ "title": "Workspace Settings",
40
+ "basicInfo": "Basic Information",
41
+ "icon": "Workspace Icon",
42
+ "nameLabel": "Workspace Name *",
43
+ "nameRequired": "Please enter a workspace name",
44
+ "descriptionLabel": "Description",
45
+ "descriptionPlaceholder": "Briefly describe the workspace goals and scope",
46
+ "saveChanges": "Save Changes",
47
+ "updateSuccess": "Workspace updated",
48
+ "saveFailed": "Save failed",
49
+ "members": "Member Management",
50
+ "inviteEmailPlaceholder": "Enter member email",
51
+ "inviteEmailRequired": "Please enter an email",
52
+ "inviteSuccess": "Invitation sent",
53
+ "inviteFailed": "Invitation failed",
54
+ "inviteLoading": "Inviting...",
55
+ "invite": "Invite",
56
+ "seatsExceeded": "Pro plan allows up to {{max}} members (current {{current}}/{{max}}). Contact the workspace owner to upgrade to Enterprise.",
57
+ "memberRemoved": "Member removed",
58
+ "removeFailed": "Remove failed",
59
+ "roleUpdated": "Role updated",
60
+ "operationFailed": "Operation failed",
61
+ "workspaceDeleted": "Workspace deleted",
62
+ "deleteFailed": "Delete failed",
63
+ "roles": {
64
+ "owner": "Owner",
65
+ "admin": "Admin",
66
+ "member": "Member",
67
+ "viewer": "Viewer"
68
+ },
69
+ "unknownUser": "Unknown User",
70
+ "self": "(You)",
71
+ "pending": "Pending",
72
+ "dangerZone": "Danger Zone",
73
+ "deleteDescription": "Deleting the workspace will permanently remove the workspace and all member relationships. This action cannot be undone.",
74
+ "hasProjects": "This workspace still has {{count}} project(s). Please choose how to handle them first.",
75
+ "deleteClear": "Clear Projects & Delete Workspace",
76
+ "deleteTransfer": "Transfer Projects & Delete Workspace",
77
+ "deleteWorkspace": "Delete Workspace",
78
+ "confirmDelete": "Confirm Delete",
79
+ "confirmDeleteDescription": "This will permanently delete \"{{name}}\" and all associated data. This cannot be undone.",
80
+ "projectHandling": "Project Handling",
81
+ "clearProjects": "Clear Projects (Irreversible)",
82
+ "clearProjectsDesc": "All projects in this workspace will be permanently deleted.",
83
+ "transferProjects": "Transfer to Another Workspace",
84
+ "transferProjectsDesc": "Select a target workspace to keep project data.",
85
+ "confirmRemoveMember": "Confirm Remove Member",
86
+ "confirmRemoveMemberDesc": "Are you sure you want to remove this member? They will immediately lose access to this workspace.",
87
+ "cancel": "Cancel",
88
+ "confirmRemove": "Confirm Remove"
89
+ }
90
+ }
@@ -0,0 +1,134 @@
1
+ {
2
+ "page": {
3
+ "title": "智能体",
4
+ "description": "管理你的 AI 智能体和技能",
5
+ "tabs": {
6
+ "agents": "智能体",
7
+ "skills": "技能"
8
+ }
9
+ },
10
+ "agent": {
11
+ "create": "创建智能体",
12
+ "edit": "编辑智能体",
13
+ "delete": "删除智能体",
14
+ "deleteConfirmTitle": "删除智能体",
15
+ "deleteConfirmDesc": "确定要删除「{{name}}」吗?此操作无法撤销。",
16
+ "deleteConfirmText": "删除",
17
+ "deleteSuccess": "智能体已删除",
18
+ "deleteFailed": "删除智能体失败",
19
+ "created": "智能体已创建",
20
+ "updated": "智能体已更新",
21
+ "saveFailed": "保存智能体失败",
22
+ "agentQuotaExceeded": "Agent 配额已满,请升级套餐",
23
+ "empty": {
24
+ "title": "还没有智能体",
25
+ "description": "创建你的第一个 AI 智能体,让它成为你的专属助手",
26
+ "createFirst": "创建第一个智能体"
27
+ }
28
+ },
29
+ "agentForm": {
30
+ "title": {
31
+ "create": "创建智能体",
32
+ "edit": "编辑智能体"
33
+ },
34
+ "description": {
35
+ "create": "配置智能体的名称、人设、工具和模型",
36
+ "edit": "修改智能体的配置"
37
+ },
38
+ "nameLabel": "名称",
39
+ "namePlaceholder": "例如:产品评审助手",
40
+ "nameRequired": "名称不能为空",
41
+ "descriptionLabel": "描述",
42
+ "descriptionPlaceholder": "简述这个智能体的用途",
43
+ "systemPromptLabel": "系统提示词",
44
+ "systemPromptPlaceholder": "描述智能体的角色、语气和行为规范",
45
+ "systemPromptRequired": "系统提示词不能为空",
46
+ "greetingLabel": "开场白",
47
+ "greetingPlaceholder": "智能体的第一句话",
48
+ "greetingOptional": "选填,用于对话开始时的问候",
49
+ "modelLabel": "模型",
50
+ "modelPlaceholder": "选择模型",
51
+ "modelOptional": "留空使用全局默认模型",
52
+ "temperatureLabel": "温度",
53
+ "temperatureHint": "越高越有创意,越低越稳定",
54
+ "suggestedPromptsLabel": "建议提问",
55
+ "suggestedPromptsHint": "最多 4 条,用户进入对话时推荐的问题",
56
+ "suggestedPromptPlaceholder": "例如:帮我评审这份 PRD",
57
+ "addSuggestedPrompt": "添加建议",
58
+ "allowedToolsLabel": "允许的工具",
59
+ "allowedToolsHint": "选择此智能体可使用的工具",
60
+ "knowledgeBasesLabel": "关联知识库",
61
+ "knowledgeBasesHint": "选择此智能体可检索的知识库",
62
+ "save": "保存",
63
+ "create": "创建",
64
+ "saving": "保存中...",
65
+ "creating": "创建中...",
66
+ "cancel": "取消"
67
+ },
68
+ "card": {
69
+ "edit": "编辑",
70
+ "delete": "删除",
71
+ "createdAt": "创建于 {{date}}",
72
+ "updatedAt": "更新于 {{date}}",
73
+ "tools": "工具",
74
+ "knowledgeBases": "知识库",
75
+ "model": "模型",
76
+ "temperature": "温度",
77
+ "noDescription": "暂无描述",
78
+ "noTools": "未配置工具",
79
+ "noKnowledgeBases": "未关联知识库"
80
+ },
81
+ "skill": {
82
+ "create": "创建技能",
83
+ "edit": "编辑技能",
84
+ "delete": "删除技能",
85
+ "deleteConfirmTitle": "删除技能",
86
+ "deleteConfirmDesc": "确定要删除「{{name}}」吗?此操作无法撤销。",
87
+ "deleteConfirmText": "删除",
88
+ "deleteSuccess": "技能已删除",
89
+ "deleteFailed": "删除技能失败",
90
+ "created": "技能已创建",
91
+ "updated": "技能已更新",
92
+ "saveFailed": "保存技能失败",
93
+ "skillQuotaExceeded": "Skill 配额已满,请升级套餐",
94
+ "nameConflict": "技能名称已存在",
95
+ "empty": {
96
+ "title": "还没有技能",
97
+ "description": "创建你的第一个 AI 技能,扩展智能体能力",
98
+ "createFirst": "创建第一个技能"
99
+ }
100
+ },
101
+ "skillForm": {
102
+ "title": {
103
+ "create": "创建技能",
104
+ "edit": "编辑技能"
105
+ },
106
+ "description": {
107
+ "create": "定义技能名称、标题和模板",
108
+ "edit": "修改技能配置"
109
+ },
110
+ "nameLabel": "标识符",
111
+ "namePlaceholder": "例如:code-review",
112
+ "nameRequired": "标识符不能为空",
113
+ "nameInvalid": "仅允许小写字母、数字和短横线",
114
+ "titleLabel": "标题",
115
+ "titlePlaceholder": "例如:代码评审",
116
+ "titleRequired": "标题不能为空",
117
+ "templateLabel": "模板",
118
+ "templatePlaceholder": "定义技能的执行步骤和指令...",
119
+ "templateRequired": "模板不能为空",
120
+ "save": "保存",
121
+ "create": "创建",
122
+ "saving": "保存中...",
123
+ "creating": "创建中...",
124
+ "cancel": "取消"
125
+ },
126
+ "tools": {
127
+ "knowledge_search": "知识库检索",
128
+ "document_action": "文档操作",
129
+ "user_data_query": "用户数据查询",
130
+ "web_search": "联网搜索",
131
+ "reindex_knowledge_base": "知识库重索引",
132
+ "delete_project": "删除项目"
133
+ }
134
+ }
@@ -0,0 +1,6 @@
1
+ {
2
+ "title": "应用",
3
+ "detail": {
4
+ "title": "AnyHub 详情"
5
+ }
6
+ }
@@ -0,0 +1,88 @@
1
+ {
2
+ "login": {
3
+ "title": "欢迎回来",
4
+ "subtitle": "登录以访问您的仪表盘、设置和项目。",
5
+ "orWithEmail": "或使用邮箱登录",
6
+ "emailLabel": "邮箱",
7
+ "emailPlaceholder": "name@example.com",
8
+ "passwordLabel": "密码",
9
+ "passwordPlaceholder": "输入您的密码",
10
+ "remember": "记住 30 天",
11
+ "forgotPassword": "忘记密码?",
12
+ "submitting": "登录中…",
13
+ "submit": "登录",
14
+ "noAccount": "还没有账号?",
15
+ "createAccount": "创建账号",
16
+ "invalidCredentials": "邮箱或密码错误",
17
+ "success": "登录成功",
18
+ "serverError": "服务器错误",
19
+ "googleNotConfigured": "Google 登录尚未配置,请联系管理员设置 AUTH_GOOGLE_ID 和 AUTH_GOOGLE_SECRET",
20
+ "useProvider": "使用 {{name}} {{action}}",
21
+ "defaultAction": "登录",
22
+ "ssoDetected": "检测到企业邮箱,请使用单点登录",
23
+ "ssoLoginWith": "使用 {{name}} 单点登录",
24
+ "ssoContinueWithEmail": "改用邮箱登录",
25
+ "ssoFailed": "单点登录失败,请重试或联系管理员",
26
+ "ssoSubmitting": "单点登录中..."
27
+ },
28
+ "register": {
29
+ "title": "创建账号",
30
+ "subtitle": "注册以开始使用产品工作台",
31
+ "orWithEmail": "或使用邮箱注册",
32
+ "usernameLabel": "用户名",
33
+ "usernamePlaceholder": "您的用户名",
34
+ "emailLabel": "邮箱",
35
+ "passwordLabel": "密码",
36
+ "passwordPlaceholder": "输入密码",
37
+ "confirmPasswordLabel": "确认密码",
38
+ "confirmPasswordPlaceholder": "再次输入密码",
39
+ "invitationCodeLabel": "邀请码",
40
+ "invitationCodePlaceholder": "请输入邀请码",
41
+ "submitting": "注册中...",
42
+ "submit": "创建账号",
43
+ "hasAccount": "已有账号?",
44
+ "goLogin": "登录",
45
+ "success": "注册成功,请登录",
46
+ "failed": "注册失败"
47
+ },
48
+ "resetPassword": {
49
+ "title": "重置密码",
50
+ "subtitle": "请输入新密码",
51
+ "newPasswordLabel": "新密码",
52
+ "newPasswordPlaceholder": "至少 8 位",
53
+ "confirmPasswordLabel": "确认密码",
54
+ "confirmPasswordPlaceholder": "再次输入新密码",
55
+ "submitting": "重置中...",
56
+ "submit": "重置密码",
57
+ "goLogin": "返回登录",
58
+ "success": "密码已重置",
59
+ "failed": "重置失败"
60
+ },
61
+ "forgotPassword": {
62
+ "title": "忘记密码",
63
+ "subtitle": "输入您的注册邮箱,我们将发送密码重置链接",
64
+ "emailLabel": "邮箱",
65
+ "submitting": "发送中...",
66
+ "submit": "发送重置链接",
67
+ "remembered": "想起了密码?",
68
+ "goLogin": "返回登录",
69
+ "sent": "重置链接已发送到您的邮箱",
70
+ "failed": "发送失败",
71
+ "brandSubtitle": "我们将在验证后向您发送重置链接。"
72
+ },
73
+ "features": {
74
+ "userResearch": "用户调研",
75
+ "userResearchDesc": "结构化管理",
76
+ "dataAnalysis": "数据分析",
77
+ "dataAnalysisDesc": "可视化",
78
+ "teamCollaboration": "团队协作",
79
+ "teamCollaborationDesc": "高效沟通",
80
+ "roadmap": "路线图",
81
+ "roadmapDesc": "规划未来"
82
+ },
83
+ "brand": {
84
+ "title": "欢迎回到 AllBlue",
85
+ "subtitle": "以产品人为本的产品工作台,专为产品经理打造。"
86
+ },
87
+ "demo": "Demo: demo@example.com / password123"
88
+ }
@@ -0,0 +1,78 @@
1
+ {
2
+ "title": "计费",
3
+ "comingSoon": "国内支付即将上线",
4
+ "needHigherPlan": "{{label}} 需要更高计划",
5
+ "upgradeToPro": "升级到 Pro",
6
+ "freePlan": "Free 计划",
7
+ "freeDescription": "基础功能,14 天免费试用 Pro",
8
+ "planName": "{{name}} 计划",
9
+ "statusLabel": "状态:{{status}}",
10
+ "trialUntil": "试用至 {{date}}",
11
+ "expiresAt": "到期:{{date}}",
12
+ "currencyLabel": "货币:{{currency}}",
13
+ "manageBilling": "管理计费",
14
+ "saasOnly": "订阅功能仅在 SaaS 模式可用",
15
+ "choosePlanTitle": "选择适合你的计划",
16
+ "trialDescription": "14 天免费试用 Pro 计划,无需信用卡",
17
+ "free": "免费",
18
+ "perMonth": "/月",
19
+ "maxSeats": "最多 {{count}} 位成员",
20
+ "aiQuota": "AI 配额:{{quota}}/月",
21
+ "currentPlan": "当前计划",
22
+ "startTrial": "开始试用",
23
+ "noInvoices": "暂无发票记录",
24
+ "invoiceHistory": "发票历史",
25
+ "date": "日期",
26
+ "amount": "金额",
27
+ "status": "状态",
28
+ "action": "操作",
29
+ "view": "查看",
30
+ "paid": "已支付",
31
+ "unpaid": "未支付",
32
+ "requiresLogin": "此功能需要登录 AllBlue 账号",
33
+ "loginToUnlock": "登录解锁{{feature}}",
34
+ "loginToUnlockFeature": "登录解锁「{{feature}}」",
35
+ "moreFeatures": "更多功能",
36
+ "loginDescription": "此功能需要登录 AllBlue 账号。登录后数据仍保留在本地,仅解锁订阅权益与托管服务。",
37
+ "loginBenefit1": "登录后享订阅权益(托管 AI、高级功能)",
38
+ "loginBenefit2": "本地数据不会丢失,继续保留在本机",
39
+ "loginBenefit3": "可随时退出登录回到游客模式",
40
+ "later": "稍后再说",
41
+ "goToLogin": "前往登录",
42
+ "checkoutCreateFailed": "创建支付会话失败:{{message}}",
43
+ "portalOpenFailed": "打开管理面板失败:{{message}}",
44
+ "featureMultiProvider": "多 AI 提供商",
45
+ "featureHostedAi": "托管 AI",
46
+ "featureLargePageSize": "大分页(每页 500/1000)",
47
+ "featureByokAi": "自带 AI Key",
48
+ "featureAiQuota": "AI 配额",
49
+ "featureSso": "SSO 单点登录",
50
+ "featureAuditLog": "审计日志",
51
+ "openBrowserFailed": "无法打开浏览器:{{message}}",
52
+ "unknownError": "未知错误",
53
+ "pricing": {
54
+ "freeDesc": "免费使用,适合个人和小团队入门",
55
+ "startFree": "立即免费开始",
56
+ "viewPro": "查看Pro Plan详情"
57
+ },
58
+ "seatsUsedLabel": "已用席位:{{seats}}",
59
+ "seatsManager": {
60
+ "title": "席位管理",
61
+ "success": "席位已调整,立即生效"
62
+ },
63
+ "seatsUsage": "席位:{{usage}} / {{limit}}",
64
+ "seatsBase": "基础 {{base}}",
65
+ "seatsAddonCount": "加购 {{count}}",
66
+ "seatsRemove": "减少席位",
67
+ "seatsAdd": "增加席位",
68
+ "seatsUnitPrice": "每席位按月计费",
69
+ "seatsFloorHint": "当前成员数 {{usage}},无法再降低上限",
70
+ "seatsProrationHint": "变更按比例计费(proration),调整后立即生效",
71
+ "seatsConfirm": "确认调整",
72
+ "seatsUnlimited": "当前计划席位不限量",
73
+ "seatsUpgradeCta": "席位加购为 Pro 计划专属,升级后可自由增减席位",
74
+ "seatsGoBilling": "查看升级选项",
75
+ "seatsBuyCta": "加购席位",
76
+ "seatsPaymentUnavailable": "席位调整依赖在线支付,当前区域暂未开放,敬请期待",
77
+ "seatsCheckoutRedirect": "首次加购席位,即将跳转付款页完成授权"
78
+ }
@@ -0,0 +1,194 @@
1
+ {
2
+ "title": "对话",
3
+ "systemPrompt": "你是 AllBlue 产品工作台的 AI 助手。你帮助产品经理完成需求分析、文档撰写、产品设计等工作。请用中文回答。",
4
+ "newConversation": "新对话",
5
+ "aiKeyRequired": "请先配置 AI API Key",
6
+ "goToSettings": "去设置",
7
+ "history": {
8
+ "title": "对话历史",
9
+ "conversationCount": "{{count}} 个对话",
10
+ "messageCount": "{{count}} 条消息",
11
+ "searchPlaceholder": "搜索对话...",
12
+ "searchAriaLabel": "搜索对话",
13
+ "selectConversation": "选择对话 {{title}}",
14
+ "editTitle": "编辑对话标题",
15
+ "moreActions": "更多操作 - {{title}}",
16
+ "rename": "重命名",
17
+ "archive": "归档",
18
+ "unarchive": "取消归档",
19
+ "deleteTitle": "删除对话?",
20
+ "deleteDescription": "确定要删除「{{title}}」吗?此操作无法撤销。"
21
+ },
22
+ "groups": {
23
+ "today": "今天",
24
+ "yesterday": "昨天",
25
+ "thisWeek": "本周",
26
+ "earlier": "更早"
27
+ },
28
+ "empty": {
29
+ "notFound": "未找到对话",
30
+ "noConversations": "暂无对话",
31
+ "tryOtherSearch": "试试其他搜索词",
32
+ "createNew": "创建一个新对话开始使用"
33
+ },
34
+ "citations": {
35
+ "title": "来源与引用",
36
+ "source": "来源 · {{sourceName}}",
37
+ "sourceCount": "来源 · {{sourceName}} +{{count}}",
38
+ "empty": "暂无引用",
39
+ "emptyDesc": "当对话中引用来源时,引用将显示在此处。",
40
+ "viewCitation": "查看引用 {{number}}",
41
+ "citation": "引用 {{number}}",
42
+ "sourceMetadata": "来源元数据",
43
+ "sourceExcerpt": "来源摘要",
44
+ "hideSnippet": "隐藏摘要",
45
+ "showSnippet": "显示摘要",
46
+ "openInNewTab": "在新标签页打开 {{title}}",
47
+ "domains": {
48
+ "baidu.com": "百度",
49
+ "zhihu.com": "知乎",
50
+ "sohu.com": "搜狐",
51
+ "douyin.com": "抖音",
52
+ "xiaohongshu.com": "小红书",
53
+ "bilibili.com": "B站",
54
+ "weibo.com": "微博",
55
+ "163.com": "网易",
56
+ "qq.com": "腾讯",
57
+ "sina.com.cn": "新浪",
58
+ "jianshu.com": "简书",
59
+ "wikipedia.org": "维基百科",
60
+ "bing.com": "必应"
61
+ }
62
+ },
63
+ "emptyState": {
64
+ "title": "开始对话",
65
+ "description": "在下方输入消息,与 AI 助手开始聊天",
66
+ "newMessage": "新消息"
67
+ },
68
+ "error": {
69
+ "translate": "翻译",
70
+ "translating": "翻译中..."
71
+ },
72
+ "actions": {
73
+ "menu": "消息操作",
74
+ "menuLabel": "消息操作菜单",
75
+ "openMenu": "打开消息操作菜单",
76
+ "copy": "复制",
77
+ "copied": "已复制",
78
+ "copyFailed": "复制消息到剪贴板失败",
79
+ "regenerate": "重新生成",
80
+ "attach": "添加附件",
81
+ "enableThinking": "启用深度思考",
82
+ "disableThinking": "关闭深度思考",
83
+ "thinking": "深度思考",
84
+ "enableWebSearch": "启用联网搜索",
85
+ "disableWebSearch": "关闭联网搜索",
86
+ "webSearch": "联网搜索",
87
+ "moreOptions": "更多选项",
88
+ "sendMessage": "发送消息",
89
+ "voiceInput": "语音输入",
90
+ "cancel": "取消"
91
+ },
92
+ "agentMode": {
93
+ "label": "智能体模式",
94
+ "placeholder": "智能体",
95
+ "auto": "自动",
96
+ "agent": "智能体",
97
+ "plan": "规划"
98
+ },
99
+ "context": {
100
+ "add": "添加上下文",
101
+ "knowledgeBase": "知识库",
102
+ "users": "用户",
103
+ "selected": "已选上下文",
104
+ "selectedMobile": "已选上下文(移动端)",
105
+ "remove": "移除 {{label}}"
106
+ },
107
+ "model": {
108
+ "loading": "加载模型中...",
109
+ "none": "暂无可用模型",
110
+ "select": "选择模型",
111
+ "local": "(本地)",
112
+ "capabilities": {
113
+ "text": "文本",
114
+ "vision": "视觉",
115
+ "tools": "工具",
116
+ "reasoning": "推理",
117
+ "audio": "音频"
118
+ }
119
+ },
120
+ "prompt": {
121
+ "inputLabel": "AI 聊天输入",
122
+ "placeholder": "输入任何问题...",
123
+ "enterHint": "Enter 换行 · ⌘+Enter 发送",
124
+ "submitLabel": "提交:"
125
+ },
126
+ "promptActions": {
127
+ "cloneScreenshot": "克隆截图",
128
+ "importFigma": "从 Figma 导入",
129
+ "uploadProject": "上传项目",
130
+ "landingPage": "落地页"
131
+ },
132
+ "thinking": {
133
+ "title": "正在思考...",
134
+ "elapsed": "已用时 {{seconds}} 秒",
135
+ "seconds": "{{count}}秒",
136
+ "process": "AI 思考过程",
137
+ "placeholder": "让我来分析用户的问题。我需要理解用户的需求,然后搜索相关知识库,最后给出完整的回答。\n\n首先,我会分析问题的关键要素,确定需要哪些信息来提供准确的回答。\n\n接下来,我会在知识库中搜索相关信息,查看是否有类似的案例或文档可以参考。\n\n然后,我会综合所有信息,组织回答的结构,确保逻辑清晰、内容完整。\n\n最后,我会检查回答的准确性和完整性,确保没有遗漏重要信息。"
138
+ },
139
+ "interrupt": {
140
+ "title": "AI 请求执行操作",
141
+ "descriptionStart": "模型想要调用",
142
+ "descriptionEnd": "工具。",
143
+ "approve": "批准",
144
+ "reject": "拒绝"
145
+ },
146
+ "streaming": {
147
+ "label": "流式输出中"
148
+ },
149
+ "aria": {
150
+ "aiConversation": "AI 对话",
151
+ "aiMessage": "AI 消息",
152
+ "messageLog": "对话消息"
153
+ },
154
+ "slashCommands": {
155
+ "placeholder": "输入斜杠指令...",
156
+ "noSkills": "暂无斜杠指令,前往「智能体」页面创建",
157
+ "loading": "加载中...",
158
+ "apply": "应用"
159
+ },
160
+ "agentSelector": {
161
+ "placeholder": "选择智能体",
162
+ "default": "默认助手",
163
+ "switchConfirmTitle": "切换智能体",
164
+ "switchConfirmDesc": "当前对话有未发送的内容,切换智能体会清空当前内容并开始新会话。",
165
+ "switchConfirm": "确认切换"
166
+ },
167
+ "aiPrompt": {
168
+ "describe": "描述需求,",
169
+ "generate": "即刻生成",
170
+ "build": "即刻构建",
171
+ "launch": "即刻上线",
172
+ "subtitle": "只需描述你的想法,AI 帮你构建真实可用的软件",
173
+ "notConfigured": "AI 功能尚未配置",
174
+ "configHint": "请先在设置中配置 API Key 以启用 AI 助手",
175
+ "goToConfig": "前往配置",
176
+ "requestFailed": "请求失败,请稍后重试",
177
+ "thinking": "AI 正在思考...",
178
+ "enterFullChat": "进入完整对话",
179
+ "placeholder": "输入你的问题...",
180
+ "placeholderNotConfigured": "请先配置 AI Key..."
181
+ },
182
+ "globalChat": {
183
+ "title": "AI 助手",
184
+ "placeholder": "输入消息...",
185
+ "placeholderNotConfigured": "请先配置 AI Key...",
186
+ "sending": "发送中...",
187
+ "send": "发送",
188
+ "close": "关闭",
189
+ "notConfigured": "AI 功能尚未配置",
190
+ "configHint": "请先配置 API Key",
191
+ "requestFailed": "请求失败",
192
+ "thinking": "AI 正在思考..."
193
+ }
194
+ }