super-productivity/packages/plugin-dev/clickup-issue-provider/i18n/zh.json
Johannes Millan 76239d3411 refactor(issue): migrate ClickUp issue provider from built-in to plugin
Migrate the ClickUp issue provider from a tightly-coupled Angular
service to the external plugin architecture, following the pattern
established by the GitHub provider migration.

- Delete all built-in ClickUp files (api service, models, components,
  tests, constants) from src/app/features/issue/providers/clickup/
- Create new plugin in packages/plugin-dev/clickup-issue-provider/
  with pure-function API layer, plugin registration, i18n, and tests
- Add migration in issue-provider.reducer.ts to convert old ClickUp
  provider config to plugin shape (preserves legacy fields for rollback)
- Move CLICKUP from BuiltInIssueProviderKey to MigratedIssueProviderKey
- Register clickup-issue-provider as bundled plugin
- Fix isDone detection: use status.type instead of status.status so
  custom closed statuses like "Shipped" are correctly detected
- Show disabled plugin issue providers in setup overview for
  discoverability — clicking auto-enables and opens config dialog
2026-03-19 15:03:45 +01:00

19 lines
516 B
JSON
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{
"CFG": {
"API_KEY": "API 密钥",
"API_KEY_LINK": "获取您的个人 API 密钥",
"TEAM_IDS": "工作区/团队 ID用逗号分隔留空表示全部",
"USER_ID": "用户 ID按负责人筛选"
},
"DISPLAY": {
"SUMMARY": "摘要",
"STATUS": "状态",
"PRIORITY": "优先级",
"ASSIGNEE": "负责人",
"LABELS": "标签",
"DESCRIPTION": "描述"
},
"ERRORS": {
"ERR_UNKNOWN": "ClickUp未知错误。请检查您的 API 密钥并重试。"
}
}