super-productivity/packages/plugin-dev/clickup-issue-provider/i18n/ko.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
548 B
JSON

{
"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 키를 확인하고 다시 시도하세요."
}
}