@allbluecn/shared 0.3.14 → 0.4.1

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 (198) hide show
  1. package/dist/config-CcbSbJoC.js +6344 -0
  2. package/dist/constants/perf.d.ts +6 -0
  3. package/dist/constants/perf.js +6 -0
  4. package/dist/constants-C3hGP_ru.d.ts +33 -0
  5. package/dist/i18n/client.d.ts +5 -0
  6. package/dist/i18n/client.js +34 -0
  7. package/dist/i18n/config.d.ts +6270 -0
  8. package/dist/i18n/config.js +2 -0
  9. package/dist/i18n/detect.d.ts +5 -0
  10. package/dist/i18n/detect.js +35 -0
  11. package/dist/i18n/server.d.ts +6 -0
  12. package/dist/i18n/server.js +19 -0
  13. package/dist/i18n/types.d.ts +3 -0
  14. package/dist/i18n/types.js +0 -0
  15. package/dist/index.d.ts +18 -0
  16. package/dist/index.js +14 -0
  17. package/dist/infrastructure/ai/adapter.d.ts +8 -0
  18. package/dist/infrastructure/ai/adapter.js +32 -0
  19. package/dist/infrastructure/ai/cli-detector.d.ts +6 -0
  20. package/dist/infrastructure/ai/cli-detector.js +121 -0
  21. package/dist/infrastructure/ip-location.d.ts +9 -0
  22. package/dist/infrastructure/ip-location.js +48 -0
  23. package/dist/infrastructure/references/engine.d.ts +7 -0
  24. package/dist/infrastructure/references/engine.js +64 -0
  25. package/dist/infrastructure/ua-parser.d.ts +20 -0
  26. package/dist/infrastructure/ua-parser.js +69 -0
  27. package/dist/interfaces/ai.d.ts +27 -0
  28. package/dist/interfaces/ai.js +0 -0
  29. package/dist/interfaces/avatar.d.ts +6 -0
  30. package/dist/interfaces/avatar.js +0 -0
  31. package/dist/interfaces/module.d.ts +45 -0
  32. package/dist/interfaces/module.js +0 -0
  33. package/dist/interfaces/references.d.ts +27 -0
  34. package/dist/interfaces/references.js +0 -0
  35. package/dist/interfaces/transport.d.ts +11 -0
  36. package/dist/interfaces/transport.js +0 -0
  37. package/dist/lib/annotation-template.d.ts +9 -0
  38. package/dist/lib/annotation-template.js +14 -0
  39. package/dist/lib/comment-utils.d.ts +7 -0
  40. package/dist/lib/comment-utils.js +27 -0
  41. package/dist/lib/datetime.d.ts +25 -0
  42. package/dist/lib/datetime.js +73 -0
  43. package/dist/lib/desktop-detect.d.ts +13 -0
  44. package/dist/lib/desktop-detect.js +23 -0
  45. package/dist/lib/outline-utils.d.ts +6 -0
  46. package/dist/lib/outline-utils.js +46 -0
  47. package/dist/lib/pacer.d.ts +45 -0
  48. package/dist/lib/pacer.js +70 -0
  49. package/dist/lib/prd/stack-layout.d.ts +18 -0
  50. package/dist/lib/prd/stack-layout.js +24 -0
  51. package/dist/lib/prd-tree-utils.d.ts +21 -0
  52. package/dist/lib/prd-tree-utils.js +62 -0
  53. package/dist/lib/prototype-registry.d.ts +2 -0
  54. package/dist/lib/prototype-registry.js +2 -0
  55. package/dist/lib/query-client-seam.d.ts +6 -0
  56. package/dist/lib/query-client-seam.js +11 -0
  57. package/dist/lib/share-events.d.ts +7 -0
  58. package/dist/lib/share-events.js +47 -0
  59. package/dist/lib/sidebar-utils.d.ts +4 -0
  60. package/dist/lib/sidebar-utils.js +7 -0
  61. package/dist/lib/stores/prd-canvas-store.d.ts +16 -0
  62. package/dist/lib/stores/prd-canvas-store.js +42 -0
  63. package/dist/lib/tag-colors.d.ts +12 -0
  64. package/dist/lib/tag-colors.js +74 -0
  65. package/dist/lib/time-format.d.ts +4 -0
  66. package/dist/lib/time-format.js +20 -0
  67. package/dist/modules/ai-providers/constants.d.ts +2 -0
  68. package/dist/modules/ai-providers/constants.js +125 -0
  69. package/dist/modules/ai-providers/index.d.ts +4 -0
  70. package/dist/modules/ai-providers/index.js +4 -0
  71. package/dist/modules/ai-providers/seed-data.d.ts +2 -0
  72. package/dist/modules/ai-providers/seed-data.js +408 -0
  73. package/dist/modules/ai-providers/types.d.ts +2 -0
  74. package/dist/modules/ai-providers/types.js +10 -0
  75. package/dist/modules/billing/feature-registry.d.ts +72 -0
  76. package/dist/modules/billing/feature-registry.js +67 -0
  77. package/dist/modules/billing/plan-features-schema.d.ts +6 -0
  78. package/dist/modules/billing/plan-features-schema.js +6 -0
  79. package/dist/modules/billing/resource-registry.d.ts +59 -0
  80. package/dist/modules/billing/resource-registry.js +47 -0
  81. package/dist/modules/definitions/plugin.module.d.ts +5 -0
  82. package/dist/modules/definitions/plugin.module.js +24 -0
  83. package/dist/modules/definitions/prd.module.d.ts +5 -0
  84. package/dist/modules/definitions/prd.module.js +26 -0
  85. package/dist/modules/definitions/prototype.module.d.ts +5 -0
  86. package/dist/modules/definitions/prototype.module.js +20 -0
  87. package/dist/modules/dependencies/index.d.ts +92 -0
  88. package/dist/modules/dependencies/index.js +334 -0
  89. package/dist/modules/register-defaults.d.ts +4 -0
  90. package/dist/modules/register-defaults.js +12 -0
  91. package/dist/modules/registry.d.ts +17 -0
  92. package/dist/modules/registry.js +27 -0
  93. package/dist/seed-data-BK0cl93n.d.ts +6 -0
  94. package/dist/server-seam.d.ts +19 -0
  95. package/dist/server-seam.js +11 -0
  96. package/dist/types/outline.d.ts +10 -0
  97. package/dist/types/outline.js +0 -0
  98. package/dist/types/prd.d.ts +48 -0
  99. package/dist/types/prd.js +37 -0
  100. package/dist/types/prototype.d.ts +2 -0
  101. package/dist/types/prototype.js +2 -0
  102. package/dist/types-dopOMFRC.d.ts +61 -0
  103. package/dist/virtual.d.ts +1 -0
  104. package/package.json +133 -37
  105. package/src/constants/perf.ts +0 -21
  106. package/src/i18n/client.ts +0 -32
  107. package/src/i18n/config.ts +0 -104
  108. package/src/i18n/detect.ts +0 -43
  109. package/src/i18n/locales/en/agents.json +0 -134
  110. package/src/i18n/locales/en/apps.json +0 -6
  111. package/src/i18n/locales/en/auth.json +0 -88
  112. package/src/i18n/locales/en/billing.json +0 -78
  113. package/src/i18n/locales/en/chat.json +0 -194
  114. package/src/i18n/locales/en/common.json +0 -203
  115. package/src/i18n/locales/en/dashboard.json +0 -38
  116. package/src/i18n/locales/en/design.json +0 -70
  117. package/src/i18n/locales/en/desktop.json +0 -35
  118. package/src/i18n/locales/en/display.json +0 -37
  119. package/src/i18n/locales/en/editor.json +0 -304
  120. package/src/i18n/locales/en/enterprise.json +0 -1
  121. package/src/i18n/locales/en/invite.json +0 -11
  122. package/src/i18n/locales/en/knowledge.json +0 -451
  123. package/src/i18n/locales/en/mindmap.json +0 -28
  124. package/src/i18n/locales/en/prd.json +0 -43
  125. package/src/i18n/locales/en/projects.json +0 -133
  126. package/src/i18n/locales/en/settings.json +0 -375
  127. package/src/i18n/locales/en/share.json +0 -20
  128. package/src/i18n/locales/en/story.json +0 -785
  129. package/src/i18n/locales/en/tags.json +0 -42
  130. package/src/i18n/locales/en/workspace.json +0 -90
  131. package/src/i18n/locales/zh/agents.json +0 -134
  132. package/src/i18n/locales/zh/apps.json +0 -6
  133. package/src/i18n/locales/zh/auth.json +0 -88
  134. package/src/i18n/locales/zh/billing.json +0 -78
  135. package/src/i18n/locales/zh/chat.json +0 -194
  136. package/src/i18n/locales/zh/common.json +0 -203
  137. package/src/i18n/locales/zh/dashboard.json +0 -38
  138. package/src/i18n/locales/zh/design.json +0 -70
  139. package/src/i18n/locales/zh/desktop.json +0 -35
  140. package/src/i18n/locales/zh/display.json +0 -37
  141. package/src/i18n/locales/zh/editor.json +0 -304
  142. package/src/i18n/locales/zh/enterprise.json +0 -1
  143. package/src/i18n/locales/zh/invite.json +0 -11
  144. package/src/i18n/locales/zh/knowledge.json +0 -451
  145. package/src/i18n/locales/zh/mindmap.json +0 -28
  146. package/src/i18n/locales/zh/prd.json +0 -43
  147. package/src/i18n/locales/zh/projects.json +0 -133
  148. package/src/i18n/locales/zh/settings.json +0 -375
  149. package/src/i18n/locales/zh/share.json +0 -20
  150. package/src/i18n/locales/zh/story.json +0 -785
  151. package/src/i18n/locales/zh/tags.json +0 -42
  152. package/src/i18n/locales/zh/workspace.json +0 -90
  153. package/src/i18n/server.ts +0 -18
  154. package/src/i18n/types.ts +0 -5
  155. package/src/index.ts +0 -90
  156. package/src/infrastructure/ai/adapter.ts +0 -59
  157. package/src/infrastructure/ai/cli-detector.ts +0 -64
  158. package/src/infrastructure/ip-location.ts +0 -76
  159. package/src/infrastructure/references/engine.ts +0 -104
  160. package/src/infrastructure/ua-parser.ts +0 -107
  161. package/src/interfaces/ai.ts +0 -38
  162. package/src/interfaces/avatar.ts +0 -22
  163. package/src/interfaces/module.ts +0 -60
  164. package/src/interfaces/references.ts +0 -44
  165. package/src/interfaces/transport.ts +0 -26
  166. package/src/lib/annotation-template.ts +0 -33
  167. package/src/lib/comment-utils.ts +0 -47
  168. package/src/lib/datetime.ts +0 -115
  169. package/src/lib/desktop-detect.ts +0 -27
  170. package/src/lib/outline-utils.ts +0 -57
  171. package/src/lib/pacer.ts +0 -96
  172. package/src/lib/prd/stack-layout.ts +0 -53
  173. package/src/lib/prd-tree-utils.ts +0 -94
  174. package/src/lib/prototype-registry.ts +0 -24
  175. package/src/lib/query-client-seam.ts +0 -14
  176. package/src/lib/share-events.ts +0 -78
  177. package/src/lib/sidebar-utils.ts +0 -21
  178. package/src/lib/stores/prd-canvas-store.ts +0 -69
  179. package/src/lib/tag-colors.ts +0 -35
  180. package/src/lib/time-format.ts +0 -50
  181. package/src/modules/ai-providers/constants.ts +0 -79
  182. package/src/modules/ai-providers/index.ts +0 -21
  183. package/src/modules/ai-providers/seed-data.ts +0 -222
  184. package/src/modules/ai-providers/types.ts +0 -95
  185. package/src/modules/billing/feature-registry.ts +0 -63
  186. package/src/modules/billing/plan-features-schema.ts +0 -11
  187. package/src/modules/billing/resource-registry.ts +0 -80
  188. package/src/modules/definitions/plugin.module.ts +0 -38
  189. package/src/modules/definitions/prd.module.ts +0 -45
  190. package/src/modules/definitions/prototype.module.ts +0 -38
  191. package/src/modules/dependencies/index.ts +0 -186
  192. package/src/modules/register-defaults.ts +0 -27
  193. package/src/modules/registry.ts +0 -53
  194. package/src/server-seam.ts +0 -51
  195. package/src/types/outline.ts +0 -26
  196. package/src/types/prd.ts +0 -90
  197. package/src/types/prototype.ts +0 -12
  198. package/src/virtual.d.ts +0 -4
@@ -1,203 +0,0 @@
1
- {
2
- "errorPage": {
3
- "notFound": "页面不存在",
4
- "notFoundDesc": "你访问的页面不存在或已被移除",
5
- "goDashboard": "返回工作台",
6
- "error": "出错了",
7
- "goHome": "返回首页"
8
- },
9
- "nav": {
10
- "workspace": "工作台",
11
- "chat": "对话",
12
- "agents": "智能体",
13
- "inspiration": "灵感",
14
- "story": "需求",
15
- "prd": "PRD",
16
- "prototypeBoard": "原型画板",
17
- "design": "设计",
18
- "testcase": "测例",
19
- "bug": "BUG",
20
- "acceptance": "验收",
21
- "debrief": "复盘",
22
- "law": "法律法规",
23
- "compliance": "行业合规",
24
- "dictionary": "词典词条",
25
- "bookmarks": "网站收藏",
26
- "summary": "周报月报",
27
- "summaryBadge": "AI自动生成"
28
- },
29
- "button": {
30
- "save": "保存",
31
- "cancel": "取消",
32
- "delete": "删除",
33
- "confirm": "确认",
34
- "close": "关闭",
35
- "back": "返回",
36
- "next": "下一步",
37
- "submit": "提交",
38
- "reset": "重置",
39
- "edit": "编辑",
40
- "create": "创建",
41
- "search": "搜索"
42
- },
43
- "form": {
44
- "add": "添加",
45
- "empty": "暂无内容",
46
- "search": "搜索...",
47
- "selectDate": "选择日期",
48
- "submit": "提交",
49
- "cancel": "取消",
50
- "select": "请选择",
51
- "operationFailed": "操作失败",
52
- "invalidEmail": "请输入有效邮箱",
53
- "passwordMin": "密码至少 6 位",
54
- "passwordMin8": "密码至少 8 字符",
55
- "passwordNotEmpty": "密码不能为空",
56
- "usernameMin3": "用户名至少 3 字符",
57
- "invitationCodeRequired": "请输入邀请码",
58
- "passwordMismatch": "两次密码不一致",
59
- "projectNameRequired": "请输入项目名称",
60
- "workspaceRequired": "请选择工作空间",
61
- "storyTitleRequired": "请输入需求标题",
62
- "projectRequired": "请选择项目",
63
- "required": "此项为必填"
64
- },
65
- "status": {
66
- "loading": "加载中…",
67
- "saving": "保存中…",
68
- "deleting": "删除中...",
69
- "success": "成功",
70
- "error": "出错了",
71
- "empty": "暂无数据"
72
- },
73
- "hotkey": {
74
- "title": "快捷键"
75
- },
76
- "command": {
77
- "searchPlaceholder": "搜索命令或页面...",
78
- "groupNavigation": "导航",
79
- "groupAction": "操作",
80
- "empty": "未找到匹配命令",
81
- "gotoDashboard": "前往工作台",
82
- "gotoChat": "前往对话",
83
- "gotoAgents": "前往智能体",
84
- "gotoInspiration": "前往灵感",
85
- "gotoStories": "前往需求",
86
- "gotoPrd": "前往 PRD",
87
- "gotoDesign": "前往设计",
88
- "gotoTestCases": "前往测试用例",
89
- "gotoBugs": "前往缺陷",
90
- "gotoAcceptance": "前往验收标准",
91
- "gotoDebrief": "前往汇报",
92
- "gotoKnowledge": "前往知识库",
93
- "gotoAnyhub": "前往应用中心",
94
- "gotoTags": "前往标签",
95
- "gotoWorkspaces": "前往工作空间",
96
- "gotoSettings": "前往设置",
97
- "createPrd": "新建 PRD",
98
- "createConversation": "新建对话",
99
- "createStory": "新建需求",
100
- "toggleTheme": "切换明暗主题",
101
- "signOut": "退出登录"
102
- },
103
- "settings": {
104
- "language": "语言",
105
- "languageDescription": "选择界面显示语言,切换后即时生效。",
106
- "languageChanged": "语言已切换",
107
- "languageChangeFailed": "语言切换失败"
108
- },
109
- "share": {
110
- "notFoundTitle": "分享不存在",
111
- "notFoundDescription": "该分享链接无效或已过期",
112
- "expired": "分享不存在或已过期",
113
- "loadError": "加载分享内容出错: {{message}}",
114
- "retry": "重试",
115
- "loadFailed": "加载失败",
116
- "favoriteAdded": "已收藏",
117
- "favoriteRemoved": "已取消收藏",
118
- "loginRequired": "请先登录",
119
- "linkCopied": "链接已复制",
120
- "copyLink": "复制链接",
121
- "favorite": "收藏",
122
- "favorited": "已收藏"
123
- },
124
- "nameConfirm": {
125
- "invalidName": "输入的名称不正确",
126
- "operationFailed": "操作失败",
127
- "inputInstruction": "请输入",
128
- "copied": "已复制",
129
- "clickToCopy": "点击复制",
130
- "confirmDelete": "确认删除",
131
- "inputPlaceholder": "输入 \"{{expectedName}}\" 确认",
132
- "cancel": "取消",
133
- "deleting": "删除中..."
134
- },
135
- "timezone": {
136
- "placeholder": "选择时区",
137
- "searchPlaceholder": "搜索时区...",
138
- "notFound": "未找到时区",
139
- "common": "常用时区",
140
- "all": "所有时区"
141
- },
142
- "iconPicker": {
143
- "select": "选择一个图标"
144
- },
145
- "languageSwitcher": {
146
- "switch": "切换语言",
147
- "zh": "中文",
148
- "en": "English"
149
- },
150
- "loading": "加载中…",
151
- "pr": {
152
- "create": "创建PRD"
153
- },
154
- "auth": {
155
- "loginSuccess": "登录成功,权益已同步",
156
- "loginFailed": "登录失败:{{message}}",
157
- "unknownError": "未知错误"
158
- },
159
- "translator": {
160
- "translating": "翻译中..."
161
- },
162
- "placeholder": {
163
- "developing": "功能开发中,敬请期待"
164
- },
165
- "navFloat": {
166
- "exitFullscreen": "退出全屏\n可拖动到其他角落",
167
- "showHeader": "显示顶栏\n可拖动到其他角落"
168
- },
169
- "contributionGraph": {
170
- "monthSuffix": "月",
171
- "totalCount": "最近 {{count}} 次贡献",
172
- "legendLess": "少",
173
- "legendMore": "多",
174
- "operations": "次操作"
175
- },
176
- "sidebar": {
177
- "workspace": {
178
- "title": "工作空间",
179
- "home": "工作空间主页",
180
- "create": "创建空间"
181
- },
182
- "knowledge": {
183
- "title": "知识库",
184
- "general": "通用知识",
185
- "create": "创建知识"
186
- },
187
- "anyHub": {
188
- "title": "AnyHub"
189
- },
190
- "userMenu": {
191
- "title": "用户菜单",
192
- "profile": "个人资料",
193
- "settings": "设置",
194
- "admin": "管理后台",
195
- "logout": "退出登录",
196
- "logoutToGuest": "退出游客模式",
197
- "loginSaaS": "登录 SaaS",
198
- "upgradePro": "升级专业版"
199
- },
200
- "collapseSubMenu": "收起子菜单",
201
- "expandSubMenu": "展开子菜单"
202
- }
203
- }
@@ -1,38 +0,0 @@
1
- {
2
- "activityFeed": {
3
- "title": "最近活动",
4
- "empty": "暂无活动"
5
- },
6
- "quickActions": {
7
- "newPRD": "新建 PRD",
8
- "viewComments": "查看评论"
9
- },
10
- "stats": {
11
- "prdTotal": "PRD 总数",
12
- "completedToday": "今日完成",
13
- "unreadComments": "未读评论",
14
- "anyHubInstalled": "AnyHub 安装"
15
- },
16
- "dashboard": {
17
- "activity": "活跃度",
18
- "quickEntry": "快捷入口",
19
- "teamFeatureComing": "团队功能即将上线,敬请期待",
20
- "subtitle": "产品需求文档管理",
21
- "newPrd": "新建 PRD",
22
- "totalCount": "总文档数",
23
- "weekNew": "本周新增",
24
- "updated24h": "24小时更新",
25
- "noPrd": "暂无 PRD",
26
- "noMatch": "没有找到匹配的 PRD",
27
- "noPrdHint": "点击上方按钮创建你的第一个 PRD 文档",
28
- "noDescription": "暂无描述",
29
- "deletePrd": "删除 PRD",
30
- "updatedAt": "更新于",
31
- "justNow": "刚刚",
32
- "minutesAgo": "{{count}} 分钟前",
33
- "hoursAgo": "{{count}} 小时前",
34
- "daysAgo": "{{count}} 天前",
35
- "confirmDeleteTitle": "确认删除",
36
- "confirmDeleteDesc": "确定要删除这个 PRD 吗?此操作不可恢复。"
37
- }
38
- }
@@ -1,70 +0,0 @@
1
- {
2
- "title": "设计",
3
- "subtitle": "UI设计、平面设计、AI设计,AllBlue 让设计师和开发者的协作更高效。",
4
- "searchPlaceholder": "搜索...",
5
- "createDesign": "新建设计",
6
- "downloadSketchPlugin": "下载 AllBlue Sketch 插件",
7
- "loading": "加载中...",
8
- "justNow": "刚刚",
9
- "minutesAgo": "{{count}} 分钟前",
10
- "hoursAgo": "{{count}} 小时前",
11
- "daysAgo": "{{count}} 天前",
12
- "stats": {
13
- "totalTitle": "设计稿总数",
14
- "weeklyNew": "本周新增",
15
- "updated24h": "24 小时内更新"
16
- },
17
- "emptyTitle": "暂无设计稿",
18
- "emptyNoResults": "未找到匹配的设计稿",
19
- "emptyDescription": "安装 Sketch 插件,一键推送设计稿到 AllBlue",
20
- "deleteDesign": "删除设计稿",
21
- "sketchFile": "Sketch 文件: {{name}}",
22
- "artboardVersionInfo": "{{count}} 个画板 · 版本 v{{version}}",
23
- "updatedAt": "更新于 {{date}}",
24
- "deleteConfirmTitle": "确认删除",
25
- "deleteConfirmDescription": "删除后该设计稿将不再出现在看板中,此操作可在数据库中恢复。",
26
- "deleteLoading": "删除中...",
27
- "deleteConfirm": "确认删除",
28
- "cancel": "取消",
29
- "projectNotFound": "项目不存在",
30
- "project": {
31
- "artboardVersionInfo": "{{count}} 个画板 · 版本 {{version}}"
32
- },
33
- "detail": {
34
- "notFound": "画板不存在",
35
- "layers": "图层",
36
- "layerCount": "{{count}} 个图层",
37
- "preview": "画板预览",
38
- "export": "导出",
39
- "code": "代码"
40
- },
41
- "propertyPanel": {
42
- "clickLayer": "点击画板上的图层查看属性",
43
- "dimensions": "尺寸与位置",
44
- "spacing": "间距",
45
- "top": "上",
46
- "bottom": "下",
47
- "left": "左",
48
- "right": "右",
49
- "fill": "填充",
50
- "border": "边框",
51
- "shadow": "阴影",
52
- "text": "文字",
53
- "fontFamily": "字体",
54
- "fontSize": "大小",
55
- "textColor": "颜色",
56
- "cornerRadius": "圆角"
57
- },
58
- "codePreview": {
59
- "selectLayer": "选择图层查看生成的代码",
60
- "copied": "已复制",
61
- "copy": "复制"
62
- },
63
- "exportPanel": {
64
- "title": "切图资源",
65
- "empty": "无可导出的切图"
66
- },
67
- "projectCard": {
68
- "artboardCount": "{{count}} 个画板 · v{{version}}"
69
- }
70
- }
@@ -1,35 +0,0 @@
1
- {
2
- "onboarding": {
3
- "title": "欢迎使用 AllBlue 桌面端",
4
- "subtitle": "选择您的连接模式以开始",
5
- "saas": {
6
- "title": "连接到 AllBlue 云端",
7
- "desc": "官方托管,免运维,享订阅权益",
8
- "button": "连接云端"
9
- },
10
- "selfHosted": {
11
- "title": "连接到自部署实例",
12
- "desc": "公司或个人部署的开源版",
13
- "button": "配置连接",
14
- "dialogTitle": "连接到自部署实例",
15
- "urlLabel": "实例 URL",
16
- "labelField": "备注名称(可选)",
17
- "labelPlaceholder": "公司 PRD 实例",
18
- "cancel": "取消",
19
- "connect": "测试并连接",
20
- "connecting": "测试中..."
21
- },
22
- "local": {
23
- "title": "使用本地模式",
24
- "desc": "数据完全在本地,BYOK AI",
25
- "button": "进入本地"
26
- },
27
- "errors": {
28
- "switchFailed": "切换失败:{{message}}",
29
- "localFailed": "进入本地模式失败:{{message}}",
30
- "connectFailed": "无法连接:{{message}}",
31
- "unknownError": "未知错误",
32
- "timeout": "超时"
33
- }
34
- }
35
- }
@@ -1,37 +0,0 @@
1
- {
2
- "displayOptions": "显示",
3
- "viewGrouping": "视图分组",
4
- "group": "分组",
5
- "subGroup": "子分组",
6
- "order": "排序",
7
- "showProperties": "显示属性",
8
- "extraOptions": "附加选项",
9
- "showEmptyGroups": "显示空分组",
10
- "showSubItems": "显示子项",
11
- "pageSize": "每页数量",
12
- "asc": "升序",
13
- "desc": "降序",
14
- "group.state": "状态",
15
- "group.priority": "优先级",
16
- "group.assignee": "负责人",
17
- "group.labels": "标签",
18
- "group.createdBy": "创建人",
19
- "group.project": "项目",
20
- "group.none": "不分组",
21
- "order.manual": "手动排序",
22
- "order.created": "创建时间",
23
- "order.updated": "更新时间",
24
- "order.startDate": "开始时间",
25
- "order.dueDate": "截止时间",
26
- "order.priority": "优先级",
27
- "property.id": "ID",
28
- "property.project": "项目",
29
- "property.assignee": "负责人",
30
- "property.startDate": "开始时间",
31
- "property.dueDate": "截止时间",
32
- "property.labels": "标签",
33
- "property.priority": "优先级",
34
- "property.state": "状态",
35
- "property.subCount": "子项数",
36
- "property.attachmentCount": "附件数"
37
- }