@allbluecn/shared 0.3.13 → 0.4.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 (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,375 +0,0 @@
1
- {
2
- "tabs": {
3
- "general": "General",
4
- "generalSettings": "General Settings",
5
- "personalTeam": "Personal & Team",
6
- "accountProfile": "Account Profile",
7
- "teamMembers": "Team Members",
8
- "dataPrivacy": "Data & Privacy",
9
- "ai": "AI",
10
- "aiAgents": "Agents",
11
- "aiProviders": "AI Providers",
12
- "prdDesign": "PRD Prototype & UI Design",
13
- "uiDesign": "UI Design",
14
- "billing": "Subscription & Billing",
15
- "subscription": "Subscription",
16
- "desktop": "Desktop",
17
- "connectionMode": "Connection Mode",
18
- "plugins": "Plugins"
19
- },
20
- "langZh": "中文",
21
- "langEn": "English",
22
- "languageChanged": "Language changed",
23
- "languageChangeFailed": "Failed to change language",
24
- "ai": {
25
- "providers": "AI Providers",
26
- "providersDescription": "Click a provider card to configure API Key, custom endpoint, and enabled models. Conversations will automatically route to the selected provider.",
27
- "privacyNotice": "Privacy Notice",
28
- "privacyNoticeDescription": "API Key is only stored in your account database and read server-side via serverFn. It is never written to client localStorage, cookies, or session JWT.",
29
- "loadError": "[settings/ai] Failed to load provider list",
30
- "operationFailed": "Operation failed",
31
- "providerEnabled": "Enabled",
32
- "providerConfigured": "Configured",
33
- "providerLocal": "Local",
34
- "providerNotConfigured": "Not Configured",
35
- "platformDepreciated": "Platform deprecated",
36
- "platformDepreciatedNotice": "Platform deprecated, configured users can continue to use",
37
- "modelCount": "{{count}} models",
38
- "enable": "Enable",
39
- "disable": "Disable",
40
- "enabledProviders": "Enabled providers ({{count}})",
41
- "disabledProviders": "Disabled providers ({{count}})",
42
- "noMatchedProviders": "No matching providers",
43
- "searchPlaceholder": "Search providers (e.g. OpenAI, Claude)",
44
- "sortDefault": "Default sort",
45
- "sortByName": "By name",
46
- "sortConfiguredFirst": "Configured first",
47
- "localNoKeyNeeded": "No API Key needed for local deployment",
48
- "keyStoredEncrypted": "API Key is encrypted and stored in the database.",
49
- "getKey": "Get API Key",
50
- "current": "Current:",
51
- "keepCurrentKey": "Leave empty to keep current key, enter new value to overwrite",
52
- "hideKey": "Hide API Key",
53
- "showKey": "Show API Key",
54
- "deleteSavedKey": "Delete saved API Key",
55
- "createCustomModel": "Create Custom Model",
56
- "createCustomModelDescription": "Add a model not provided by the service provider (e.g. fine-tuned model, private deployment model). Visible only to you.",
57
- "modelId": "Model ID *",
58
- "displayName": "Display Name",
59
- "displayNamePlaceholder": "Leave empty to use model ID",
60
- "contextWindow": "Context Window",
61
- "releaseDate": "Release Date",
62
- "inputPrice": "Input Price ($/M tokens)",
63
- "outputPrice": "Output Price ($/M tokens)",
64
- "capabilitiesSection": "Capabilities",
65
- "capabilitiesMap": {
66
- "text": "Text",
67
- "vision": "Vision",
68
- "tools": "Tools",
69
- "reasoning": "Reasoning",
70
- "audio": "Audio"
71
- },
72
- "iconSlug": "Icon slug (optional)",
73
- "iconSlugPlaceholder": "@lobehub/icons PascalCase name, leave empty to use provider icon",
74
- "tags": "Tags (comma-separated)",
75
- "tagsPlaceholder": "e.g. flagship, fast",
76
- "creating": "Creating...",
77
- "createModel": "Create Model",
78
- "fetchFailed": "Fetch failed",
79
- "createFailed": "Create failed",
80
- "totalModels": "{{count}} models",
81
- "includesCustom": " ({{count}} custom)",
82
- "searchModels": "Search model name or ID",
83
- "fetchModels": "Fetch Models",
84
- "enabled": "Enabled",
85
- "enableAll": "Enable All",
86
- "toggleAllFiltered": "Enable or disable all filtered models",
87
- "disableAll": "Disable All",
88
- "noEnabledInFilter": "No enabled models under current filter",
89
- "noEnabledYet": "No models enabled yet, enable from the list below",
90
- "disabled": "Disabled",
91
- "tabs": {
92
- "all": "All",
93
- "text": "Text",
94
- "reasoning": "Reasoning",
95
- "tools": "Tools",
96
- "vision": "Vision",
97
- "video": "Video"
98
- },
99
- "freePrice": "Free",
100
- "dragToSort": "Drag to reorder",
101
- "tagLabels": {
102
- "custom": "Custom",
103
- "flagship": "Flagship",
104
- "fast": "Fast",
105
- "recommended": "Recommended",
106
- "apiFetched": "API Fetched"
107
- },
108
- "contextWindowK": "{{k}}K context",
109
- "toggleModel": "Toggle {{name}}",
110
- "saveFailedReason": "Save failed: {{message}}",
111
- "configDeleted": "Configuration deleted",
112
- "deleteFailedReason": "Delete failed: {{message}}",
113
- "testFailedReason": "Test failed: {{message}}",
114
- "unknownError": "Unknown error",
115
- "back": "Back",
116
- "platformDelistedTitle": "This provider has been removed from the platform",
117
- "platformDelistedDesc": "New users won't see this provider, but you can keep using your saved configuration.",
118
- "recommended": "Recommended",
119
- "docs": "Docs",
120
- "getApiKey": "Get API Key",
121
- "enableProvider": "Enable this provider",
122
- "setupConfig": "Connection settings",
123
- "baseUrlLabel": "API proxy address (BaseURL)",
124
- "baseUrlHint": "Leave empty to use default:",
125
- "modelManagement": "Model management",
126
- "modelManagementDesc": "Manage available models for this provider. Drag enabled cards to reorder; the order determines the model picker display.",
127
- "clearConfig": "Clear this provider's configuration",
128
- "testConnection": "Test connection",
129
- "saving": "Saving…",
130
- "saved": "Saved",
131
- "saveShort": "Save failed",
132
- "modelIdPlaceholder": "e.g. {{example}}"
133
- },
134
- "billing": {
135
- "subscriptionSuccess": "Subscription successful!",
136
- "paymentCancelled": "Payment cancelled"
137
- },
138
- "connection": {
139
- "cloud": "Cloud",
140
- "selfHosted": "Self-Hosted",
141
- "local": "Local",
142
- "mode": "Connection Mode",
143
- "modeDescription": "Manage the connection method for the desktop client.",
144
- "currentMode": "Current Mode",
145
- "cloudDescription": "Connected to AllBlue official cloud service.",
146
- "localDescription": "Using local SQLite database. Data is stored on this machine.",
147
- "switchMode": "Switch Connection Mode",
148
- "selfHostedDescription": "Connected to self-hosted instance: {{label}}"
149
- },
150
- "design": {
151
- "title": "UI Design",
152
- "description": "Sketch plugin integration. Sync your design drafts to AllBlue.",
153
- "hideToken": "Hide Token",
154
- "showToken": "Show Token",
155
- "copyToken": "Copy Token",
156
- "copyTokenSuccess": "Token copied",
157
- "tokenNotGenerated": "Token not generated yet",
158
- "regenerate": "Regenerate",
159
- "generateToken": "Generate Token",
160
- "delete": "Delete",
161
- "confirmDeleteToken": "Confirm deleting Token?",
162
- "confirmDeleteTokenDescription": "After deletion, Sketch plugins using this Token will lose connection. This action cannot be undone.",
163
- "cancel": "Cancel",
164
- "tokenGenerated": "Token generated",
165
- "generateFailed": "Generation failed",
166
- "tokenDeleted": "Token deleted",
167
- "deleteFailed": "Deletion failed",
168
- "setupStep1": "1. Click \"Generate Token\" to create an access token",
169
- "setupStep2": "2. Copy the Token and paste it into the Sketch plugin panel",
170
- "setupStep3": "3. In Sketch, open Plugins → AllBlue → Open Control Panel"
171
- },
172
- "general": {
173
- "title": "General Settings",
174
- "timezone": "Timezone",
175
- "timezoneDescription": "Set your preferred timezone. All times (documents, PRDs, activities) will display in this timezone. Projects can override individually.",
176
- "timezoneRequired": "Please select a timezone",
177
- "timezoneUpdated": "Timezone updated",
178
- "saveFailed": "Save failed",
179
- "language": "Language",
180
- "languageDescription": "Select the interface display language. Changes take effect immediately."
181
- },
182
- "notFound": {
183
- "title": "Page Not Found",
184
- "description": "The page you are looking for was not found in settings.",
185
- "backToSettings": "Back to Settings",
186
- "backToWorkspace": "Back to Workspace"
187
- },
188
- "nav": {
189
- "settings": "Settings"
190
- },
191
- "avatar": {
192
- "editTitle": "Edit Avatar",
193
- "editDescription": "Choose a style to customize your avatar",
194
- "random": "Random",
195
- "flip": "Flip",
196
- "bgColor": "Background Color",
197
- "bgShape": "Background Shape",
198
- "reset": "Reset",
199
- "shapeSquare": "Square",
200
- "shapeCircle": "Circle",
201
- "shapeRounded": "Rounded",
202
- "none": "None",
203
- "part": {
204
- "face": "Face",
205
- "eyes": "Eyes",
206
- "eyebrows": "Eyebrows",
207
- "mouth": "Mouth",
208
- "nose": "Nose",
209
- "glasses": "Glasses",
210
- "hair": "Hair",
211
- "accessories": "Accessories",
212
- "details": "Details",
213
- "beard": "Beard"
214
- }
215
- },
216
- "profile": {
217
- "title": "Profile Settings",
218
- "description": "Manage your profile and avatar",
219
- "saving": "Saving…",
220
- "saveChanges": "Save Changes",
221
- "enterName": "Please enter your name",
222
- "enterEmail": "Please enter your email",
223
- "invalidEmail": "Please enter a valid email address",
224
- "invalidUrl": "Please enter a valid URL",
225
- "saveFailed": "Failed to save profile",
226
- "enterNewEmail": "Please enter new email",
227
- "enterCurrentPassword": "Please enter current password",
228
- "emailChangeFailed": "Failed to change email",
229
- "avatar": "Avatar",
230
- "defaultUser": "User",
231
- "uploadImage": "Upload Image",
232
- "avatarDescription": "Click avatar to customize style. Image upload is not yet available.",
233
- "name": "Name",
234
- "namePlaceholder": "Please enter your name",
235
- "email": "Email",
236
- "changeEmail": "Change Email",
237
- "newEmail": "New Email",
238
- "currentPassword": "Current Password",
239
- "currentPasswordPlaceholder": "Please enter current password",
240
- "changingEmail": "Changing…",
241
- "confirmChange": "Confirm Change",
242
- "bio": "Bio",
243
- "bioPlaceholder": "Tell us about yourself...",
244
- "bioDescription": "A short personal introduction (max 500 characters)",
245
- "location": "Location",
246
- "locationPlaceholder": "City, Country",
247
- "website": "Website",
248
- "socialLinks": "Social Links",
249
- "socialWebsite": "Personal Website",
250
- "socialTwitter": "Twitter/X",
251
- "socialGitHub": "GitHub",
252
- "socialLinkedIn": "LinkedIn",
253
- "avatarSaveFailed": "Failed to save avatar",
254
- "avatarUpdated": "Avatar updated",
255
- "saved": "Profile saved ({{name}})",
256
- "notAvailable": "{{label}} is not yet available",
257
- "accountInfoTitle": "Account",
258
- "accountInfoDesc": "Manage your account info and avatar",
259
- "accountMetadata": "Account Info",
260
- "accountMetadataDesc": "Account metadata",
261
- "createdAt": "Registered At",
262
- "createdAtDesc": "Account creation time",
263
- "unknown": "Unknown"
264
- },
265
- "privacy": {
266
- "title": "Data & Privacy",
267
- "exportTitle": "Export my data",
268
- "exportDesc": "Request a copy of all your personal data on AllBlue",
269
- "exportBtn": "Request export",
270
- "deleteTitle": "Delete account & data",
271
- "deleteDesc": "This action is irreversible and will permanently delete your account and data",
272
- "deleteBtn": "Request deletion",
273
- "deleteConfirmLabel": "Type your username to confirm",
274
- "deleteConfirmPlaceholder": "Enter username",
275
- "submitted": "Request submitted"
276
- },
277
- "team": {
278
- "title": "Team Members",
279
- "memberCount": "{{count}} members",
280
- "searchPlaceholder": "Search members…",
281
- "allRoles": "All Roles",
282
- "role": {
283
- "owner": "Owner",
284
- "admin": "Admin",
285
- "member": "Member",
286
- "viewer": "Viewer",
287
- "guest": "Guest"
288
- },
289
- "allStatuses": "All Statuses",
290
- "status": {
291
- "active": "Active",
292
- "invited": "Invited",
293
- "suspended": "Suspended",
294
- "pending": "Pending",
295
- "accepted": "Accepted",
296
- "expired": "Expired",
297
- "revoked": "Revoked"
298
- },
299
- "noMatch": "No matching members found",
300
- "noMembers": "No members yet",
301
- "tryAdjustFilters": "Try adjusting your filters",
302
- "inviteMembers": "Invite members to get started",
303
- "you": "You",
304
- "joinedAt": "Joined",
305
- "lastActiveAt": "Last active",
306
- "sessions": "{{count}} sessions",
307
- "moreActions": "More actions",
308
- "promoteToAdmin": "Promote to Admin",
309
- "demoteToMember": "Demote to Member",
310
- "resendInvite": "Resend Invitation",
311
- "removeMember": "Remove Member",
312
- "removeMemberConfirm": "Confirm removing this member?",
313
- "never": "Never",
314
- "justNow": "Just now",
315
- "minutesAgo": "{{count}}m ago",
316
- "hoursAgo": "{{count}}h ago",
317
- "daysAgo": "{{count}}d ago",
318
- "expired": "Expired",
319
- "days": "{{count}}d",
320
- "hours": "{{count}}h",
321
- "lessThanHour": "Less than an hour",
322
- "directLink": "Direct Link",
323
- "resend": "Resend",
324
- "revoke": "Revoke",
325
- "copyLink": "Copy Link",
326
- "inviteSent": "Invitation sent",
327
- "linkCreated": "Link created",
328
- "guestBadge": "Guest",
329
- "unlimited": "Unlimited",
330
- "seatMembers": "Member Seats",
331
- "seatMembersHint": "Team member seat usage",
332
- "seatGuests": "Guest Seats",
333
- "seatGuestsHint": "Each additional member seat comes with 3 guest seats",
334
- "invite": {
335
- "title": "Invitations",
336
- "description": "{{pending}} pending, {{accepted}} accepted",
337
- "createInvite": "Create Invitation",
338
- "dialogDescription": "Invite others to join your team",
339
- "directLink": "Generate direct link (no email needed)",
340
- "email": "Email",
341
- "role": "Role",
342
- "roleDescription": "Members can create content, guests can only view",
343
- "expires": "Expiration",
344
- "message": "Message (optional)",
345
- "messagePlaceholder": "Add a personal message…",
346
- "creating": "Creating…",
347
- "sendInvite": "Send Invitation",
348
- "noInvitations": "No invitations yet",
349
- "createFirst": "Create an invitation to get started.",
350
- "invitedAt": "invited by",
351
- "acceptedAt": "Accepted on"
352
- },
353
- "expiresIn": " until expired",
354
- "inviteCreateFailed": "Failed to create invitation",
355
- "subtitle": "Invite, manage and leave team members",
356
- "notImplemented": "{{action}} is not yet available",
357
- "linkCopied": "Link copied: {{link}}",
358
- "dangerZone": "Danger zone",
359
- "dangerZoneDesc": "These actions are irreversible, please proceed with caution",
360
- "leaveTeamTitle": "Leave the current team",
361
- "leaveTeamDesc": "You will lose all access to this team",
362
- "leaveTeam": "Leave team",
363
- "joinedTeam": "Joined {{username}}'s team",
364
- "memberInfo": "Member Info",
365
- "noTeam": "No Team Yet",
366
- "noTeamDesc": "Invite team members to get started",
367
- "sampleNames": {
368
- "zhangsan": "Zhang San",
369
- "lisi": "Li Si",
370
- "wangwu": "Wang Wu",
371
- "zhaoliu": "Zhao Liu",
372
- "qianqi": "Qian Qi"
373
- }
374
- }
375
- }
@@ -1,20 +0,0 @@
1
- {
2
- "review": {
3
- "pending": "Pending",
4
- "reviewing": "In Review",
5
- "approved": "Approved",
6
- "rejected": "Rejected",
7
- "status-updated": "Review status updated",
8
- "update-failed": "Update failed",
9
- "login-required": "Please log in to review",
10
- "status-label": "Review Status",
11
- "notes-placeholder": "Review notes...",
12
- "approve": "Approve",
13
- "reject": "Reject"
14
- },
15
- "comment": {
16
- "input-placeholder": "Add a comment...",
17
- "send": "Send",
18
- "login-required": "Please log in to comment"
19
- }
20
- }